diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 6c4d6ddcb98..d26dd12beda 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -16,14 +16,12 @@
# Cyberboss
/code/__DATASTRUCTURES/globals.dm @Cyberboss
-/code/__DEFINES/components.dm @Cyberboss
/code/__DEFINES/server_tools.config.dm @Cyberboss
/code/__DEFINES/server_tools.dm @Cyberboss
/code/controllers/subsystem/atoms.dm @Cyberboss
/code/controllers/subsystem/mapping.dm @Cyberboss
/code/controllers/globals.dm @Cyberboss
/code/datums/helper_datums/getrev.dm @Cyberboss
-/code/datums/components/ @Cyberboss
/code/datums/map_config.dm @Cyberboss
/code/datums/forced_movement.dm @Cyberboss
/code/datums/holocall.dm @Cyberboss
@@ -67,4 +65,6 @@
# Multiple Owners
+/code/__DEFINES/components.dm @Cyberboss @ninjanomnom
/code/controllers/subsystem/air.dm @duncathan @MrStonedOne
+/code/datums/components/ @Cyberboss @ninjanomnom
\ No newline at end of file
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 9c13ec96e8a..e14c5d16240 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -243,6 +243,8 @@ This prevents nesting levels from getting deeper then they need to be.
* Queries must never specify the database, be it in code, or in text files in the repo.
+* Primary keys are inherently immutable and you must never do anything to change the primary key of a row or entity. This includes preserving auto increment numbers of rows when copying data to a table in a conversion script. No amount of bitching about gaps in ids or out of order ids will save you from this policy.
+
### Mapping Standards
* TGM Format & Map Merge
* All new maps submitted to the repo through a pull request must be in TGM format (unless there is a valid reason present to have it in the default BYOND format.) This is done using the [Map Merge](https://github.com/tgstation/tgstation/wiki/Map-Merger) utility included in the repo to convert the file to TGM format.
diff --git a/.gitignore b/.gitignore
index ab2b87f5d7b..e264c278a1a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -202,6 +202,10 @@ tools/MapAtmosFixer/MapAtmosFixer/bin/*
#GitHub Atom
.atom-build.json
+#KDevelop and Kate
+*.kdev4*
+*.kate-swp
+
#extra map stuff
/_maps/**/backup/
/_maps/templates.dm
diff --git a/.travis.yml b/.travis.yml
index 7138b233548..f09e4557b9c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,7 @@
language: generic
+dist: trusty
sudo: false
+dist: xenial
branches:
except:
- ___TGS3TempBranch
@@ -14,6 +16,7 @@ matrix:
packages:
- python3
- python3-pip
+ - python3-setuptools
cache:
directories:
- tgui/node_modules
@@ -43,7 +46,8 @@ matrix:
- gcc-multilib
- g++-7
- g++-7-multilib
- - libmariadbclient-dev:i386
+ - libmariadb-client-lgpl-dev:i386
+ - libmariadbd-dev
cache:
directories:
- $HOME/.cargo
@@ -67,4 +71,3 @@ script:
- tools/travis/build_tools.sh || travis_terminate 1
- tools/travis/build_dependencies.sh || travis_terminate 1
- tools/travis/build_byond.sh
-
diff --git a/SQL/database_changelog.txt b/SQL/database_changelog.txt
index 24ad3f1a659..fcf347d99d3 100644
--- a/SQL/database_changelog.txt
+++ b/SQL/database_changelog.txt
@@ -1,15 +1,53 @@
Any time you make a change to the schema files, remember to increment the database schema version. Generally increment the minor number, major should be reserved for significant changes to the schema. Both values go up to 255.
-The latest database version is 4.7; The query to update the schema revision table is:
+The latest database version is 5.1; The query to update the schema revision table is:
-INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 0);
+INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 1);
or
-INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 0);
+INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 1);
In any query remember to add a prefix to the table names if you use one.
----------------------------------------------------
+Version 5.1, 25 Feb 2018, by MrStonedOne
+Added four tables to enable storing of stickybans in the database since byond can lose them, and to enable disabling stickybans for a round without depending on a crash free round. Existing stickybans are automagically imported to the tables.
+
+CREATE TABLE `stickyban` (
+ `ckey` VARCHAR(32) NOT NULL,
+ `reason` VARCHAR(2048) NOT NULL,
+ `banning_admin` VARCHAR(32) NOT NULL,
+ `datetime` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`ckey`)
+) ENGINE=InnoDB;
+
+CREATE TABLE `stickyban_matched_ckey` (
+ `stickyban` VARCHAR(32) NOT NULL,
+ `matched_ckey` VARCHAR(32) NOT NULL,
+ `first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ `exempt` TINYINT(1) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`stickyban`, `matched_ckey`)
+) ENGINE=InnoDB;
+
+CREATE TABLE `stickyban_matched_ip` (
+ `stickyban` VARCHAR(32) NOT NULL,
+ `matched_ip` INT UNSIGNED NOT NULL,
+ `first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ PRIMARY KEY (`stickyban`, `matched_ip`)
+) ENGINE=InnoDB;
+
+CREATE TABLE `stickyban_matched_cid` (
+ `stickyban` VARCHAR(32) NOT NULL,
+ `matched_cid` VARCHAR(32) NOT NULL,
+ `first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ PRIMARY KEY (`stickyban`, `matched_cid`)
+) ENGINE=InnoDB;
+
+----------------------------------------------------
+
Version 5.0, 28 October 2018, by Jordie0608
Modified ban table to remove the need for the `bantype` column, a python script is used to migrate data to this new format.
@@ -88,8 +126,7 @@ Added table `role_time_log` and triggers `role_timeTlogupdate`, `role_timeTlogin
CREATE TABLE `role_time_log` ( `id` BIGINT NOT NULL AUTO_INCREMENT , `ckey` VARCHAR(32) NOT NULL , `job` VARCHAR(128) NOT NULL , `delta` INT NOT NULL , `datetime` TIMESTAMP on update CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , PRIMARY KEY (`id`), INDEX (`ckey`), INDEX (`job`), INDEX (`datetime`)) ENGINE = InnoDB;
-DELIMITER
-$$
+DELIMITER $$
CREATE TRIGGER `role_timeTlogupdate` AFTER UPDATE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (NEW.CKEY, NEW.job, NEW.minutes-OLD.minutes);
END
$$
@@ -99,7 +136,7 @@ $$
CREATE TRIGGER `role_timeTlogdelete` AFTER DELETE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (OLD.ckey, OLD.job, 0-OLD.minutes);
END
$$
-
+DELIMITER ;
----------------------------------------------------
Version 4.2, 17 April 2018, by Jordie0608
diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql
index 6127c5b37de..9506e05cac4 100644
--- a/SQL/tgstation_schema.sql
+++ b/SQL/tgstation_schema.sql
@@ -462,6 +462,57 @@ $$
CREATE TRIGGER `role_timeTlogdelete` AFTER DELETE ON `role_time` FOR EACH ROW BEGIN INSERT into role_time_log (ckey, job, delta) VALUES (OLD.ckey, OLD.job, 0-OLD.minutes);
END
$$
+DELIMITER ;
+
+--
+-- Table structure for table `stickyban`
+--
+DROP TABLE IF EXISTS `stickyban`;
+CREATE TABLE `stickyban` (
+ `ckey` VARCHAR(32) NOT NULL,
+ `reason` VARCHAR(2048) NOT NULL,
+ `banning_admin` VARCHAR(32) NOT NULL,
+ `datetime` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`ckey`)
+) ENGINE=InnoDB;
+
+--
+-- Table structure for table `stickyban_matched_ckey`
+--
+DROP TABLE IF EXISTS `stickyban_matched_ckey`;
+CREATE TABLE `stickyban_matched_ckey` (
+ `stickyban` VARCHAR(32) NOT NULL,
+ `matched_ckey` VARCHAR(32) NOT NULL,
+ `first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ `exempt` TINYINT(1) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`stickyban`, `matched_ckey`)
+) ENGINE=InnoDB;
+
+--
+-- Table structure for table `stickyban_matched_ip`
+--
+DROP TABLE IF EXISTS `stickyban_matched_ip`;
+CREATE TABLE `stickyban_matched_ip` (
+ `stickyban` VARCHAR(32) NOT NULL,
+ `matched_ip` INT UNSIGNED NOT NULL,
+ `first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ PRIMARY KEY (`stickyban`, `matched_ip`)
+) ENGINE=InnoDB;
+
+--
+-- Table structure for table `stickyban_matched_cid`
+--
+DROP TABLE IF EXISTS `stickyban_matched_cid`;
+CREATE TABLE `stickyban_matched_cid` (
+ `stickyban` VARCHAR(32) NOT NULL,
+ `matched_cid` VARCHAR(32) NOT NULL,
+ `first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ PRIMARY KEY (`stickyban`, `matched_cid`)
+) ENGINE=InnoDB;
+
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
diff --git a/SQL/tgstation_schema_prefixed.sql b/SQL/tgstation_schema_prefixed.sql
index e17ef712472..5a0a7d481ae 100644
--- a/SQL/tgstation_schema_prefixed.sql
+++ b/SQL/tgstation_schema_prefixed.sql
@@ -462,6 +462,58 @@ $$
CREATE TRIGGER `SS13_role_timeTlogdelete` AFTER DELETE ON `SS13_role_time` FOR EACH ROW BEGIN INSERT into SS13_role_time_log (ckey, job, delta) VALUES (OLD.ckey, OLD.job, 0-OLD.minutes);
END
$$
+DELIMITER ;
+
+--
+-- Table structure for table `SS13_stickyban`
+--
+DROP TABLE IF EXISTS `SS13_stickyban`;
+CREATE TABLE `SS13_stickyban` (
+ `ckey` VARCHAR(32) NOT NULL,
+ `reason` VARCHAR(2048) NOT NULL,
+ `banning_admin` VARCHAR(32) NOT NULL,
+ `datetime` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ PRIMARY KEY (`ckey`)
+) ENGINE=InnoDB;
+
+--
+-- Table structure for table `SS13_stickyban_matched_ckey`
+--
+DROP TABLE IF EXISTS `SS13_stickyban_matched_ckey`;
+CREATE TABLE `SS13_stickyban_matched_ckey` (
+ `stickyban` VARCHAR(32) NOT NULL,
+ `matched_ckey` VARCHAR(32) NOT NULL,
+ `first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ `exempt` TINYINT(1) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`stickyban`, `matched_ckey`)
+) ENGINE=InnoDB;
+
+--
+-- Table structure for table `SS13_stickyban_matched_ip`
+--
+DROP TABLE IF EXISTS `SS13_stickyban_matched_ip`;
+CREATE TABLE `SS13_stickyban_matched_ip` (
+ `stickyban` VARCHAR(32) NOT NULL,
+ `matched_ip` INT UNSIGNED NOT NULL,
+ `first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ PRIMARY KEY (`stickyban`, `matched_ip`)
+) ENGINE=InnoDB;
+
+--
+-- Table structure for table `SS13_stickyban_matched_cid`
+--
+DROP TABLE IF EXISTS `SS13_stickyban_matched_cid`;
+CREATE TABLE `SS13_stickyban_matched_cid` (
+ `stickyban` VARCHAR(32) NOT NULL,
+ `matched_cid` VARCHAR(32) NOT NULL,
+ `first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ PRIMARY KEY (`stickyban`, `matched_cid`)
+) ENGINE=InnoDB;
+
+
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
index ff57adfa8de..5219c15cfe3 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
@@ -242,7 +242,7 @@
/turf/open/floor/plasteel,
/area/ruin/powered/beach)
"aX" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/turf/open/floor/wood,
/area/ruin/powered/beach)
"aY" = (
@@ -303,7 +303,7 @@
},
/obj/item/bikehorn/airhorn,
/obj/structure/table/wood,
-/obj/item/storage/firstaid,
+/obj/item/storage/firstaid/regular,
/obj/item/storage/firstaid/brute,
/turf/open/floor/wood,
/area/ruin/powered/beach)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
index 521ca3fac74..7023fe0ac22 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
@@ -137,7 +137,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/powered/animal_hospital)
"at" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/turf_decal/tile/blue{
@@ -149,7 +149,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/powered/animal_hospital)
"au" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/blue{
@@ -508,7 +508,7 @@
/turf/open/floor/plasteel,
/area/ruin/powered/animal_hospital)
"br" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel,
/area/ruin/powered/animal_hospital)
"bs" = (
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
index f48801c1995..bd63c4c999d 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
@@ -358,7 +358,7 @@
/turf/open/floor/pod/dark,
/area/ruin/powered/snow_biodome)
"HR" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/turf/open/floor/pod/dark,
/area/ruin/powered/snow_biodome)
"JZ" = (
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
index 4a0c718942a..c28919158af 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
@@ -129,6 +129,11 @@
/obj/machinery/chem_dispenser/fullupgrade,
/turf/open/floor/plasteel,
/area/ruin/unpowered/syndicate_lava_base/chemistry)
+"aQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/ruin/unpowered/syndicate_lava_base/arrivals)
"aW" = (
/obj/effect/turf_decal/tile/red,
/obj/effect/turf_decal/tile/red{
@@ -231,7 +236,7 @@
/obj/machinery/power/apc/syndicate{
dir = 8;
name = "Chemistry APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -578,7 +583,7 @@
/obj/machinery/power/apc/syndicate{
dir = 1;
name = "Cargo Bay APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/closet/emcloset/anchored,
/obj/effect/decal/cleanable/dirt,
@@ -694,6 +699,12 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/obj/item/paper/crumpled{
+ info = "Explosive testing on site is STRICTLY forbidden, as this outpost's walls are lined with explosives intended for intentional self-destruct purposes that may be set off prematurely through careless experiments.";
+ name = "Explosives Testing Warning";
+ pixel_x = -6;
+ pixel_y = -3
+ },
/turf/open/floor/plasteel/dark,
/area/ruin/unpowered/syndicate_lava_base/testlab)
"ep" = (
@@ -1286,7 +1297,7 @@
/obj/machinery/power/apc/syndicate{
dir = 1;
name = "Virology APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -1318,7 +1329,7 @@
/obj/machinery/power/apc/syndicate{
dir = 2;
name = "Experimentation Lab APC";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -3173,7 +3184,7 @@
/obj/machinery/power/apc/syndicate{
dir = 2;
name = "Dormitories APC";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -3337,7 +3348,7 @@
/obj/machinery/power/apc/syndicate{
dir = 8;
name = "Primary Hallway APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/effect/turf_decal/tile/red{
dir = 1
@@ -4073,7 +4084,7 @@
/obj/machinery/power/apc/syndicate{
dir = 1;
name = "Engineering APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -4505,9 +4516,9 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/bot,
/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel,
/area/ruin/unpowered/syndicate_lava_base/engineering)
"lv" = (
@@ -4992,7 +5003,7 @@
/obj/machinery/power/apc/syndicate{
dir = 2;
name = "Bar APC";
- pixel_y = -24
+ pixel_y = -23
},
/turf/open/floor/wood,
/area/ruin/unpowered/syndicate_lava_base/bar)
@@ -5006,7 +5017,7 @@
/turf/open/floor/wood,
/area/ruin/unpowered/syndicate_lava_base/bar)
"my" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/obj/item/reagent_containers/food/condiment/enzyme,
/obj/item/reagent_containers/food/snacks/chocolatebar,
/obj/effect/decal/cleanable/dirt,
@@ -5469,7 +5480,7 @@
/obj/machinery/power/apc/syndicate{
dir = 1;
name = "Arrival Hallway APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -5980,7 +5991,7 @@
/turf/open/floor/plasteel/dark,
/area/ruin/unpowered/syndicate_lava_base/telecomms)
"oi" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/neutral{
@@ -6021,7 +6032,7 @@
/obj/machinery/power/apc/syndicate{
dir = 2;
name = "Telecommunications APC";
- pixel_y = -24
+ pixel_y = -23
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -6206,6 +6217,18 @@
/obj/structure/sign/departments/chemistry,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/unpowered/syndicate_lava_base/testlab)
+"pQ" = (
+/obj/structure/sign/warning/explosives/alt{
+ pixel_x = 32
+ },
+/turf/open/floor/circuit/red,
+/area/ruin/unpowered/syndicate_lava_base/main)
+"qG" = (
+/obj/structure/sign/warning/explosives/alt{
+ pixel_x = -32
+ },
+/turf/open/floor/engine,
+/area/ruin/unpowered/syndicate_lava_base/testlab)
"tW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
@@ -6251,6 +6274,12 @@
},
/turf/open/floor/engine,
/area/ruin/unpowered/syndicate_lava_base/testlab)
+"DL" = (
+/obj/structure/sign/warning/explosives/alt{
+ pixel_x = 32
+ },
+/turf/open/floor/engine,
+/area/ruin/unpowered/syndicate_lava_base/testlab)
"EZ" = (
/obj/machinery/door/airlock/external{
req_access_txt = "150"
@@ -6276,15 +6305,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/turf/open/floor/engine,
/area/ruin/unpowered/syndicate_lava_base/testlab)
-"Pa" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 4
- },
-/area/ruin/unpowered/syndicate_lava_base/arrivals)
"RE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -7184,7 +7204,7 @@ ae
ae
aq
aq
-aq
+qG
dc
aq
dQ
@@ -7434,7 +7454,7 @@ ae
ae
aq
aq
-aq
+DL
di
aq
dS
@@ -7564,8 +7584,8 @@ my
jy
nt
nW
-oo
-ox
+aW
+mT
ab
ab
ab
@@ -7615,7 +7635,7 @@ jy
nu
nX
oo
-ox
+mT
ab
ab
ab
@@ -7663,8 +7683,8 @@ jy
jy
mX
nv
-nX
-aW
+aQ
+mT
mT
ab
ab
@@ -7714,7 +7734,6 @@ mz
mY
nw
nZ
-Pa
mT
ab
ab
@@ -7723,6 +7742,7 @@ ab
ab
ab
ab
+ab
aa
"}
(29,1,1) = {"
@@ -8198,7 +8218,7 @@ hl
hU
ha
it
-iJ
+pQ
jd
ha
jw
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm
index de17c80b51a..95f8c4eba44 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm
@@ -44,7 +44,6 @@
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
/obj/effect/decal/cleanable/blood/gibs,
-/obj/item/clothing/mask/facehugger/impregnated,
/obj/item/gun/ballistic/automatic/pistol,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/xenonest)
@@ -54,11 +53,6 @@
/obj/structure/alien/resin/wall,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/xenonest)
-"s" = (
-/obj/structure/alien/weeds,
-/obj/structure/alien/egg,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/ruin/unpowered/xenonest)
"t" = (
/obj/structure/alien/weeds,
/mob/living/simple_animal/hostile/alien/sentinel,
@@ -89,7 +83,6 @@
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
/obj/effect/decal/cleanable/blood/gibs,
-/obj/item/clothing/mask/facehugger/impregnated,
/obj/item/clothing/under/rank/security,
/obj/item/clothing/suit/armor/vest,
/obj/item/melee/baton/loaded,
@@ -138,7 +131,6 @@
/obj/structure/bed/nest,
/obj/effect/decal/cleanable/blood/gibs,
/obj/effect/decal/cleanable/blood,
-/obj/item/clothing/mask/facehugger/impregnated,
/obj/item/clothing/under/syndicate,
/obj/item/clothing/glasses/night,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
@@ -163,7 +155,6 @@
/obj/item/clothing/suit/space/syndicate/orange,
/obj/item/clothing/mask/gas,
/obj/item/clothing/head/helmet/space/syndicate/orange,
-/obj/item/clothing/mask/facehugger/impregnated,
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/xenonest)
"O" = (
@@ -384,7 +375,7 @@ e
t
g
g
-s
+g
H
u
g
@@ -415,9 +406,9 @@ b
i
u
b
-s
+g
l
-s
+g
t
e
b
@@ -448,7 +439,7 @@ o
v
g
b
-s
+g
g
e
b
diff --git a/_maps/RandomRuins/SpaceRuins/DJstation.dmm b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
index c8ccd8d30aa..d78df0883d1 100644
--- a/_maps/RandomRuins/SpaceRuins/DJstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
@@ -54,43 +54,43 @@
/turf/open/floor/plating,
/area/ruin/space/djstation)
"an" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
/obj/machinery/power/smes/magical{
desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
name = "power storage unit"
},
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
/turf/open/floor/plating,
/area/ruin/space/djstation)
"ao" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/ruin/space/djstation)
"ap" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
/obj/machinery/power/apc{
name = "Worn-out APC";
pixel_y = -24
},
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
/turf/open/floor/plating,
/area/ruin/space/djstation)
"aq" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/item/storage/box/lights/mixed,
/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/ruin/space/djstation)
"ar" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
index 2b3f2eec95d..0fadc72f863 100644
--- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
+++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
@@ -42,7 +42,7 @@
id = "derelictsolar";
name = "Derelict Solar Array"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/airless,
@@ -54,10 +54,10 @@
"aj" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
- icon_state = "2-4"
+ icon_state = "1-4"
},
/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "2-4"
},
/turf/template_noop,
/area/solar/derelict_starboard)
@@ -84,10 +84,10 @@
"am" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
- icon_state = "2-4"
+ icon_state = "2-8"
},
/obj/structure/cable{
- icon_state = "2-8"
+ icon_state = "2-4"
},
/turf/template_noop,
/area/solar/derelict_starboard)
@@ -180,28 +180,28 @@
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"aB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"aC" = (
/obj/machinery/power/smes,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"aD" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
/obj/machinery/power/solar_control{
id = "derelictsolar";
name = "Primary Solar Control";
track = 0
},
/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"aF" = (
@@ -215,13 +215,13 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"aH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -236,12 +236,12 @@
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"aJ" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
/obj/machinery/light/small{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"aK" = (
@@ -263,7 +263,7 @@
/turf/open/floor/plating,
/area/ruin/space/derelict/solar_control)
"aN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -296,16 +296,16 @@
equipment = 0;
lighting = 0;
name = "Starboard Solar APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
+/obj/structure/cable/yellow,
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"aU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -331,23 +331,23 @@
/obj/machinery/computer/monitor/secret{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"ba" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small,
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"bb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -382,7 +382,7 @@
name = "Starboard Solar Access";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -405,7 +405,7 @@
/area/ruin/space/derelict/bridge/ai_upload)
"bm" = (
/obj/machinery/door/window,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -435,7 +435,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/derelict/solar_control)
"br" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plasteel,
@@ -491,7 +491,7 @@
},
/area/ruin/space/derelict/solar_control)
"bC" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plasteel{
@@ -599,15 +599,15 @@
/obj/machinery/power/apc{
dir = 8;
name = "Worn-out APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/bridge/ai_upload)
"bX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating/airless,
@@ -636,7 +636,7 @@
},
/area/space/nearstation)
"cc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating/airless,
@@ -646,19 +646,19 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/bridge/ai_upload)
"ce" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/bridge/ai_upload)
"cf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/bridge/ai_upload)
"cg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/closed/wall/r_wall,
@@ -670,13 +670,13 @@
/turf/closed/wall/r_wall,
/area/template_noop)
"cj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/bridge/ai_upload)
"ck" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -714,7 +714,7 @@
},
/area/ruin/space/derelict/gravity_generator)
"cr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/closed/wall,
@@ -724,7 +724,7 @@
/area/ruin/space/derelict/bridge/access)
"ct" = (
/obj/machinery/door/airlock/maintenance,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -788,7 +788,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"cF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -810,28 +810,28 @@
/turf/template_noop,
/area/template_noop)
"cJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/closed/wall,
/area/ruin/space/derelict/bridge/access)
"cK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"cM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"cN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -840,17 +840,19 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/gravity_generator)
"cP" = (
-/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/cable_coil/cut/yellow{
+ amount = 2
+ },
/turf/open/floor/plasteel/airless{
icon_state = "damaged4"
},
/area/ruin/space/derelict/gravity_generator)
"cQ" = (
-/obj/structure/cable,
/obj/machinery/power/apc{
name = "Worn-out APC";
pixel_y = -24
},
+/obj/structure/cable/yellow,
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"cR" = (
@@ -887,7 +889,7 @@
name = "E.V.A.";
req_access_txt = "18"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -901,7 +903,7 @@
/area/ruin/space/derelict/bridge/access)
"cX" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -945,29 +947,29 @@
/turf/open/floor/plasteel/airless/solarpanel,
/area/space/nearstation)
"df" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/item/wallframe/apc,
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/gravity_generator)
"dg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/gravity_generator)
"dh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/gravity_generator)
"di" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/frame/machine,
@@ -988,37 +990,37 @@
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"dm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/ruin/space/derelict/bridge/access)
"dn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"do" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"dp" = (
/obj/machinery/door/airlock/public/glass,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"dq" = (
/obj/item/reagent_containers/food/drinks/beer,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -1035,7 +1037,7 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/gravity_generator)
"dt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating/airless,
@@ -1069,7 +1071,7 @@
/area/ruin/space/derelict/bridge/access)
"dy" = (
/obj/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -1090,7 +1092,7 @@
name = "Engineering Access";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -1120,7 +1122,7 @@
/area/ruin/space/derelict/bridge)
"dH" = (
/obj/structure/frame/computer,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -1185,14 +1187,16 @@
},
/area/ruin/space/derelict/singularity_engine)
"dR" = (
-/obj/item/stack/cable_coil/cut/red,
/obj/machinery/light/small{
dir = 1
},
+/obj/item/stack/cable_coil/cut/yellow{
+ amount = 2
+ },
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/singularity_engine)
"dS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating/airless,
@@ -1202,13 +1206,13 @@
name = "Engineering Access";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/gravity_generator)
"dU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -1228,7 +1232,7 @@
},
/area/ruin/space/derelict/singularity_engine)
"dY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -1319,7 +1323,7 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/singularity_engine)
"ep" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/window/reinforced,
@@ -1405,16 +1409,16 @@
},
/area/ruin/space/derelict/singularity_engine)
"eH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"eI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -1423,13 +1427,13 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge/access)
"eK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1439,7 +1443,7 @@
/turf/template_noop,
/area/ruin/space/derelict/singularity_engine)
"eM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -1466,7 +1470,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/derelict/bridge)
"eR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -1739,7 +1743,7 @@
/area/ruin/space/derelict/singularity_engine)
"fK" = (
/obj/machinery/door/window,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -1791,7 +1795,7 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/bridge/access)
"fT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless,
@@ -1835,7 +1839,7 @@
/turf/closed/wall,
/area/ruin/space/derelict/hallway/primary)
"ga" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plasteel/airless{
@@ -1843,7 +1847,7 @@
},
/area/ruin/space/derelict/hallway/primary)
"gb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless{
@@ -1851,28 +1855,28 @@
},
/area/ruin/space/derelict/hallway/primary)
"gc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"gd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/bridge/access)
"ge" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/bridge/access)
"gf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/airless,
@@ -1901,7 +1905,7 @@
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/hallway/primary)
"gl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating/airless,
@@ -1953,13 +1957,13 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/singularity_engine)
"gx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/hallway/primary)
"gy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating/airless,
@@ -1974,11 +1978,11 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"gB" = (
-/obj/structure/cable,
/obj/machinery/power/apc{
name = "Worn-out APC";
pixel_y = -24
},
+/obj/structure/cable/yellow,
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/bridge/access)
"gC" = (
@@ -2072,7 +2076,7 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/singularity_engine)
"gU" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plating/airless,
@@ -2096,7 +2100,7 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/singularity_engine)
"ha" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating/airless,
@@ -2441,7 +2445,7 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/singularity_engine)
"ip" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plasteel/airless{
@@ -2529,7 +2533,7 @@
/turf/open/floor/plasteel/airless/white,
/area/ruin/unpowered/no_grav)
"iF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless{
@@ -2558,7 +2562,6 @@
"iK" = (
/obj/machinery/mass_driver{
dir = 8;
- icon_state = "mass_driver";
id = "derelict_gun"
},
/obj/machinery/door/window{
@@ -2683,7 +2686,7 @@
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"jc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless,
@@ -2693,13 +2696,13 @@
/turf/open/floor/plasteel,
/area/ruin/space/derelict/arrival)
"jf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/airless/white,
/area/ruin/space/derelict/medical)
"jg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/window/reinforced{
@@ -2708,19 +2711,19 @@
/turf/open/floor/plasteel/airless/white,
/area/ruin/space/derelict/medical)
"jh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless/white,
/area/ruin/space/derelict/medical)
"ji" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plasteel/airless/white,
/area/ruin/space/derelict/medical)
"jj" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plasteel/airless{
@@ -2806,7 +2809,7 @@
name = "Worn-out APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/airless,
@@ -2835,7 +2838,7 @@
/turf/open/floor/plasteel/airless/white,
/area/ruin/space/derelict/medical)
"jD" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plasteel/airless{
@@ -2885,14 +2888,14 @@
/area/ruin/space/derelict/medical/chapel)
"jM" = (
/obj/machinery/door/window,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/medical/chapel)
"jN" = (
/obj/machinery/door/window/southleft,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless/white,
@@ -2902,16 +2905,16 @@
/turf/open/floor/plasteel/airless/white,
/area/ruin/space/derelict/medical)
"jP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"jQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/research{
@@ -2921,13 +2924,13 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"jR" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"jS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating/airless,
@@ -2963,7 +2966,7 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"jX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless{
@@ -2986,13 +2989,13 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"kb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/airless,
/area/ruin/unpowered/no_grav)
"kc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless,
@@ -3011,20 +3014,20 @@
/area/ruin/unpowered/no_grav)
"kf" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless,
/area/ruin/unpowered/no_grav)
"kg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/window/fulltile,
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"kh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/research{
@@ -3034,19 +3037,19 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/arrival)
"ki" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/derelict/arrival)
"kj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/ruin/space/derelict/arrival)
"kk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -3058,7 +3061,9 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/medical/chapel)
"km" = (
-/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/cable_coil/cut/yellow{
+ amount = 2
+ },
/turf/open/floor/plasteel/airless{
icon_state = "floorscorched1"
},
@@ -3093,7 +3098,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/derelict/arrival)
"ku" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless{
@@ -3106,37 +3111,37 @@
dir = 4;
icon_state = "right"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"kx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"ky" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"kz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"kA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/airless,
@@ -3154,25 +3159,25 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"kE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"kG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary)
"kH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/airless,
@@ -3222,7 +3227,7 @@
name = "Security";
req_access_txt = "1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless,
@@ -3315,7 +3320,7 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/primary/port)
"lj" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plasteel/airless,
@@ -3411,7 +3416,7 @@
/turf/template_noop,
/area/ruin/space/derelict/hallway/primary/port)
"lB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/window/reinforced,
@@ -3495,7 +3500,7 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/atmospherics)
"lQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless,
@@ -3556,7 +3561,9 @@
/area/ruin/space/derelict/atmospherics)
"mb" = (
/obj/structure/lattice,
-/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/cable_coil/cut/yellow{
+ amount = 2
+ },
/turf/template_noop,
/area/ruin/space/derelict/hallway/primary/port)
"mc" = (
@@ -3691,7 +3698,9 @@
/turf/template_noop,
/area/ruin/space/derelict/atmospherics)
"mA" = (
-/obj/item/stack/cable_coil/cut/red,
+/obj/item/stack/cable_coil/cut/yellow{
+ amount = 2
+ },
/turf/template_noop,
/area/ruin/space/derelict/hallway/primary/port)
"mB" = (
@@ -3702,7 +3711,7 @@
/area/ruin/space/derelict/hallway/secondary)
"mC" = (
/obj/item/wirecutters,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/airless,
@@ -3731,7 +3740,7 @@
},
/area/ruin/space/derelict/hallway/primary/port)
"mI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless,
@@ -3796,15 +3805,15 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/hallway/secondary)
"mX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable,
/obj/machinery/power/apc{
dir = 8;
name = "Worn-out APC";
- pixel_x = -24
+ pixel_x = -25
},
+/obj/structure/cable/yellow,
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"mY" = (
@@ -3827,21 +3836,21 @@
areastring = "/area/ruin/space/derelict/atmospherics";
dir = 1;
name = "Worn-out APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"nd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"ne" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -3853,7 +3862,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -3862,7 +3871,7 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"ng" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -3871,7 +3880,7 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"nh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -3880,7 +3889,7 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"ni" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -3889,7 +3898,7 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"nj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -3898,7 +3907,7 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"nk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -3910,7 +3919,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -3919,16 +3928,16 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"nm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/hallway/secondary)
"nn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/airless,
@@ -3997,7 +4006,7 @@
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/se_solar)
"nC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -4018,7 +4027,7 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/hallway/secondary)
"nF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -4039,22 +4048,22 @@
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/se_solar)
"nJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/se_solar)
"nK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/se_solar)
"nL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/door/airlock/engineering{
@@ -4110,10 +4119,10 @@
/obj/machinery/power/terminal{
dir = 1
},
+/obj/item/drone_shell/dusty,
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/item/drone_shell/dusty,
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/se_solar)
"nV" = (
@@ -4124,28 +4133,28 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/se_solar)
"nY" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable,
/obj/machinery/power/solar_control{
dir = 1;
id = "derelictsolar";
name = "Primary Solar Control";
track = 0
},
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/se_solar)
"nZ" = (
-/obj/structure/cable,
/obj/machinery/power/apc/unlocked{
dir = 8;
environ = 0;
equipment = 0;
lighting = 0;
name = "Worn-out APC";
- pixel_x = -24
+ pixel_x = -25
},
+/obj/structure/cable/yellow,
/turf/open/floor/plating/airless,
/area/ruin/space/derelict/se_solar)
"oa" = (
@@ -4200,10 +4209,10 @@
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/se_solar)
"ok" = (
+/obj/machinery/door/airlock/external,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/door/airlock/external,
/turf/open/floor/plasteel/airless,
/area/ruin/space/derelict/se_solar)
"ol" = (
@@ -4212,14 +4221,14 @@
/turf/template_noop,
/area/solar/derelict_aft)
"om" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/solar/derelict_aft)
"on" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/solar{
@@ -4229,14 +4238,14 @@
/turf/open/floor/plasteel/airless,
/area/solar/derelict_aft)
"oo" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/solar/derelict_aft)
"op" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/solar{
@@ -4283,16 +4292,16 @@
/turf/template_noop,
/area/solar/derelict_aft)
"ou" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/structure/cable{
icon_state = "1-8"
},
/obj/structure/cable{
icon_state = "1-4"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/solar/derelict_aft)
"ov" = (
@@ -4345,20 +4354,13 @@
},
/turf/template_noop,
/area/solar/derelict_aft)
-"oB" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/template_noop,
-/area/solar/derelict_aft)
"oC" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
- icon_state = "1-8"
+ icon_state = "2-8"
},
/obj/structure/cable{
- icon_state = "2-8"
+ icon_state = "1-8"
},
/turf/template_noop,
/area/solar/derelict_aft)
@@ -4445,7 +4447,7 @@
/turf/closed/wall,
/area/ruin/space/derelict/hallway/primary/port)
"KT" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plating/airless,
@@ -4462,9 +4464,35 @@
"Lv" = (
/turf/closed/wall,
/area/space/nearstation)
+"My" = (
+/obj/structure/lattice,
+/obj/item/stack/cable_coil/cut/yellow{
+ amount = 2
+ },
+/turf/template_noop,
+/area/space/nearstation)
+"MQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/airless,
+/area/ruin/space/derelict/se_solar)
"Oj" = (
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/bridge/access)
+"ON" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/template_noop,
+/area/solar/derelict_aft)
"OT" = (
/turf/closed/wall/r_wall,
/area/ruin/space/derelict/hallway/primary/port)
@@ -10139,7 +10167,7 @@ nB
nI
ZB
ZB
-ld
+My
nV
nV
nB
@@ -10259,7 +10287,7 @@ aa
aa
aa
on
-os
+ON
ox
aa
on
@@ -10372,7 +10400,7 @@ nB
aa
aa
on
-os
+ON
ox
aa
on
@@ -10489,7 +10517,7 @@ ot
aa
aa
aa
-oB
+ot
aa
aa
vf
@@ -10715,7 +10743,7 @@ ot
aa
aa
aa
-oB
+ot
aa
aa
ZB
@@ -10815,8 +10843,8 @@ mI
nC
nF
nL
-nP
-nP
+MQ
+MQ
nZ
nR
nR
diff --git a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm
index e6251f702ab..d67a69c75c3 100644
--- a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm
+++ b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm
@@ -8,14 +8,17 @@
anchored = 1;
power = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/abandonedzoo)
"ac" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -26,12 +29,12 @@
anchored = 1;
power = 1
},
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/abandonedzoo)
"ae" = (
@@ -40,11 +43,11 @@
anchored = 1;
power = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/abandonedzoo)
@@ -54,9 +57,12 @@
anchored = 1;
power = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/abandonedzoo)
"ag" = (
@@ -73,13 +79,6 @@
/obj/structure/flora/rock,
/turf/open/floor/plating/asteroid,
/area/ruin/space/has_grav/abandonedzoo)
-"ak" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/abandonedzoo)
"al" = (
/obj/structure/flora/ausbushes/genericbush,
/turf/open/floor/grass,
@@ -185,13 +184,16 @@
/turf/open/floor/grass,
/area/ruin/space/has_grav/abandonedzoo)
"aD" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/machinery/door/airlock/highsecurity{
name = "Bio Containment";
req_one_access_txt = "47"
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"aE" = (
@@ -200,59 +202,25 @@
anchored = 1;
power = 1
},
-/obj/structure/cable{
- icon_state = "0-2"
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/abandonedzoo)
-"aF" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
-/area/ruin/space/has_grav/abandonedzoo)
"aG" = (
/obj/structure/table/reinforced,
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/item/gun/energy/floragun,
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
-"aH" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/abandonedzoo)
"aI" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/med_data/laptop{
dir = 8;
pixel_y = 1
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"aJ" = (
@@ -261,14 +229,11 @@
anchored = 1;
power = 1
},
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "0-8"
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/abandonedzoo)
@@ -279,13 +244,10 @@
/turf/template_noop,
/area/space/nearstation)
"aL" = (
-/turf/open/floor/plasteel/dark/side,
-/area/ruin/space/has_grav/abandonedzoo)
-"aM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/closed/wall/r_wall,
+/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"aN" = (
/obj/structure/table/reinforced,
@@ -324,6 +286,9 @@
/obj/machinery/light/small{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"aS" = (
@@ -333,23 +298,17 @@
equipment = 0;
lighting = 0;
name = "Worn-out APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4"
+ pixel_x = -25
},
/obj/structure/rack,
/obj/item/melee/baton/cattleprod,
/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"aT" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/structure/rack,
/obj/item/clothing/suit/space/hardsuit/medical,
/obj/item/tank/internals/emergency_oxygen/double,
@@ -408,6 +367,9 @@
/obj/machinery/light/small{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"bb" = (
@@ -426,27 +388,8 @@
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/abandonedzoo)
-"bc" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ruin/space/has_grav/abandonedzoo)
"bd" = (
/obj/machinery/power/terminal,
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/effect/turf_decal/tile/green{
dir = 1
},
@@ -461,6 +404,9 @@
/area/ruin/space/has_grav/abandonedzoo)
"be" = (
/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"bf" = (
@@ -468,15 +414,20 @@
desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
name = "power storage unit"
},
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"bg" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/light,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"bh" = (
@@ -528,15 +479,11 @@
anchored = 1;
power = 1
},
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
},
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "1-4"
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/abandonedzoo)
@@ -546,41 +493,29 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
-"bq" = (
-/obj/item/stack/cable_coil/cut/red,
-/obj/item/stack/tile/plasteel{
- pixel_x = 3;
- pixel_y = -4
- },
-/obj/item/wirecutters,
-/turf/open/floor/plating,
-/area/ruin/space/has_grav/abandonedzoo)
"br" = (
/obj/structure/table/reinforced,
/obj/machinery/microwave,
-/obj/structure/cable{
- icon_state = "4-8"
- },
/turf/open/floor/plasteel/dark/side,
/area/ruin/space/has_grav/abandonedzoo)
"bs" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
/obj/machinery/shieldwallgen,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
/turf/open/floor/plating,
/area/ruin/space/has_grav/abandonedzoo)
"bt" = (
-/obj/structure/cable{
+/obj/machinery/shieldwallgen,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/machinery/shieldwallgen,
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/abandonedzoo)
"bu" = (
@@ -712,6 +647,7 @@
/area/ruin/space/has_grav/abandonedzoo)
"bN" = (
/obj/structure/grille/broken,
+/obj/item/stack/cable_coil/cut/yellow,
/obj/item/shard{
icon_state = "small"
},
@@ -725,18 +661,6 @@
/obj/structure/lattice,
/turf/template_noop,
/area/space/nearstation)
-"bQ" = (
-/obj/machinery/shieldwallgen{
- active = 2;
- anchored = 1;
- power = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable,
-/turf/open/floor/plating/airless,
-/area/ruin/space/has_grav/abandonedzoo)
"bR" = (
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -745,11 +669,13 @@
/turf/open/floor/plating/airless,
/area/space/nearstation)
"bS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable,
/obj/machinery/shieldwallgen,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/abandonedzoo)
"bT" = (
@@ -774,6 +700,52 @@
"bX" = (
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/abandonedzoo)
+"eY" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/ruin/space/has_grav/abandonedzoo)
+"fM" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/abandonedzoo)
+"jz" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/space/has_grav/abandonedzoo)
+"kj" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/abandonedzoo)
"lo" = (
/obj/machinery/door/airlock/external,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -791,29 +763,187 @@
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/abandonedzoo)
+"nQ" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/space/has_grav/abandonedzoo)
+"oK" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/abandonedzoo)
+"rY" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/stack/cable_coil/cut/yellow,
+/obj/item/stack/tile/plasteel{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/wirecutters,
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/abandonedzoo)
+"sC" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/ruin/space/has_grav/abandonedzoo)
+"tP" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/abandonedzoo)
+"wF" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Bio-Research Station"
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/abandonedzoo)
+"AX" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Bio Containment";
+ req_one_access_txt = "47"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/ruin/space/has_grav/abandonedzoo)
+"Ck" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ruin/space/has_grav/abandonedzoo)
+"Hx" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Bio Containment";
+ req_one_access_txt = "47"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/ruin/space/has_grav/abandonedzoo)
"KN" = (
/turf/template_noop,
/area/space/nearstation)
+"Ld" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/space/has_grav/abandonedzoo)
+"VW" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Bio Containment";
+ req_one_access_txt = "47"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark/side,
+/area/ruin/space/has_grav/abandonedzoo)
(1,1,1) = {"
ab
-ag
-ag
-ag
-ag
-ab
+kj
+kj
+kj
+kj
+jz
aa
aa
aa
aa
aa
aa
-ab
-ag
-ag
-ag
-ag
-ab
+ae
+kj
+kj
+kj
+kj
+nQ
aa
"}
(2,1,1) = {"
@@ -847,10 +977,10 @@ aD
aL
aR
aL
-aL
+eY
aR
aL
-aD
+VW
bv
bv
bJ
@@ -868,7 +998,7 @@ ac
at
at
bb
-bb
+wF
at
at
ac
@@ -888,8 +1018,8 @@ ar
ac
at
aS
-ay
-ay
+Ck
+oK
be
at
ac
@@ -902,23 +1032,23 @@ aa
"}
(6,1,1) = {"
ad
-ak
-ak
-ak
-ak
+kj
+kj
+kj
+kj
aE
-aM
+at
aT
-bc
+ay
bd
bf
-aM
+at
bo
-ak
-ak
-ak
-ak
-bQ
+kj
+kj
+kj
+kj
+Ld
aa
"}
(7,1,1) = {"
@@ -927,14 +1057,14 @@ aa
aa
at
at
-aF
+at
at
aU
ay
-ay
+fM
bg
at
-aF
+at
by
bF
bK
@@ -952,7 +1082,7 @@ aG
aN
aV
ay
-ay
+tP
bh
bm
bp
@@ -969,14 +1099,14 @@ aa
aa
ag
ay
-aH
+ay
aO
ay
ay
+tP
ay
ay
ay
-aH
ay
bG
bL
@@ -990,14 +1120,14 @@ aa
aa
ag
ay
-aH
ay
ay
ay
ay
+tP
+ay
ay
ay
-bq
ay
bG
bM
@@ -1015,7 +1145,7 @@ aI
aP
aW
ay
-ay
+tP
bi
bn
br
@@ -1032,14 +1162,14 @@ aa
aa
at
at
-aF
+at
at
aX
ay
-ay
+tP
bj
at
-aF
+at
at
at
aa
@@ -1049,22 +1179,22 @@ aa
"}
(13,1,1) = {"
ae
-ak
-ak
-ak
-ak
+kj
+kj
+kj
+kj
aJ
at
aY
ay
-ay
+tP
bk
at
bs
-ak
-ak
-ak
-ak
+kj
+kj
+kj
+kj
bS
aa
"}
@@ -1078,7 +1208,7 @@ ac
at
aZ
ay
-ay
+tP
bl
at
ac
@@ -1099,7 +1229,7 @@ ac
at
at
bb
-bb
+wF
at
at
ac
@@ -1116,14 +1246,14 @@ an
aq
au
am
-aD
+Hx
aL
ba
aL
+sC
+rY
aL
-ba
-aL
-aD
+AX
bD
bB
bX
@@ -1154,11 +1284,11 @@ aa
"}
(18,1,1) = {"
af
-ak
-ak
-ak
-ak
-af
+kj
+kj
+kj
+kj
+Ld
aa
aa
aa
@@ -1166,8 +1296,8 @@ aa
aa
aa
bt
-ag
-ag
+kj
+kj
bN
bP
KN
diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
index 61ddc1f8ba4..9dadb1d4d7c 100644
--- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
+++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
@@ -58,7 +58,7 @@
/turf/open/floor/engine,
/area/ruin/space/has_grav/derelictoutpost/cargobay)
"an" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -70,7 +70,7 @@
name = "Cargo Bay APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
@@ -102,7 +102,7 @@
/turf/closed/wall/mineral/titanium,
/area/ruin/space/has_grav/derelictoutpost/dockedship)
"au" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -295,7 +295,7 @@
/area/ruin/space/has_grav/derelictoutpost/powerstorage)
"bb" = (
/obj/machinery/power/smes,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
@@ -303,17 +303,17 @@
"bc" = (
/obj/structure/table,
/obj/item/stock_parts/cell/hyper,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/powerstorage)
"bd" = (
/obj/machinery/power/smes,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
@@ -455,7 +455,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/powerstorage)
"bs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -801,10 +801,10 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/powerstorage)
"bZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -814,10 +814,10 @@
start_charge = 0;
dir = 4;
name = "Power Storage APC";
- pixel_x = 23;
+ pixel_x = 24;
pixel_y = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
@@ -850,7 +850,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -915,7 +915,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost)
"cj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -925,9 +925,9 @@
start_charge = 0;
dir = 2;
name = "Tradepost APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
@@ -967,14 +967,14 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/powerstorage)
"cp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/powerstorage)
"cq" = (
/obj/structure/barricade/wooden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -985,19 +985,19 @@
req_access_txt = "10"
},
/obj/structure/barricade/wooden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/powerstorage)
"cs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/cargobay)
"ct" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -1028,10 +1028,10 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -1042,7 +1042,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1053,14 +1053,14 @@
id = "bigderelictcheckpoint";
name = "checkpoint security doors"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost)
"cz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1071,13 +1071,13 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost)
"cB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -1154,13 +1154,13 @@
/obj/structure/closet/crate{
icon_state = "crateopen"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/cargobay)
"cI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/janitorialcart,
@@ -1172,7 +1172,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/mop,
@@ -1189,7 +1189,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1205,7 +1205,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1217,7 +1217,7 @@
name = "gelatinous floor"
},
/obj/structure/glowshroom/single,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1228,10 +1228,10 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -1390,7 +1390,7 @@
name = "gelatinous floor"
},
/obj/machinery/light,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -1406,7 +1406,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1427,7 +1427,7 @@
desc = "A pried-open airlock. Scratch marks mark the sidings of the door.";
name = "pried-open airlock"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -1444,7 +1444,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -1539,7 +1539,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -1659,7 +1659,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -1743,7 +1743,7 @@
desc = "A thick gelatinous surface covers the floor. Someone get the golashes.";
name = "gelatinous floor"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -1793,7 +1793,7 @@
icon_state = "trails_1";
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -1958,7 +1958,7 @@
icon_state = "trails_1";
name = "dried blood trail"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -2020,7 +2020,7 @@
name = "Cargo Storage APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -2077,7 +2077,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/derelictoutpost/cargostorage)
"eu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -2123,7 +2123,7 @@
icon_state = "trails_1";
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -2186,7 +2186,7 @@
icon_state = "trails_1";
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -2202,7 +2202,7 @@
icon_state = "trails_1";
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -2213,7 +2213,7 @@
icon_state = "trails_1";
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
diff --git a/_maps/RandomRuins/SpaceRuins/bus.dmm b/_maps/RandomRuins/SpaceRuins/bus.dmm
index b94f5bcb620..1e280377d23 100644
--- a/_maps/RandomRuins/SpaceRuins/bus.dmm
+++ b/_maps/RandomRuins/SpaceRuins/bus.dmm
@@ -100,7 +100,7 @@
/obj/structure/fluff/bus/passable/seat{
icon_state = "backseat"
},
-/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/item/reagent_containers/food/snacks/grown/cherry_bomb,
/turf/open/floor/plasteel/airless/dark{
icon_state = "bus"
},
@@ -110,8 +110,8 @@
icon_state = "driverseat";
pixel_y = 17
},
-/obj/item/reagent_containers/food/snacks/grown/cherry_bomb,
/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/food/snacks/grown/citrus/orange,
/turf/open/floor/plasteel/airless/dark{
icon_state = "bus"
},
diff --git a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
index 61ce30f7144..c5207e4df4b 100644
--- a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
+++ b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
@@ -98,7 +98,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Tiny Freighter APC";
- pixel_x = -24;
+ pixel_x = -25;
req_access = null;
start_charge = 0
},
@@ -244,7 +244,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Tiny Freighter APC";
- pixel_x = -24;
+ pixel_x = -25;
req_access = null;
start_charge = 0
},
diff --git a/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm b/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm
index 1fb4e60aff8..260cec96c33 100644
--- a/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm
+++ b/_maps/RandomRuins/SpaceRuins/cloning_facility.dmm
@@ -180,7 +180,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/powered/ancient_shuttle)
"w" = (
-/obj/structure/chair/office{
+/obj/structure/chair{
dir = 1
},
/obj/effect/turf_decal/tile/blue{
@@ -201,7 +201,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/powered/ancient_shuttle)
"y" = (
-/obj/structure/chair/office{
+/obj/structure/chair{
dir = 1
},
/obj/effect/turf_decal/tile/blue{
diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
index 723b4c21e03..0814901809d 100644
--- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
@@ -499,7 +499,7 @@
dir = 1;
environ = 0;
equipment = 3;
- pixel_y = 32;
+ pixel_y = 23;
req_access = null
},
/turf/open/floor/carpet,
@@ -844,7 +844,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/awaymission/BMPship/Aft)
"cR" = (
-/obj/structure/closet/secure_closet/freezer/meat{
+/obj/structure/closet/secure_closet/freezer/meat/open{
opened = 1
},
/turf/open/floor/plasteel/white,
@@ -877,7 +877,7 @@
dir = 1;
environ = 0;
equipment = 3;
- pixel_y = 32;
+ pixel_y = 23;
req_access = null
},
/turf/open/floor/plating,
@@ -1006,25 +1006,10 @@
/area/awaymission/BMPship/Aft)
"do" = (
/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/awaymission/BMPship/Aft)
-"dp" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
"dq" = (
/obj/item/multitool,
/turf/open/floor/engine,
@@ -1198,7 +1183,7 @@
},
/obj/machinery/power/apc/unlocked{
dir = 1;
- pixel_y = 28;
+ pixel_y = 23;
req_access = null
},
/obj/effect/turf_decal/tile/bar,
@@ -1314,26 +1299,11 @@
/turf/open/floor/plating,
/area/awaymission/BMPship/Aft)
"eb" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
/obj/machinery/power/terminal{
dir = 8
},
/turf/open/floor/plating,
/area/awaymission/BMPship/Aft)
-"ec" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
"ed" = (
/obj/effect/spawner/structure/window/hollow/reinforced/middle{
dir = 4
@@ -1345,7 +1315,7 @@
/turf/open/floor/carpet,
/area/awaymission/BMPship/Fore)
"ef" = (
-/obj/structure/chair/office{
+/obj/structure/chair{
dir = 8
},
/turf/open/floor/carpet,
@@ -1455,15 +1425,6 @@
},
/turf/open/floor/plasteel,
/area/awaymission/BMPship/Aft)
-"eu" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
"ev" = (
/obj/structure/cable{
icon_state = "2-4"
@@ -1640,15 +1601,6 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/awaymission/BMPship/Aft)
-"eR" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/BMPship/Aft)
"eS" = (
/obj/effect/decal/cleanable/cobweb,
/obj/machinery/power/port_gen/pacman/super,
@@ -5294,12 +5246,12 @@ aa
aa
ac
cX
-dp
-eu
-ec
-eu
-eu
-eR
+fr
+cX
+cX
+cX
+cX
+cX
cX
fr
fH
diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
index 986d6c4ee72..0342f821435 100644
--- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
+++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
@@ -19,7 +19,7 @@
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav/deepstorage/kitchen)
"ai" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav/deepstorage/kitchen)
"ak" = (
@@ -144,7 +144,7 @@
/obj/machinery/power/apc/away{
dir = 2;
name = "Recycling APC";
- pixel_y = -24
+ pixel_y = -23
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/deepstorage/crusher)
@@ -647,7 +647,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/deepstorage/storage)
"bI" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/obj/item/storage/box/ingredients/wildcard,
/obj/item/storage/box/ingredients/wildcard,
/obj/item/storage/box/ingredients/wildcard,
@@ -694,7 +694,7 @@
/obj/machinery/power/apc/away{
dir = 2;
name = "Kitchen APC";
- pixel_y = -24
+ pixel_y = -23
},
/turf/open/floor/plasteel/cafeteria,
/area/ruin/space/has_grav/deepstorage/kitchen)
@@ -1762,7 +1762,7 @@
/obj/machinery/power/apc/away{
dir = 2;
name = "Main Area APC";
- pixel_y = -24
+ pixel_y = -23
},
/obj/effect/turf_decal/stripes/corner,
/obj/effect/decal/cleanable/dirt,
@@ -2172,7 +2172,7 @@
/obj/machinery/power/apc/away{
dir = 1;
name = "Airlock Control APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
@@ -2804,17 +2804,17 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/deepstorage/power)
"gj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable/yellow{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
icon_state = "2-8"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/deepstorage/power)
"gk" = (
@@ -2867,13 +2867,13 @@
/area/ruin/space/has_grav/deepstorage/power)
"gt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/deepstorage/power)
"gu" = (
@@ -2928,10 +2928,10 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/deepstorage/power)
"gB" = (
@@ -2989,16 +2989,16 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/deepstorage/power)
"gK" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -3008,17 +3008,17 @@
name = "RTG Observation";
req_access_txt = "200"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/deepstorage/power)
"gM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable/yellow{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable{
icon_state = "1-8"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/deepstorage/power)
"gN" = (
@@ -3053,7 +3053,7 @@
/area/ruin/space/has_grav/deepstorage)
"gR" = (
/obj/structure/grille,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -3101,10 +3101,10 @@
/area/ruin/space/has_grav/deepstorage/power)
"gX" = (
/obj/machinery/power/rtg/advanced,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable/yellow,
+/obj/structure/cable,
/turf/open/floor/plating,
/area/ruin/space/has_grav/deepstorage/power)
"gY" = (
@@ -3116,13 +3116,13 @@
/area/ruin/space/has_grav/deepstorage/power)
"gZ" = (
/obj/machinery/power/rtg/advanced,
-/obj/structure/cable/yellow,
+/obj/structure/cable,
/turf/open/floor/plating,
/area/ruin/space/has_grav/deepstorage/power)
"ha" = (
/obj/machinery/power/rtg/advanced,
/obj/machinery/light/small,
-/obj/structure/cable/yellow,
+/obj/structure/cable,
/turf/open/floor/plating,
/area/ruin/space/has_grav/deepstorage/power)
"hb" = (
diff --git a/_maps/RandomRuins/SpaceRuins/derelict6.dmm b/_maps/RandomRuins/SpaceRuins/derelict6.dmm
index 5a33bb9d75c..dfd54817356 100644
--- a/_maps/RandomRuins/SpaceRuins/derelict6.dmm
+++ b/_maps/RandomRuins/SpaceRuins/derelict6.dmm
@@ -203,7 +203,7 @@
/turf/open/floor/plasteel/airless/cafeteria,
/area/ruin/unpowered)
"aK" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/obj/machinery/light/broken{
dir = 1
},
diff --git a/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm b/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm
index 8956267108a..a7e8fe7f68f 100644
--- a/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm
+++ b/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm
@@ -175,7 +175,7 @@
dir = 1;
name = "Worn-out APC";
pixel_x = 1;
- pixel_y = 26
+ pixel_y = 23
},
/obj/machinery/light{
dir = 1
@@ -253,7 +253,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/gasthelizard)
"G" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/gasthelizard)
"H" = (
diff --git a/_maps/RandomRuins/SpaceRuins/hilbertshoteltestingsite.dmm b/_maps/RandomRuins/SpaceRuins/hilbertshoteltestingsite.dmm
index 367372c0027..a89d1422d2e 100644
--- a/_maps/RandomRuins/SpaceRuins/hilbertshoteltestingsite.dmm
+++ b/_maps/RandomRuins/SpaceRuins/hilbertshoteltestingsite.dmm
@@ -169,7 +169,7 @@
/turf/open/floor/plasteel/grimy,
/area/ruin/space/has_grav/hilbertresearchfacility)
"E" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel/grimy,
/area/ruin/space/has_grav/hilbertresearchfacility)
"F" = (
diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
index bff36316033..5f8aa156cb7 100644
--- a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
@@ -61,7 +61,7 @@
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/listeningstation)
"ai" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
@@ -877,15 +877,13 @@
/obj/machinery/syndicatebomb/self_destruct{
anchored = 1
},
-/obj/structure/sign/warning/securearea{
- desc = "A warning sign which reads 'DANGER: SELF DESTRUCT DEVICE'.";
- name = "DANGER: SELF DESTRUCT DEVICE";
- pixel_x = 32
- },
/obj/machinery/door/window/brigdoor{
dir = 8;
req_access_txt = "150"
},
+/obj/structure/sign/warning/explosives/alt{
+ pixel_x = 32
+ },
/turf/open/floor/circuit/red,
/area/ruin/space/has_grav/listeningstation)
"bm" = (
@@ -1035,8 +1033,7 @@
"bx" = (
/obj/effect/mob_spawn/human/lavaland_syndicate/comms/space{
assignedrole = "Space Syndicate";
- dir = 8;
- flavour_text = "You are a syndicate agent, assigned to a small listening post station situated near your hated enemy's top secret research facility: Space Station 13. Monitor enemy activity as best you can, and try to keep a low profile. DON'T abandon the base without good cause. Use the communication equipment to provide support to any field agents, and sow disinformation to throw Nanotrasen off your trail. Do not let the base fall into enemy hands!"
+ dir = 8
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8;
diff --git a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm
index 5bc1da71749..53e5b229578 100644
--- a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm
+++ b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm
@@ -53,7 +53,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/ruin/space/has_grav/powered/mechtransport)
"n" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
diff --git a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm
index 9d0292140af..6a43d33b7aa 100644
--- a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm
+++ b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm
@@ -47,7 +47,7 @@
dir = 1;
name = "Worn-out APC";
pixel_x = 1;
- pixel_y = 26
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-4"
diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
index 928f62179de..a998f1e3a32 100644
--- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
@@ -245,7 +245,7 @@
pixel_x = 24;
start_charge = 0
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -297,7 +297,7 @@
/area/ruin/space/has_grav/ancientstation)
"aU" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -529,7 +529,7 @@
/area/ruin/space/has_grav/ancientstation/betanorth)
"bx" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch,
@@ -618,7 +618,7 @@
/turf/closed/wall/rust,
/area/ruin/space/has_grav/ancientstation)
"bP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -630,7 +630,7 @@
/area/ruin/space/has_grav/ancientstation)
"bQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -777,7 +777,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/powered)
"cl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -891,17 +891,17 @@
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-25"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/strong,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/strong,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"cA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -912,7 +912,7 @@
"cB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/science,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -920,16 +920,16 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"cC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/range,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/range,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"cD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -937,7 +937,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"cE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -946,8 +946,8 @@
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"cF" = (
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/range,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/range,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"cG" = (
@@ -999,7 +999,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
"cO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1070,13 +1070,13 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"cY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"cZ" = (
@@ -1085,8 +1085,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"da" = (
@@ -1104,8 +1104,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/mob/living/simple_animal/hostile/hivebot/range,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/range,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"dc" = (
@@ -1122,8 +1122,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/mob/living/simple_animal/hostile/hivebot/range,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/range,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"de" = (
@@ -1140,14 +1140,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/mob/living/simple_animal/hostile/hivebot/strong,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/strong,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"dg" = (
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/strong,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/strong,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"dh" = (
@@ -1178,7 +1178,7 @@
/turf/closed/wall/rust,
/area/ruin/space/has_grav/ancientstation/engi)
"dm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1283,7 +1283,7 @@
/turf/closed/wall/rust,
/area/ruin/space/has_grav/ancientstation/sec)
"dw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1361,17 +1361,17 @@
/area/template_noop)
"dK" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/turf/template_noop,
/area/template_noop)
"dL" = (
/obj/machinery/power/solar,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating/airless,
@@ -1438,13 +1438,13 @@
"dS" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 8;
name = "Charlie Security APC";
- pixel_x = -24;
+ pixel_x = -25;
start_charge = 0
},
/obj/effect/turf_decal/tile/red{
@@ -1490,7 +1490,7 @@
/turf/closed/wall/rust,
/area/ruin/space/has_grav/ancientstation/sec)
"dW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1528,7 +1528,6 @@
/area/ruin/space/has_grav/ancientstation/rnd)
"ec" = (
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/strong,
/obj/effect/turf_decal/tile/purple{
dir = 1
},
@@ -1538,12 +1537,13 @@
/obj/effect/turf_decal/tile/purple{
dir = 8
},
+/mob/living/simple_animal/hostile/hivebot/strong,
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation/rnd)
"ed" = (
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"ee" = (
@@ -1552,8 +1552,8 @@
dir = 8;
pixel_x = 24
},
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"ef" = (
@@ -1569,7 +1569,7 @@
/area/ruin/space/has_grav/ancientstation/betanorth)
"ei" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/template_noop,
@@ -1666,7 +1666,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/hydroponics)
"et" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1714,7 +1714,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/sec)
"ey" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1777,14 +1777,14 @@
},
/area/ruin/space/has_grav/ancientstation/betanorth)
"eI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/solar,
/turf/open/floor/plating/airless,
/area/template_noop)
"eJ" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/turf/open/floor/plating/airless,
@@ -1834,7 +1834,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/engi)
"eO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1888,7 +1888,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/hydroponics)
"eU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1915,27 +1915,27 @@
/area/ruin/space/has_grav/ancientstation/sec)
"eW" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"eX" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"eY" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"eZ" = (
@@ -1967,7 +1967,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -1976,7 +1976,7 @@
/obj/machinery/power/smes/engineering{
charge = 0
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1993,7 +1993,7 @@
/area/ruin/space/has_grav/ancientstation/engi)
"fg" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -2108,7 +2108,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/sec)
"ft" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -2131,8 +2131,8 @@
/area/ruin/space/has_grav/ancientstation/rnd)
"fw" = (
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot/strong,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/strong,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/rnd)
"fx" = (
@@ -2177,7 +2177,7 @@
/area/ruin/space/has_grav/ancientstation/engi)
"fE" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -2235,7 +2235,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/sec)
"fL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -2275,31 +2275,31 @@
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"fQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Delta Main Corridor APC";
- pixel_y = 24;
+ pixel_y = 23;
start_charge = 0
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"fR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"fS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"fT" = (
@@ -2360,19 +2360,19 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/airless,
/area/ruin/space/has_grav/ancientstation/betanorth)
"ga" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/ancientstation/betanorth)
"gb" = (
@@ -2390,10 +2390,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-4"
},
/turf/template_noop,
@@ -2403,7 +2403,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/template_noop,
@@ -2413,13 +2413,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/turf/template_noop,
@@ -2436,7 +2436,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -2446,7 +2446,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -2457,10 +2457,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -2468,19 +2468,19 @@
"gj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/engi)
"gk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -2495,14 +2495,14 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/engi)
"gm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -2511,10 +2511,10 @@
/area/ruin/space/has_grav/ancientstation/engi)
"gn" = (
/obj/effect/spawner/structure/window/hollow/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2526,13 +2526,13 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/powered)
"go" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -2543,7 +2543,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
"gp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -2552,7 +2552,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
"gq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch,
@@ -2563,7 +2563,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation)
"gr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -2577,13 +2577,13 @@
/obj/machinery/power/apc{
dir = 1;
name = "Charlie Hydroponics APC";
- pixel_y = 24;
+ pixel_y = 23;
start_charge = 0
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2592,7 +2592,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/hydroponics)
"gt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -2603,7 +2603,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation)
"gu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -2614,19 +2614,19 @@
/obj/machinery/power/apc{
dir = 2;
name = "Charlie Kitchen APC";
- pixel_y = -24;
+ pixel_y = -23;
start_charge = 0
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/kitchen)
"gw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -2638,7 +2638,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation)
"gx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch,
@@ -2646,7 +2646,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation)
"gy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -2657,7 +2657,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
"gz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2669,10 +2669,10 @@
/area/ruin/space/has_grav/ancientstation)
"gA" = (
/obj/effect/spawner/structure/window/hollow/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2684,11 +2684,11 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/sec)
"gB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2699,7 +2699,7 @@
/area/ruin/space/has_grav/ancientstation/sec)
"gC" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2710,7 +2710,7 @@
/area/ruin/space/has_grav/ancientstation/sec)
"gD" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -2724,10 +2724,10 @@
/area/ruin/space/has_grav/ancientstation/sec)
"gE" = (
/obj/effect/spawner/structure/window/hollow/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2736,7 +2736,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/sec)
"gF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2746,7 +2746,7 @@
/area/space/nearstation)
"gG" = (
/obj/effect/spawner/structure/window/hollow/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2756,7 +2756,7 @@
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"gH" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2766,10 +2766,10 @@
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"gI" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2779,7 +2779,7 @@
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"gJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch,
@@ -2789,13 +2789,13 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"gK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -2813,7 +2813,7 @@
pixel_x = 24;
start_charge = 0
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -2906,14 +2906,14 @@
/area/ruin/space/has_grav/ancientstation/engi)
"gW" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/engi)
"gX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -3004,7 +3004,7 @@
/area/ruin/space/has_grav/ancientstation/engi)
"hl" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/yellow{
@@ -3018,7 +3018,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow,
+/obj/structure/cable,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/engi)
"hn" = (
@@ -3031,7 +3031,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/engi)
"ho" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -3044,7 +3044,7 @@
/area/ruin/space/has_grav/ancientstation/engi)
"hq" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -3060,7 +3060,7 @@
/area/ruin/space/has_grav/ancientstation/kitchen)
"hs" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/turf/open/floor/plasteel/cafeteria,
/area/ruin/space/has_grav/ancientstation/kitchen)
"ht" = (
@@ -3136,7 +3136,7 @@
/area/ruin/space/has_grav/ancientstation/sec)
"hC" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -3155,8 +3155,8 @@
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"hE" = (
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/rnd)
"hF" = (
@@ -3241,14 +3241,14 @@
/turf/open/floor/plating/airless,
/area/ruin/space/has_grav/ancientstation/betanorth)
"hM" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/turf/open/floor/plating/airless,
/area/template_noop)
"hN" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
/turf/template_noop,
@@ -3260,7 +3260,7 @@
dir = 8
},
/obj/effect/decal/cleanable/oil,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/firealarm{
@@ -3285,7 +3285,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/engi)
"hQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -3382,7 +3382,7 @@
/area/ruin/space/has_grav/ancientstation/rnd)
"ib" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/turf/template_noop,
@@ -3428,7 +3428,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/engi)
"ig" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -3439,7 +3439,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/engi)
"ih" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -3518,8 +3518,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/mob/living/simple_animal/hostile/hivebot/range,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot/range,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/rnd)
"ir" = (
@@ -3683,7 +3683,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/sec)
"iC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -3691,8 +3691,8 @@
dir = 4;
pixel_x = -23
},
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"iD" = (
@@ -3872,7 +3872,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -3882,10 +3882,10 @@
charge = 0;
name = "backup power storage unit"
},
-/obj/structure/cable{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/engi)
"iW" = (
@@ -3974,11 +3974,11 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/cable/yellow,
/obj/machinery/firealarm{
dir = 8;
pixel_x = -24
},
+/obj/structure/cable,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/engi)
"jj" = (
@@ -3990,7 +3990,7 @@
name = "Backup Generator Room"
},
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -4068,8 +4068,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"ju" = (
@@ -4095,8 +4095,8 @@
"jw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"jx" = (
@@ -4107,8 +4107,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"jy" = (
@@ -4157,7 +4157,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/engi)
"jE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -4168,7 +4168,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
"jF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -4199,7 +4199,7 @@
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-25"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -4207,17 +4207,17 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"jK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"jL" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -4225,7 +4225,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"jM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -4247,7 +4247,7 @@
/turf/template_noop,
/area/space/nearstation)
"jR" = (
-/obj/structure/cable/yellow,
+/obj/structure/cable,
/turf/open/floor/plating/airless,
/area/template_noop)
"jS" = (
@@ -4281,7 +4281,7 @@
name = "Prototype Laboratory";
req_access_txt = "200"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white/side,
@@ -4352,17 +4352,17 @@
/obj/machinery/power/apc{
dir = 1;
name = "Delta Prototype Lab APC";
- pixel_y = 24;
+ pixel_y = 23;
start_charge = 0
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/ancientstation/proto)
"kh" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
@@ -4719,9 +4719,9 @@
pixel_x = 24;
start_charge = 0
},
-/obj/structure/cable,
/obj/item/storage/backpack/old,
/obj/item/storage/backpack/old,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation)
"kZ" = (
@@ -4927,7 +4927,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -4938,8 +4938,8 @@
dir = 1;
pixel_y = -26
},
-/mob/living/simple_animal/hostile/hivebot,
/obj/effect/decal/cleanable/dirt,
+/mob/living/simple_animal/hostile/hivebot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"qB" = (
@@ -4952,7 +4952,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"rv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -5022,7 +5022,7 @@
/area/ruin/space/has_grav/ancientstation/rnd)
"Af" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5102,18 +5102,18 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"LY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/ancientstation)
"MS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -5171,7 +5171,7 @@
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"Pl" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/solar_assembly,
@@ -5242,12 +5242,12 @@
/area/ruin/space/has_grav/ancientstation/deltacorridor)
"XJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ruin/space/has_grav/ancientstation/engi)
"Yc" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch,
@@ -5257,7 +5257,7 @@
"Yi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating,
diff --git a/_maps/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/RandomRuins/SpaceRuins/onehalf.dmm
index ef2301b3c8d..0eef2eb953b 100644
--- a/_maps/RandomRuins/SpaceRuins/onehalf.dmm
+++ b/_maps/RandomRuins/SpaceRuins/onehalf.dmm
@@ -3,35 +3,35 @@
/turf/template_noop,
/area/template_noop)
"ab" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/space/nearstation)
"ac" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/space/nearstation)
"ad" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/space/nearstation)
"ae" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/space/nearstation)
"af" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/lattice/catwalk,
@@ -45,7 +45,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/onehalf/dorms_med)
"ai" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
@@ -85,7 +85,7 @@
/area/ruin/space/has_grav/onehalf/dorms_med)
"aq" = (
/obj/machinery/door/airlock/external,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -174,7 +174,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/dorms_med)
"aD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -216,13 +216,13 @@
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/onehalf/dorms_med)
"aL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/onehalf/dorms_med)
"aM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/closet/crate/medical,
@@ -233,7 +233,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Crew Quarters APC";
- pixel_x = 26
+ pixel_x = 24
},
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/onehalf/dorms_med)
@@ -282,7 +282,7 @@
/turf/template_noop,
/area/space/nearstation)
"aT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless{
@@ -296,7 +296,7 @@
/area/ruin/space/has_grav/onehalf/hallway)
"aV" = (
/obj/machinery/door/airlock/medical/glass,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -306,10 +306,10 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/dorms_med)
"aX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -318,13 +318,13 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/drone_bay)
"aY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 1;
name = "Mining Drone Bay APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -425,7 +425,7 @@
/obj/structure/disposalpipe/broken{
dir = 4
},
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/open/floor/plating/airless{
@@ -436,10 +436,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/airless{
@@ -450,7 +450,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless{
@@ -461,7 +461,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless,
@@ -470,10 +470,10 @@
/obj/structure/disposalpipe/junction{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless{
@@ -484,10 +484,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/airless,
@@ -496,7 +496,7 @@
/obj/structure/disposalpipe/junction{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/airless,
@@ -506,7 +506,7 @@
dir = 4
},
/obj/machinery/door/airlock/public/glass,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -515,7 +515,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -599,12 +599,12 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable,
/obj/machinery/power/apc{
dir = 2;
name = "Hallway APC";
- pixel_y = -24
+ pixel_y = -23
},
+/obj/structure/cable/yellow,
/turf/open/floor/plasteel/airless,
/area/ruin/space/has_grav/onehalf/hallway)
"bA" = (
@@ -661,7 +661,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/drone_bay)
"bJ" = (
-/obj/structure/chair/office{
+/obj/structure/chair{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -775,18 +775,18 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/bridge)
"cf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 1;
name = "Bridge APC";
- pixel_y = 24
+ pixel_y = 23
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/bridge)
"cg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/table/reinforced,
@@ -848,7 +848,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/bridge)
"cm" = (
-/obj/structure/chair/office{
+/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel,
@@ -857,16 +857,16 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/bridge)
"co" = (
-/obj/structure/chair/office{
+/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/bridge)
"cp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/table/reinforced,
@@ -875,13 +875,13 @@
/area/ruin/space/has_grav/onehalf/bridge)
"cq" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -931,19 +931,19 @@
/area/ruin/space/has_grav/onehalf/bridge)
"cy" = (
/obj/machinery/power/solar_control,
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/onehalf/bridge)
"cz" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
id = "bridge_onehalf";
name = "bridge blast door"
},
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ruin/space/has_grav/onehalf/bridge)
"cA" = (
@@ -1006,7 +1006,7 @@
/area/ruin/space/has_grav/onehalf/bridge)
"cK" = (
/obj/structure/lattice,
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/template_noop,
@@ -1060,28 +1060,28 @@
/area/ruin/space/has_grav/onehalf/bridge)
"cV" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable,
/obj/machinery/door/poddoor/preopen{
id = "bridge_onehalf";
name = "bridge blast door"
},
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ruin/space/has_grav/onehalf/bridge)
"cW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/space/nearstation)
"cX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/airless{
@@ -1111,7 +1111,7 @@
/area/ruin/space/has_grav/onehalf/bridge)
"dc" = (
/obj/structure/grille/broken,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating/airless{
@@ -1127,10 +1127,10 @@
/area/ruin/space/has_grav/onehalf/hallway)
"de" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -1141,10 +1141,10 @@
/area/ruin/space/has_grav/onehalf/bridge)
"df" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -1155,10 +1155,10 @@
/area/ruin/space/has_grav/onehalf/bridge)
"dg" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -1173,7 +1173,7 @@
/turf/template_noop,
/area/space/nearstation)
"di" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/shard{
@@ -1183,10 +1183,10 @@
/turf/template_noop,
/area/space/nearstation)
"dj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/item/stack/rods,
@@ -1194,17 +1194,17 @@
/turf/template_noop,
/area/space/nearstation)
"dk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/space/nearstation)
"dl" = (
-/obj/item/stack/cable_coil/cut/red{
+/obj/item/stack/cable_coil/cut/yellow{
amount = 2
},
/turf/template_noop,
diff --git a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
index 25b83b7f9f4..a65193db047 100644
--- a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
+++ b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
@@ -12,54 +12,54 @@
/area/space/nearstation)
"ad" = (
/obj/machinery/power/solar,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-2"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"ae" = (
/obj/machinery/power/solar,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-2"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"af" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-4"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"ag" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"ah" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"ai" = (
/obj/machinery/power/tracker,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"aj" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating/airless,
@@ -67,13 +67,13 @@
"ak" = (
/obj/machinery/power/solar,
/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"al" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plating/airless,
@@ -483,15 +483,15 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Guest Room APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel/guestroom/room_3)
"bO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -531,15 +531,15 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Guest Room APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel/guestroom/room_4)
"bU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -579,15 +579,15 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Guest Room APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel/guestroom/room_5)
"ca" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -627,15 +627,15 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Guest Room APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel/guestroom/room_6)
"cg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -669,7 +669,7 @@
id_tag = "a3";
name = "Guest Room A3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -684,7 +684,7 @@
id_tag = "a4";
name = "Guest Room A4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -699,7 +699,7 @@
id_tag = "a5";
name = "Guest Room A5"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -714,7 +714,7 @@
id_tag = "a6";
name = "Guest Room A6"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -756,7 +756,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -839,7 +839,7 @@
/turf/closed/wall,
/area/ruin/space/has_grav/hotel)
"cI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -848,7 +848,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel)
"cJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -861,7 +861,7 @@
name = "Hotel Maintenance";
req_access_txt = "201"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -870,7 +870,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel)
"cL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -879,20 +879,20 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -902,7 +902,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -911,7 +911,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -920,7 +920,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -931,7 +931,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"cS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -985,7 +985,7 @@
id_tag = "a2";
name = "Guest Room A2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1003,7 +1003,7 @@
id_tag = "a1";
name = "Guest Room A1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1035,7 +1035,7 @@
/obj/machinery/door/airlock/grunge{
name = "Hotel Staff Storage"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -1070,15 +1070,15 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 1;
name = "Guest Room APC";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel/guestroom/room_2)
"do" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1131,15 +1131,15 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 1;
name = "Guest Room APC";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel/guestroom/room_1)
"dw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1171,7 +1171,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/hotel/workroom)
"dB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1269,14 +1269,14 @@
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/hotel/workroom)
"dW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/hotel/workroom)
"dX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1285,7 +1285,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/hotel/workroom)
"dY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1294,7 +1294,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/hotel/workroom)
"dZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1401,7 +1401,7 @@
/turf/open/floor/plasteel/white,
/area/ruin/space/has_grav/hotel/workroom)
"eq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1460,7 +1460,7 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Laundry APC";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/turf/open/floor/plasteel/white,
@@ -1502,23 +1502,23 @@
/turf/closed/wall,
/area/ruin/space/has_grav/hotel)
"eI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel)
"eJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel)
"eK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -1623,7 +1623,7 @@
/area/ruin/space/has_grav/hotel/dock)
"fd" = (
/obj/effect/decal/cleanable/cobweb,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1632,7 +1632,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel)
"fe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1653,7 +1653,7 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Kitchen APC";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/turf/open/floor/plating,
@@ -2023,7 +2023,7 @@
/area/ruin/space/has_grav/hotel/dock)
"gj" = (
/obj/effect/decal/cleanable/oil,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2333,7 +2333,7 @@
/turf/closed/wall,
/area/ruin/space/has_grav/hotel)
"hf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2494,9 +2494,9 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Staff Room APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/mob/living/simple_animal/bot/medbot{
@@ -2595,7 +2595,7 @@
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/hotel/dock)
"hP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2604,10 +2604,10 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel)
"hQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -2616,7 +2616,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel)
"hR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -2624,7 +2624,7 @@
/area/ruin/space/has_grav/hotel)
"hS" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2704,7 +2704,7 @@
name = "Power Storage";
req_access_txt = "200,201"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2744,7 +2744,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"ik" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2754,7 +2754,7 @@
/area/ruin/space/has_grav/hotel)
"il" = (
/obj/machinery/door/airlock/public/glass,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -2764,7 +2764,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel/dock)
"im" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2785,13 +2785,13 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel/dock)
"ip" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"iq" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/turf/open/floor/plating/airless,
@@ -2814,10 +2814,10 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"it" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2830,7 +2830,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"iu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/fire{
@@ -2848,7 +2848,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"iv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/airalarm{
@@ -2866,9 +2866,9 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 1;
name = "Power Storage APC";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -2925,7 +2925,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"iE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -2934,7 +2934,7 @@
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel)
"iF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -2959,7 +2959,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"iI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2989,7 +2989,7 @@
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel)
"iN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -3000,7 +3000,7 @@
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel)
"iP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/wood,
@@ -3041,12 +3041,12 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Security APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3055,14 +3055,14 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel/security)
"iV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel)
"iW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3072,7 +3072,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel)
"iY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/airalarm{
@@ -3088,12 +3088,12 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Pool APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3102,7 +3102,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel/pool)
"ja" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3111,7 +3111,7 @@
/turf/open/floor/wood,
/area/ruin/space/has_grav/hotel)
"jb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -3120,7 +3120,7 @@
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"jc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -3137,7 +3137,7 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Dock APC";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/turf/open/floor/wood,
@@ -3173,7 +3173,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"jj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3296,7 +3296,7 @@
/obj/machinery/cell_charger,
/obj/item/stock_parts/cell/high,
/obj/item/stock_parts/cell/high,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/yellow{
@@ -3308,7 +3308,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"jB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -3509,7 +3509,7 @@
/turf/closed/wall,
/area/ruin/space/has_grav/hotel/power)
"kc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -3525,23 +3525,23 @@
/area/ruin/space/has_grav/hotel/power)
"kd" = (
/obj/machinery/power/terminal,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"ke" = (
/obj/machinery/power/terminal,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"kf" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/binary/valve/on{
@@ -3618,7 +3618,7 @@
/area/ruin/space/has_grav/hotel/pool)
"kq" = (
/obj/machinery/suit_storage_unit/standard_unit,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/yellow{
@@ -3632,10 +3632,10 @@
/area/ruin/space/has_grav/hotel/power)
"kr" = (
/obj/machinery/power/smes/engineering,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/sign/warning/electricshock{
@@ -3649,7 +3649,7 @@
/area/ruin/space/has_grav/hotel/power)
"ks" = (
/obj/machinery/power/smes/engineering,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/yellow,
@@ -3659,7 +3659,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"kt" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -3673,10 +3673,10 @@
/obj/machinery/power/solar_control{
dir = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/yellow,
@@ -3686,7 +3686,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"kv" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/structure/sign/warning/vacuum{
@@ -3699,7 +3699,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/power)
"kw" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/yellow,
@@ -3825,7 +3825,7 @@
/area/ruin/space/has_grav/hotel/power)
"kJ" = (
/obj/machinery/door/airlock/external/glass,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -3979,7 +3979,7 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -4217,7 +4217,7 @@
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"lD" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4226,7 +4226,7 @@
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"lE" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4281,10 +4281,10 @@
/turf/open/floor/plasteel/showroomfloor,
/area/ruin/space/has_grav/hotel/pool)
"lJ" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/turf/open/floor/plating/airless,
@@ -4412,46 +4412,46 @@
/area/ruin/space/has_grav/hotel/security)
"lV" = (
/obj/machinery/power/solar,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"lW" = (
/obj/machinery/power/solar,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"lX" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"lY" = (
/obj/machinery/power/solar,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"lZ" = (
/obj/machinery/power/solar,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/turf/open/floor/plating/airless,
@@ -4478,7 +4478,6 @@
/turf/closed/wall,
/area/ruin/space/has_grav/hotel/custodial)
"me" = (
-/mob/living/simple_animal/bot/cleanbot,
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -4489,6 +4488,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/mob/living/simple_animal/bot/cleanbot,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/custodial)
"mf" = (
@@ -4708,7 +4708,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/custodial)
"mw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -4731,7 +4731,7 @@
name = "Custodial Closet";
req_access_txt = "200,201"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -4740,7 +4740,7 @@
/turf/open/floor/plating,
/area/ruin/space/has_grav/hotel/custodial)
"my" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -4875,9 +4875,8 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Custodial APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable,
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -4888,6 +4887,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/obj/structure/cable/yellow,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/hotel/custodial)
"mK" = (
@@ -4917,7 +4917,7 @@
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
"mP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/dark,
@@ -4927,43 +4927,43 @@
name = "Hotel Staff Room";
req_access_txt = "200"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/hotel/workroom)
"mR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"mS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"mT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"mU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
/area/ruin/space/has_grav/hotel)
"mV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/carpet,
@@ -4974,7 +4974,7 @@
/area/ruin/space/has_grav/hotel/pool)
"sN" = (
/obj/machinery/door/airlock/external/glass,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
diff --git a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm b/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm
index aa5126fb650..d8576f631f1 100644
--- a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm
+++ b/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm
@@ -57,7 +57,7 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/turretedoutpost)
"an" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel,
@@ -264,7 +264,7 @@
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/turretedoutpost)
"aN" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav/turretedoutpost)
"aO" = (
diff --git a/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm b/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm
index 873d805a03a..deb91645bae 100644
--- a/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm
+++ b/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm
@@ -84,7 +84,6 @@
"p" = (
/obj/machinery/mass_driver{
dir = 4;
- icon_state = "mass_driver";
id = "oldship_ruin_gun"
},
/turf/open/floor/plating,
diff --git a/_maps/RandomZLevels/Academy.dmm b/_maps/RandomZLevels/Academy.dmm
index 9f7d02f1d19..11f57ba308e 100644
--- a/_maps/RandomZLevels/Academy.dmm
+++ b/_maps/RandomZLevels/Academy.dmm
@@ -48,7 +48,7 @@
dir = 1;
environ = 3;
equipment = 3;
- pixel_y = 32;
+ pixel_y = 23;
req_access = null
},
/turf/open/floor/carpet,
@@ -258,7 +258,7 @@
/turf/open/floor/wood,
/area/awaymission/academy/headmaster)
"aV" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/carpet,
/area/awaymission/academy/headmaster)
"aW" = (
@@ -303,7 +303,7 @@
/turf/open/floor/wood,
/area/awaymission/academy/headmaster)
"be" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/carpet,
@@ -336,7 +336,7 @@
/turf/open/floor/wood,
/area/awaymission/academy/headmaster)
"bk" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/structure/cable{
@@ -345,7 +345,7 @@
/turf/open/floor/carpet,
/area/awaymission/academy/headmaster)
"bl" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/carpet,
@@ -1284,7 +1284,7 @@
dir = 1;
environ = 3;
equipment = 3;
- pixel_y = 32;
+ pixel_y = 23;
req_access = null
},
/turf/open/floor/plasteel/grimy,
@@ -1333,7 +1333,7 @@
/turf/open/floor/plasteel,
/area/awaymission/academy/classrooms)
"er" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/turf/open/floor/plasteel/white,
/area/awaymission/academy/classrooms)
"es" = (
@@ -2539,7 +2539,7 @@
dir = 1;
environ = 3;
equipment = 3;
- pixel_y = 32;
+ pixel_y = 23;
req_access = null
},
/turf/open/floor/plasteel,
@@ -3571,7 +3571,7 @@
dir = 1;
environ = 3;
equipment = 3;
- pixel_y = 32;
+ pixel_y = 23;
req_access = null
},
/obj/structure/cable{
@@ -3915,7 +3915,7 @@
"lp" = (
/obj/machinery/power/apc{
dir = 1;
- pixel_y = 32
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-8"
diff --git a/_maps/RandomZLevels/Cabin.dmm b/_maps/RandomZLevels/Cabin.dmm
index 6724e023a64..97628dbcecf 100644
--- a/_maps/RandomZLevels/Cabin.dmm
+++ b/_maps/RandomZLevels/Cabin.dmm
@@ -105,7 +105,8 @@
"av" = (
/obj/machinery/power/apc{
dir = 1;
- name = "cabin APC"
+ name = "cabin APC";
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-4"
@@ -314,7 +315,7 @@
/turf/open/floor/carpet,
/area/awaymission/cabin)
"bd" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/carpet,
/area/awaymission/cabin)
"be" = (
@@ -673,7 +674,7 @@
/turf/open/floor/wood,
/area/awaymission/cabin)
"ct" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/turf/open/floor/plasteel/freezer,
/area/awaymission/cabin)
"cu" = (
@@ -747,7 +748,7 @@
/turf/open/floor/plasteel/freezer,
/area/awaymission/cabin)
"cG" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/turf/open/floor/plasteel/freezer,
/area/awaymission/cabin)
"cH" = (
diff --git a/_maps/RandomZLevels/VR/mining_VR.dmm b/_maps/RandomZLevels/VR/mining_VR.dmm
deleted file mode 100644
index afce8e88e63..00000000000
--- a/_maps/RandomZLevels/VR/mining_VR.dmm
+++ /dev/null
@@ -1,9807 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/structure/spawner/megafauna/dragon,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"ab" = (
-/obj/effect/landmark/vr_spawn/miner,
-/turf/open/floor/bluespace{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"ac" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/accelerator,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"ad" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/crusher,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"ae" = (
-/turf/open/floor/sepia{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"af" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/armor,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"ag" = (
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"ah" = (
-/turf/open/floor/mineral/gold{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"ai" = (
-/obj/effect/portal/permanent/one_way/recall{
- id = "boss rush entry virtual megafauna";
- name = "boss rush portal"
- },
-/turf/open/floor/mineral/gold{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"aj" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"ak" = (
-/turf/closed/indestructible/sandstone,
-/area/awaymission/vr/miner)
-"al" = (
-/turf/closed/indestructible/riveted/hierophant,
-/area/awaymission/vr/miner)
-"am" = (
-/turf/open/indestructible/hierophant,
-/area/awaymission/vr/miner)
-"an" = (
-/obj/effect/light_emitter{
- set_cap = 3;
- set_luminosity = 5
- },
-/turf/open/indestructible/hierophant,
-/area/awaymission/vr/miner)
-"ao" = (
-/turf/open/indestructible/hierophant/two,
-/area/awaymission/vr/miner)
-"ap" = (
-/obj/structure/spawner/megafauna/blood_drunk,
-/obj/effect/portal/permanent/one_way/destroy{
- id = "boss rush entry virtual megafauna";
- name = "boss rush entry portal"
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aq" = (
-/obj/effect/light_emitter{
- set_cap = 3;
- set_luminosity = 5
- },
-/turf/open/indestructible/hierophant/two,
-/area/awaymission/vr/miner)
-"ar" = (
-/obj/structure/spawner/megafauna/hierophant,
-/obj/effect/portal/permanent/one_way/destroy{
- id = "hierophant virtual arena";
- name = "hierophant arena portal"
- },
-/turf/open/indestructible/hierophant/two,
-/area/awaymission/vr/miner)
-"as" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/healing,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"at" = (
-/obj/structure/spawner/megafauna/bubblegum,
-/obj/effect/portal/permanent/one_way/destroy{
- id = "boss rush continue virtual megafauna";
- name = "boss rush continue exit portal"
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"au" = (
-/turf/open/floor/bluespace{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"av" = (
-/turf/closed/indestructible/riveted,
-/area/awaymission/vr/miner)
-"aw" = (
-/obj/structure/spawner/megafauna/hierophant,
-/turf/open/indestructible/hierophant/two,
-/area/awaymission/vr/miner)
-"ax" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/food,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"ay" = (
-/obj/structure/spawner/megafauna/blood_drunk,
-/obj/effect/portal/permanent/one_way/destroy{
- id = "blood drunk miner virtual arena";
- name = "blood drunk miner arena portal"
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"az" = (
-/turf/closed/indestructible/riveted/boss,
-/area/awaymission/vr/miner)
-"aA" = (
-/turf/open/indestructible/necropolis,
-/area/awaymission/vr/miner)
-"aB" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/misc,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aC" = (
-/obj/structure/spawner/megafauna/colossus,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aD" = (
-/obj/structure/spawner/megafauna/bubblegum,
-/obj/effect/portal/permanent/one_way/destroy{
- id = "bubblegum virtual arena";
- name = "bubblegum arena portal"
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aE" = (
-/obj/structure/spawner/megafauna/legion,
-/turf/open/indestructible/necropolis,
-/area/awaymission/vr/miner)
-"aF" = (
-/obj/effect/portal/permanent/one_way/keep{
- id = "boss rush continue virtual megafauna";
- name = "boss rush continue portal"
- },
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"aG" = (
-/obj/structure/spawner/megafauna/colossus,
-/obj/effect/portal/permanent/one_way/destroy{
- id = "colossus virtual arena";
- name = "colossus arena portal"
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aH" = (
-/obj/structure/spawner/megafauna/dragon,
-/obj/effect/portal/permanent/one_way/destroy{
- id = "ash drake virtual arena";
- name = "ash drake arena portal"
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aI" = (
-/obj/machinery/shower{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aJ" = (
-/turf/closed/indestructible/necropolis,
-/area/awaymission/vr/miner)
-"aK" = (
-/turf/closed/indestructible/fakedoor,
-/area/awaymission/vr/miner)
-"aL" = (
-/obj/effect/decal/cleanable/blood/bubblegum,
-/turf/open/floor/mineral/plastitanium{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"aM" = (
-/obj/effect/decal/cleanable/blood/bubblegum,
-/obj/effect/portal/permanent/one_way/recall{
- id = "bubblegum virtual arena";
- name = "bubblegum arena portal"
- },
-/turf/open/floor/mineral/plastitanium{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"aN" = (
-/obj/structure/spawner/megafauna/legion,
-/obj/effect/portal/permanent/one_way/destroy{
- id = "legion virtual arena";
- name = "legion arena portal"
- },
-/turf/open/indestructible/necropolis,
-/area/awaymission/vr/miner)
-"aO" = (
-/obj/effect/portal/permanent/one_way/recall{
- id = "hierophant virtual arena";
- name = "hierophant arena portal"
- },
-/turf/open/indestructible/hierophant,
-/area/awaymission/vr/miner)
-"aP" = (
-/obj/structure/fluff/drake_statue,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aQ" = (
-/obj/structure/stone_tile/slab,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aR" = (
-/obj/structure/stone_tile/surrounding,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aS" = (
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"aT" = (
-/turf/open/floor/fakepit{
- canSmoothWith = null;
- icon = 'icons/turf/floors/magic_chasm.dmi';
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"aU" = (
-/obj/structure/stone_tile/slab/burnt,
-/turf/open/lava/smooth/lava_land_surface,
-/area/awaymission/vr/miner)
-"aV" = (
-/obj/structure/stone_tile/block,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aW" = (
-/obj/structure/stone_tile/slab,
-/obj/effect/portal/permanent/one_way/recall{
- id = "blood drunk miner virtual arena";
- name = "blood drunk miner arena portal"
- },
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/awaymission/vr/miner)
-"aX" = (
-/turf/open/floor/clockwork/reebe{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"aY" = (
-/obj/structure/chair/sofa/corner{
- dir = 1
- },
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"aZ" = (
-/obj/structure/chair/sofa,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"ba" = (
-/obj/structure/chair/sofa/left,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bb" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/crusher,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bc" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/armor,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bd" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/accelerator,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"be" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/healing,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bf" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/food,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bg" = (
-/obj/effect/portal/permanent/one_way/recall{
- id = "colossus virtual arena";
- name = "colossus arena portal"
- },
-/turf/open/floor/fakepit{
- canSmoothWith = null;
- icon = 'icons/turf/floors/magic_chasm.dmi';
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bh" = (
-/obj/structure/closet/crate/necropolis/vr_mining_gear/misc,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bi" = (
-/obj/structure/chair/sofa/right,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bj" = (
-/obj/structure/chair/sofa/corner,
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bk" = (
-/obj/structure/chair/sofa{
- dir = 4
- },
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bl" = (
-/obj/structure/chair/sofa{
- dir = 8
- },
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bm" = (
-/obj/structure/chair/sofa/right{
- dir = 4
- },
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bn" = (
-/obj/structure/chair/sofa/left{
- dir = 8
- },
-/turf/open/floor/mineral/silver{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bo" = (
-/obj/structure/table/wood,
-/turf/open/floor/mineral/gold{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bp" = (
-/obj/structure/chair/sofa/corner{
- dir = 1
- },
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bq" = (
-/obj/structure/chair/sofa,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"br" = (
-/obj/structure/chair/sofa/left,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bs" = (
-/obj/structure/chair/sofa/right,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bt" = (
-/obj/structure/stone_tile/slab/burnt,
-/obj/effect/portal/permanent/one_way/recall{
- id = "ash drake virtual arena";
- name = "ash drake arena portal"
- },
-/turf/open/lava/smooth/lava_land_surface,
-/area/awaymission/vr/miner)
-"bu" = (
-/obj/effect/portal/permanent/one_way/recall{
- id = "legion virtual arena";
- name = "legion arena portal"
- },
-/turf/open/indestructible/necropolis,
-/area/awaymission/vr/miner)
-"bv" = (
-/obj/structure/chair/sofa/corner,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bw" = (
-/obj/structure/chair/sofa{
- dir = 4
- },
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bx" = (
-/obj/structure/table/wood,
-/turf/open/floor/clockwork/reebe{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"by" = (
-/obj/structure/chair/sofa{
- dir = 8
- },
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bz" = (
-/obj/structure/chair/sofa/right{
- dir = 4
- },
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"bA" = (
-/obj/structure/chair/sofa/left{
- dir = 8
- },
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"ek" = (
-/obj/item/book/granter/spell/charge,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"eq" = (
-/obj/item/book/granter/spell/forcewall,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"jQ" = (
-/obj/item/gun/magic/staff/healing,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"kN" = (
-/obj/item/wisp_lantern,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"lJ" = (
-/obj/item/sord,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"nv" = (
-/obj/item/gun/energy/pulse/destroyer,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"pY" = (
-/obj/item/gun/magic/staff/honk,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"uE" = (
-/obj/item/book/granter/spell/fireball,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"xx" = (
-/obj/item/katana,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"Ag" = (
-/obj/structure/table/wood,
-/obj/item/book/granter/spell/mindswap,
-/turf/open/floor/clockwork/reebe{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"JW" = (
-/obj/item/gun/energy/kinetic_accelerator/crossbow,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"RR" = (
-/obj/item/gun/magic/staff/spellblade,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"RY" = (
-/obj/item/book/granter/spell/sacredflame,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"Uf" = (
-/obj/item/book/granter/spell/barnyard,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-"Wh" = (
-/obj/structure/chair/sofa{
- dir = 8
- },
-/mob/living/simple_animal/hostile/skeleton/plasmaminer,
-/turf/open/floor/bronze{
- initial_gas_mix = "o2=14;n2=23;TEMP=300"
- },
-/area/awaymission/vr/miner)
-
-(1,1,1) = {"
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-"}
-(2,1,1) = {"
-av
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-av
-"}
-(3,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-al
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-an
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-al
-av
-"}
-(4,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-ab
-ab
-ab
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-al
-am
-am
-am
-an
-an
-am
-am
-am
-al
-am
-am
-am
-al
-am
-am
-am
-an
-an
-am
-am
-am
-al
-av
-"}
-(5,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-ab
-ab
-ab
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-al
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-al
-av
-"}
-(6,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-ab
-ab
-ab
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-al
-am
-an
-am
-al
-al
-am
-an
-am
-am
-am
-an
-am
-am
-am
-an
-am
-al
-al
-am
-an
-am
-al
-av
-"}
-(7,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-au
-au
-au
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-al
-am
-an
-am
-al
-al
-am
-an
-am
-am
-am
-an
-am
-am
-am
-an
-am
-al
-al
-am
-an
-am
-al
-av
-"}
-(8,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ac
-au
-au
-au
-as
-aI
-aI
-aI
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-al
-av
-"}
-(9,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ad
-au
-au
-au
-ax
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-an
-an
-ao
-ao
-ao
-al
-ao
-ao
-ao
-al
-ao
-ao
-ao
-an
-an
-am
-am
-am
-al
-av
-"}
-(10,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-af
-au
-au
-au
-aB
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-aq
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-al
-av
-"}
-(11,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-al
-am
-am
-am
-ao
-al
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-al
-ao
-am
-am
-am
-al
-am
-al
-av
-"}
-(12,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aQ
-aR
-aQ
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-al
-av
-"}
-(13,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ay
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aQ
-aW
-aQ
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-an
-am
-am
-an
-an
-ao
-ao
-aq
-ao
-ao
-ar
-ao
-ao
-aq
-ao
-ao
-an
-an
-am
-am
-an
-al
-av
-"}
-(14,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aR
-aQ
-aV
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-al
-av
-"}
-(15,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-al
-am
-am
-am
-ao
-al
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-al
-ao
-am
-am
-am
-al
-am
-al
-av
-"}
-(16,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-aq
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-al
-av
-"}
-(17,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-an
-an
-ao
-ao
-ao
-al
-ao
-ao
-ao
-al
-ao
-ao
-ao
-an
-an
-am
-am
-am
-al
-av
-"}
-(18,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-al
-av
-"}
-(19,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aU
-aU
-aU
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-an
-am
-al
-al
-am
-an
-am
-am
-am
-an
-am
-am
-am
-an
-am
-al
-al
-am
-an
-am
-al
-av
-"}
-(20,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aP
-aU
-bt
-aU
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-an
-am
-al
-al
-am
-an
-am
-am
-am
-an
-am
-am
-am
-an
-am
-al
-al
-am
-an
-am
-al
-av
-"}
-(21,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aU
-aU
-aU
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-al
-av
-"}
-(22,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-an
-an
-am
-am
-am
-al
-am
-am
-am
-al
-am
-am
-am
-an
-an
-am
-am
-am
-al
-av
-"}
-(23,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-an
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-al
-av
-"}
-(24,1,1) = {"
-av
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-av
-"}
-(25,1,1) = {"
-av
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-av
-"}
-(26,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aT
-aT
-aT
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(27,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aT
-bg
-aT
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(28,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aT
-aT
-aT
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(29,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(30,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(31,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(32,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(33,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aL
-aL
-aL
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(34,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aL
-aM
-aL
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(35,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aL
-aL
-aL
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(36,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aD
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aN
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(37,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(38,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(39,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(40,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-am
-am
-am
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(41,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-am
-aO
-am
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(42,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-am
-am
-am
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(43,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(44,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(45,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(46,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-au
-au
-au
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-az
-av
-"}
-(47,1,1) = {"
-av
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aA
-aA
-aA
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-av
-"}
-(48,1,1) = {"
-av
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aA
-bu
-aA
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-av
-"}
-(49,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aA
-aA
-aA
-au
-au
-au
-au
-au
-au
-au
-au
-au
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(50,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ag
-ah
-ag
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(51,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ah
-ai
-ah
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(52,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ag
-ah
-ag
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(53,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(54,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(55,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(56,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(57,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(58,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(59,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aG
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aH
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(60,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(61,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(62,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(63,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(64,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(65,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(66,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(67,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(68,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(69,1,1) = {"
-av
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-av
-"}
-(70,1,1) = {"
-av
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-av
-"}
-(71,1,1) = {"
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-av
-"}
-(72,1,1) = {"
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-"}
-(73,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-aY
-bk
-bk
-bm
-ag
-ag
-ag
-ag
-ag
-ak
-"}
-(74,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-aZ
-bo
-bo
-bo
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(75,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-aZ
-bo
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(76,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-ba
-bo
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(77,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-ag
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(78,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-ag
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(79,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-ag
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(80,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-bb
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(81,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-bc
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(82,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-bd
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(83,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ap
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aK
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aa
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aK
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aC
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aK
-ag
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-aF
-ak
-"}
-(84,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-be
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(85,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-bf
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(86,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-bh
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(87,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-ag
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(88,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-ag
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(89,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-ag
-ah
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(90,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-bi
-bo
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(91,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-aZ
-bo
-ah
-ah
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(92,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-aZ
-bo
-bo
-bo
-ah
-ah
-ah
-ah
-ag
-ak
-"}
-(93,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ak
-bj
-bl
-bl
-bn
-ag
-ag
-ag
-ag
-ag
-ak
-"}
-(94,1,1) = {"
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-ak
-"}
-(95,1,1) = {"
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-"}
-(96,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-an
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-bp
-bw
-bw
-bz
-aS
-aS
-aS
-aS
-aS
-aJ
-"}
-(97,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-an
-an
-am
-am
-am
-al
-am
-am
-am
-al
-am
-am
-am
-an
-an
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-bq
-bx
-bx
-bx
-aX
-aX
-aX
-aX
-aS
-aJ
-"}
-(98,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-bq
-bx
-aX
-aX
-aX
-aX
-aX
-aX
-aS
-aJ
-"}
-(99,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-an
-am
-al
-al
-am
-an
-am
-am
-am
-an
-am
-am
-am
-an
-am
-al
-al
-am
-an
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-br
-bx
-aX
-aX
-aX
-aX
-aX
-aX
-aS
-aJ
-"}
-(100,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-an
-am
-al
-al
-am
-an
-am
-am
-am
-an
-am
-am
-am
-an
-am
-al
-al
-am
-an
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-Uf
-aJ
-"}
-(101,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-uE
-aJ
-"}
-(102,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-an
-an
-ao
-ao
-ao
-al
-ao
-ao
-ao
-al
-ao
-ao
-ao
-an
-an
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-RY
-aJ
-"}
-(103,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-aq
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-nv
-aJ
-"}
-(104,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-al
-am
-am
-am
-ao
-al
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-al
-ao
-am
-am
-am
-al
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-kN
-aJ
-"}
-(105,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-pY
-aJ
-"}
-(106,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-at
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aK
-an
-am
-am
-an
-an
-ao
-ao
-aq
-ao
-ao
-aw
-ao
-ao
-aq
-ao
-ao
-an
-an
-am
-am
-an
-aK
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aE
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aK
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-RR
-aJ
-"}
-(107,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-jQ
-aJ
-"}
-(108,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-al
-am
-am
-am
-ao
-al
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-al
-ao
-am
-am
-am
-al
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-lJ
-aJ
-"}
-(109,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-aq
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-JW
-aJ
-"}
-(110,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-an
-an
-ao
-ao
-ao
-al
-ao
-ao
-ao
-al
-ao
-ao
-ao
-an
-an
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-eq
-aJ
-"}
-(111,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-ao
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-ek
-aJ
-"}
-(112,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-an
-am
-al
-al
-am
-an
-am
-am
-am
-an
-am
-am
-am
-an
-am
-al
-al
-am
-an
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-aS
-aX
-aX
-aX
-aX
-aX
-aX
-aX
-xx
-aJ
-"}
-(113,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-an
-am
-al
-al
-am
-an
-am
-am
-am
-an
-am
-am
-am
-an
-am
-al
-al
-am
-an
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-bs
-bx
-aX
-aX
-aX
-aX
-aX
-aX
-aS
-aJ
-"}
-(114,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-bq
-bx
-aX
-aX
-aX
-aX
-aX
-aX
-aS
-aJ
-"}
-(115,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-an
-an
-am
-am
-am
-al
-am
-am
-am
-al
-am
-am
-am
-an
-an
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-bq
-Ag
-bx
-bx
-aX
-aX
-aX
-aX
-aS
-aJ
-"}
-(116,1,1) = {"
-az
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-az
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-an
-am
-am
-am
-am
-am
-am
-am
-am
-am
-am
-az
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aA
-aJ
-bv
-Wh
-by
-bA
-aS
-aS
-aS
-aS
-aS
-aJ
-"}
-(117,1,1) = {"
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-az
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-"}
diff --git a/_maps/RandomZLevels/VR/murderdome.dmm b/_maps/RandomZLevels/VR/murderdome.dmm
deleted file mode 100644
index 7495f6bc5a7..00000000000
--- a/_maps/RandomZLevels/VR/murderdome.dmm
+++ /dev/null
@@ -1,2851 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/open/space/basic,
-/area/space)
-"b" = (
-/turf/closed/indestructible/riveted,
-/area/awaymission/vr/murderdome)
-"c" = (
-/obj/structure/rack,
-/obj/item/gun/energy/beam_rifle,
-/obj/item/gun/energy/beam_rifle,
-/obj/item/gun/energy/beam_rifle,
-/obj/item/gun/energy/beam_rifle,
-/obj/item/gun/energy/beam_rifle,
-/obj/item/gun/energy/beam_rifle,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"d" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/l6_saw/unrestricted,
-/obj/item/gun/ballistic/automatic/l6_saw/unrestricted,
-/obj/item/gun/ballistic/automatic/l6_saw/unrestricted,
-/obj/item/gun/ballistic/automatic/l6_saw/unrestricted,
-/obj/item/gun/ballistic/automatic/l6_saw/unrestricted,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"e" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"f" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/m90/unrestricted,
-/obj/item/gun/ballistic/automatic/m90/unrestricted,
-/obj/item/gun/ballistic/automatic/m90/unrestricted,
-/obj/item/gun/ballistic/automatic/m90/unrestricted,
-/obj/item/gun/ballistic/automatic/m90/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"g" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/tommygun,
-/obj/item/gun/ballistic/automatic/tommygun,
-/obj/item/gun/ballistic/automatic/tommygun,
-/obj/item/gun/ballistic/automatic/tommygun,
-/obj/item/gun/ballistic/automatic/tommygun,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"h" = (
-/obj/structure/rack,
-/obj/item/gun/energy/decloner,
-/obj/item/gun/energy/decloner,
-/obj/item/gun/energy/decloner,
-/obj/item/gun/energy/decloner,
-/obj/item/gun/energy/decloner,
-/obj/item/gun/energy/decloner,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"i" = (
-/obj/machinery/recharger,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"j" = (
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"k" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/proto/unrestricted,
-/obj/item/gun/ballistic/automatic/proto/unrestricted,
-/obj/item/gun/ballistic/automatic/proto/unrestricted,
-/obj/item/gun/ballistic/automatic/proto/unrestricted,
-/obj/item/gun/ballistic/automatic/proto/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/obj/item/gun/ballistic/automatic/c20r/unrestricted,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"l" = (
-/obj/structure/rack,
-/obj/item/gun/energy/laser/scatter,
-/obj/item/gun/energy/laser/scatter,
-/obj/item/gun/energy/laser/scatter,
-/obj/item/gun/energy/laser/scatter,
-/obj/item/gun/energy/laser/scatter,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"m" = (
-/obj/effect/landmark/vr_spawn,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"n" = (
-/obj/item/firing_pin,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"o" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/shotgun/automatic/combat,
-/obj/item/gun/ballistic/shotgun/automatic/combat,
-/obj/item/gun/ballistic/shotgun/automatic/combat,
-/obj/item/gun/ballistic/shotgun/automatic/combat,
-/obj/item/gun/ballistic/shotgun/automatic/combat,
-/obj/item/gun/ballistic/shotgun/automatic/combat,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"p" = (
-/obj/structure/rack,
-/obj/item/gun/energy/xray,
-/obj/item/gun/energy/xray,
-/obj/item/gun/energy/xray,
-/obj/item/gun/energy/xray,
-/obj/item/gun/energy/xray,
-/obj/item/gun/energy/xray,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"q" = (
-/obj/item/melee/baton/loaded,
-/obj/item/melee/baton/loaded,
-/obj/item/melee/baton/loaded,
-/obj/item/melee/baton/loaded,
-/obj/item/melee/baton/loaded,
-/obj/item/melee/baton/loaded,
-/obj/item/melee/transforming/energy/sword/saber,
-/obj/item/melee/transforming/energy/sword/saber,
-/obj/item/melee/transforming/energy/sword/saber,
-/obj/item/melee/transforming/energy/sword/saber,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"r" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/rifle/boltaction,
-/obj/item/gun/ballistic/rifle/boltaction,
-/obj/item/gun/ballistic/rifle/boltaction,
-/obj/item/gun/ballistic/rifle/boltaction,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"s" = (
-/obj/structure/rack,
-/obj/item/gun/energy/e_gun/nuclear,
-/obj/item/gun/energy/e_gun/nuclear,
-/obj/item/gun/energy/e_gun/nuclear,
-/obj/item/gun/energy/e_gun/nuclear,
-/obj/item/gun/energy/e_gun/nuclear,
-/obj/item/gun/energy/e_gun/nuclear,
-/obj/item/gun/energy/e_gun/nuclear,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"t" = (
-/obj/structure/rack,
-/obj/item/gun/energy/pulse/carbine,
-/obj/item/gun/energy/pulse/carbine,
-/obj/item/gun/energy/pulse/carbine,
-/obj/item/gun/energy/pulse/carbine,
-/obj/item/gun/energy/pulse/carbine,
-/obj/item/gun/energy/pulse/carbine,
-/obj/item/gun/energy/pulse/carbine,
-/obj/item/gun/energy/pulse/carbine,
-/obj/item/gun/energy/pulse/carbine,
-/obj/item/gun/energy/pulse/carbine,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"v" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/shotgun/bulldog/unrestricted,
-/obj/item/gun/ballistic/shotgun/bulldog/unrestricted,
-/obj/item/gun/ballistic/shotgun/bulldog/unrestricted,
-/obj/item/gun/ballistic/shotgun/bulldog/unrestricted,
-/obj/item/gun/ballistic/shotgun/bulldog/unrestricted,
-/obj/item/gun/ballistic/shotgun/bulldog/unrestricted,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"w" = (
-/obj/machinery/light,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"y" = (
-/obj/structure/barricade/security/murderdome,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"z" = (
-/obj/structure/barricade/security/murderdome,
-/obj/structure/barricade/security/murderdome,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"A" = (
-/turf/open/indestructible/sound,
-/area/awaymission/vr/murderdome)
-"B" = (
-/obj/structure/barricade/security/murderdome,
-/turf/open/indestructible/sound,
-/area/awaymission/vr/murderdome)
-"C" = (
-/obj/structure/barricade/security/murderdome,
-/obj/structure/barricade/security/murderdome,
-/turf/open/indestructible/sound,
-/area/awaymission/vr/murderdome)
-"D" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/item/gun/ballistic/automatic/wt550,
-/obj/machinery/light,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"E" = (
-/obj/structure/rack,
-/obj/item/gun/ballistic/automatic/ar,
-/obj/item/gun/ballistic/automatic/ar,
-/obj/item/gun/ballistic/automatic/ar,
-/obj/item/gun/ballistic/automatic/ar,
-/obj/item/gun/ballistic/automatic/ar,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"H" = (
-/obj/machinery/telecomms/allinone,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"R" = (
-/obj/effect/spawner/structure/window/reinforced/indestructable,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"W" = (
-/obj/effect/vr_clean_master,
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-"Y" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/vr/murderdome)
-
-(1,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(2,1,1) = {"
-b
-c
-h
-l
-p
-s
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-c
-h
-l
-p
-s
-b
-"}
-(3,1,1) = {"
-b
-d
-i
-i
-j
-t
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-d
-j
-i
-i
-t
-b
-"}
-(4,1,1) = {"
-b
-e
-j
-m
-j
-j
-j
-j
-b
-b
-Y
-j
-R
-R
-R
-Y
-j
-y
-y
-y
-y
-y
-y
-y
-y
-B
-j
-j
-j
-j
-j
-j
-j
-j
-w
-R
-R
-R
-j
-w
-b
-b
-j
-j
-j
-j
-m
-j
-D
-b
-"}
-(5,1,1) = {"
-b
-f
-j
-n
-q
-E
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-f
-q
-n
-j
-E
-b
-"}
-(6,1,1) = {"
-b
-g
-k
-o
-r
-v
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-g
-k
-o
-r
-v
-b
-"}
-(7,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-Y
-R
-j
-j
-j
-j
-j
-j
-j
-R
-Y
-j
-j
-j
-j
-j
-w
-R
-Y
-j
-j
-j
-j
-w
-R
-j
-j
-j
-j
-j
-j
-j
-R
-w
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(8,1,1) = {"
-b
-c
-h
-l
-p
-s
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-c
-h
-l
-p
-s
-b
-"}
-(9,1,1) = {"
-b
-d
-i
-i
-j
-t
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-d
-j
-i
-i
-t
-b
-"}
-(10,1,1) = {"
-b
-e
-j
-m
-j
-j
-j
-j
-b
-b
-Y
-j
-R
-R
-R
-Y
-j
-j
-j
-j
-j
-j
-j
-j
-j
-C
-y
-y
-y
-y
-y
-y
-y
-j
-w
-R
-R
-R
-j
-j
-b
-b
-j
-j
-j
-j
-m
-j
-D
-b
-"}
-(11,1,1) = {"
-b
-f
-j
-n
-q
-E
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-f
-q
-n
-j
-E
-b
-"}
-(12,1,1) = {"
-b
-g
-k
-o
-r
-v
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-g
-k
-o
-r
-v
-b
-"}
-(13,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-Y
-R
-j
-j
-j
-j
-j
-j
-j
-R
-Y
-j
-j
-j
-j
-j
-w
-R
-Y
-j
-j
-j
-j
-w
-R
-j
-j
-j
-j
-j
-j
-j
-R
-w
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(14,1,1) = {"
-b
-c
-h
-l
-p
-s
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-c
-h
-l
-p
-s
-b
-"}
-(15,1,1) = {"
-b
-d
-i
-i
-j
-t
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-d
-j
-i
-i
-t
-b
-"}
-(16,1,1) = {"
-b
-e
-j
-m
-j
-j
-j
-j
-b
-b
-Y
-j
-R
-R
-R
-Y
-j
-y
-y
-z
-y
-y
-y
-y
-y
-B
-j
-j
-j
-j
-j
-j
-j
-j
-w
-R
-R
-R
-j
-w
-b
-b
-j
-j
-j
-j
-m
-j
-D
-b
-"}
-(17,1,1) = {"
-b
-f
-j
-n
-q
-E
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-f
-q
-n
-j
-E
-b
-"}
-(18,1,1) = {"
-b
-g
-k
-o
-r
-v
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-g
-k
-o
-r
-v
-b
-"}
-(19,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-Y
-R
-j
-j
-j
-j
-j
-j
-j
-R
-Y
-j
-j
-j
-j
-j
-w
-R
-Y
-j
-j
-j
-j
-w
-R
-j
-j
-j
-j
-j
-j
-j
-R
-w
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(20,1,1) = {"
-b
-c
-h
-l
-p
-s
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-c
-h
-l
-p
-s
-b
-"}
-(21,1,1) = {"
-b
-d
-i
-i
-j
-t
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-d
-j
-i
-i
-t
-b
-"}
-(22,1,1) = {"
-b
-e
-j
-m
-j
-j
-j
-j
-b
-b
-Y
-j
-R
-R
-R
-Y
-j
-j
-j
-j
-j
-W
-j
-j
-j
-B
-y
-y
-y
-y
-y
-y
-y
-j
-w
-R
-R
-R
-j
-w
-b
-b
-j
-j
-j
-j
-m
-j
-D
-b
-"}
-(23,1,1) = {"
-b
-f
-j
-n
-q
-E
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-f
-q
-n
-j
-E
-b
-"}
-(24,1,1) = {"
-b
-g
-k
-o
-r
-v
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-g
-k
-o
-r
-v
-b
-"}
-(25,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-Y
-R
-j
-j
-j
-j
-j
-j
-j
-R
-Y
-j
-j
-j
-j
-j
-w
-R
-Y
-j
-j
-j
-j
-w
-R
-j
-j
-j
-j
-j
-j
-j
-R
-w
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(26,1,1) = {"
-b
-c
-h
-l
-p
-s
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-c
-h
-l
-p
-s
-b
-"}
-(27,1,1) = {"
-b
-d
-i
-i
-j
-t
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-d
-j
-i
-i
-t
-b
-"}
-(28,1,1) = {"
-b
-e
-j
-m
-j
-j
-j
-j
-b
-b
-Y
-j
-R
-R
-R
-Y
-j
-y
-y
-y
-y
-y
-y
-y
-y
-B
-j
-j
-j
-j
-j
-j
-j
-j
-w
-R
-R
-R
-j
-w
-b
-b
-j
-j
-j
-j
-m
-j
-D
-b
-"}
-(29,1,1) = {"
-b
-f
-j
-n
-q
-E
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-f
-q
-n
-j
-E
-b
-"}
-(30,1,1) = {"
-b
-g
-k
-o
-r
-v
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-g
-k
-o
-r
-v
-b
-"}
-(31,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-Y
-R
-j
-j
-j
-j
-j
-j
-j
-R
-Y
-j
-j
-j
-j
-j
-w
-R
-Y
-j
-j
-j
-j
-w
-R
-j
-j
-j
-j
-j
-j
-j
-R
-w
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(32,1,1) = {"
-b
-c
-h
-l
-p
-s
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-c
-h
-l
-p
-s
-b
-"}
-(33,1,1) = {"
-b
-d
-i
-i
-j
-t
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-d
-j
-i
-i
-t
-b
-"}
-(34,1,1) = {"
-b
-e
-j
-m
-j
-j
-j
-j
-b
-b
-Y
-j
-R
-R
-R
-Y
-j
-j
-j
-j
-j
-j
-j
-j
-j
-B
-y
-y
-y
-y
-y
-y
-y
-j
-w
-R
-R
-R
-j
-w
-b
-b
-j
-j
-j
-j
-m
-j
-D
-b
-"}
-(35,1,1) = {"
-b
-f
-j
-n
-q
-E
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-f
-q
-n
-j
-E
-b
-"}
-(36,1,1) = {"
-b
-g
-k
-o
-r
-v
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-g
-k
-o
-r
-v
-b
-"}
-(37,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-Y
-R
-j
-j
-j
-j
-j
-j
-j
-R
-Y
-j
-j
-j
-j
-j
-w
-R
-Y
-j
-j
-j
-j
-w
-R
-j
-j
-j
-j
-j
-j
-j
-R
-w
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(38,1,1) = {"
-b
-c
-h
-l
-p
-s
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-c
-h
-l
-p
-s
-b
-"}
-(39,1,1) = {"
-b
-d
-i
-i
-j
-t
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-d
-j
-i
-i
-t
-b
-"}
-(40,1,1) = {"
-b
-e
-j
-m
-j
-j
-j
-j
-b
-b
-Y
-j
-R
-R
-R
-Y
-j
-y
-y
-y
-y
-y
-y
-y
-y
-B
-j
-j
-j
-j
-j
-j
-j
-j
-w
-R
-R
-R
-j
-w
-b
-b
-j
-j
-j
-j
-m
-j
-D
-b
-"}
-(41,1,1) = {"
-b
-f
-j
-j
-q
-E
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-f
-q
-n
-j
-E
-b
-"}
-(42,1,1) = {"
-b
-g
-k
-o
-r
-v
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-g
-k
-o
-r
-v
-b
-"}
-(43,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-Y
-R
-j
-j
-j
-j
-j
-j
-j
-R
-Y
-j
-j
-j
-j
-j
-w
-R
-Y
-j
-j
-j
-j
-w
-R
-j
-j
-j
-j
-j
-j
-j
-R
-w
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(44,1,1) = {"
-b
-c
-h
-l
-p
-s
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-c
-h
-l
-p
-s
-b
-"}
-(45,1,1) = {"
-b
-d
-i
-i
-j
-t
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-d
-j
-i
-i
-t
-b
-"}
-(46,1,1) = {"
-b
-e
-j
-m
-j
-j
-j
-j
-b
-b
-Y
-j
-R
-R
-R
-Y
-j
-j
-j
-j
-j
-j
-j
-j
-j
-B
-y
-y
-y
-y
-y
-y
-y
-j
-w
-R
-R
-R
-j
-w
-b
-b
-j
-j
-j
-j
-m
-j
-D
-b
-"}
-(47,1,1) = {"
-b
-f
-j
-n
-q
-E
-b
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-A
-j
-j
-j
-j
-j
-j
-j
-j
-j
-j
-R
-j
-j
-j
-j
-j
-j
-b
-f
-q
-n
-j
-E
-b
-"}
-(48,1,1) = {"
-b
-g
-k
-o
-r
-v
-b
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-b
-j
-j
-j
-j
-j
-j
-j
-b
-j
-j
-b
-g
-k
-o
-r
-v
-b
-"}
-(49,1,1) = {"
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-b
-"}
-(50,1,1) = {"
-H
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-a
-"}
diff --git a/_maps/RandomZLevels/VR/snowdin_VR.dmm b/_maps/RandomZLevels/VR/snowdin_VR.dmm
deleted file mode 100644
index 6d9ef82c423..00000000000
--- a/_maps/RandomZLevels/VR/snowdin_VR.dmm
+++ /dev/null
@@ -1,81236 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/indestructible/rock/snow,
-/area/awaymission/snowdin/cave/mountain)
-"ac" = (
-/turf/closed/indestructible/rock/snow,
-/area/awaymission/snowdin/cave/mountain)
-"ad" = (
-/turf/open/space/basic,
-/area/space)
-"ae" = (
-/turf/closed/mineral/snowmountain,
-/area/awaymission/snowdin/cave/mountain)
-"af" = (
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"ag" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"ah" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/cave)
-"ai" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/cave)
-"aj" = (
-/turf/closed/mineral/snowmountain,
-/area/awaymission/snowdin/cave)
-"ak" = (
-/obj/structure/flora/bush,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"al" = (
-/obj/structure/flora/tree/dead,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"am" = (
-/obj/structure/flora/grass/both,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"an" = (
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"ao" = (
-/obj/structure/flora/stump,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"ap" = (
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"aq" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/research)
-"ar" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/research)
-"as" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"at" = (
-/obj/item/pickaxe,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"au" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"av" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"aw" = (
-/obj/machinery/computer,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"ax" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"ay" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"az" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/research)
-"aA" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/disk/holodisk/snowdin/weregettingpaidright,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aB" = (
-/obj/structure/table,
-/obj/item/pen,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aC" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/research)
-"aD" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp,
-/obj/item/pen,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aE" = (
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aF" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aG" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aH" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aI" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aJ" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/dorm)
-"aK" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/dorm)
-"aL" = (
-/obj/item/pen,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aM" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/item/paper/fluff/awaymissions/snowdin/research_feed,
-/obj/item/paper/fluff/awaymissions/snowdin/research_feed,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aN" = (
-/obj/item/paper/fluff/awaymissions/snowdin/research_feed,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aO" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aP" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/item/paper/fluff/awaymissions/snowdin/research_feed,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"aQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/dorm)
-"aR" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/item/bedsheet/purple,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aS" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/dorm)
-"aT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/bedsheet/purple,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aU" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aV" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/dorm)
-"aW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aX" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"aZ" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/bedsheet/orange,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"ba" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/sign/poster/contraband/kudzu{
- pixel_y = 32
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/dorm)
-"bb" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/item/paper/crumpled/ruins/snowdin/dontdeadopeninside,
-/obj/item/bedsheet/green,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bc" = (
-/obj/structure/window,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"bd" = (
-/obj/structure/window,
-/obj/item/flashlight/lamp,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/research)
-"be" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/kitchen)
-"bf" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/kitchen)
-"bg" = (
-/obj/effect/baseturf_helper/asteroid/snow{
- baseturf = /turf/open/floor/plating/asteroid/snow/ice;
- name = "asteroid snowice baseturf editor"
- },
-/turf/closed/indestructible/rock/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"bh" = (
-/turf/closed/indestructible/rock/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"bi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/dorm)
-"bj" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light/small/broken{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bk" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/paper/crumpled/ruins/snowdin/foreshadowing,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bm" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bn" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/dorm)
-"bo" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/research)
-"bp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"br" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bs" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/research)
-"bt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"bv" = (
-/obj/machinery/gibber,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"bw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/kitchenspike,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"bx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"by" = (
-/obj/structure/closet,
-/obj/item/clothing/suit/hooded/wintercoat/science,
-/obj/item/clothing/shoes/winterboots,
-/obj/machinery/button/door/indestructible{
- id = "snowdindormresearch3";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = -25;
- specialfunctions = 4
- },
-/obj/item/tome,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bz" = (
-/obj/structure/closet,
-/obj/item/clothing/suit/hooded/wintercoat/science,
-/obj/item/clothing/shoes/winterboots,
-/obj/machinery/button/door/indestructible{
- id = "snowdindormresearch2";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = -25;
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/dorm)
-"bB" = (
-/obj/structure/closet,
-/obj/item/clothing/shoes/winterboots,
-/obj/machinery/button/door/indestructible{
- id = "snowdindormresearch1";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = -25;
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bC" = (
-/obj/structure/closet,
-/obj/machinery/button/door/indestructible{
- id = "snowdindormhydro2";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = -25;
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bD" = (
-/obj/structure/closet,
-/obj/item/clothing/suit/hooded/wintercoat/hydro,
-/obj/item/clothing/shoes/winterboots,
-/obj/machinery/button/door/indestructible{
- id = "snowdindormhydro1";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_y = -25;
- specialfunctions = 4
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bE" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/research)
-"bH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/holopad,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bK" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"bM" = (
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"bN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"bO" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"bP" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Dorms APC";
- pixel_x = 26
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"bQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormresearch3";
- name = "Jouslen McGee's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormresearch2";
- name = "Elizabeth Queef's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormresearch1";
- name = "Jacob Ullman's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormhydro2";
- name = "Rachel Migro's Private Quarters"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/dorm)
-"bU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- id_tag = "snowdindormhydro1";
- name = "Katherine Esterdeen's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"bV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/firedoor,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/research)
-"bW" = (
-/obj/machinery/door/firedoor,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bX" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"bY" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/research)
-"bZ" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"ca" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/spider/stickyweb,
-/obj/machinery/light/broken{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cb" = (
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/kitchenspike,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cd" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/kitchen)
-"ce" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"cf" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/structure/spider/stickyweb,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"cg" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Kitchen APC";
- pixel_x = 1;
- pixel_y = 25
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"ch" = (
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"ci" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"cj" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"ck" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"cl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"cm" = (
-/obj/machinery/light/small,
-/obj/structure/rack,
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"cn" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"co" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"cp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"cq" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"cr" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"cs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"ct" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"cu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"cv" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"cw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"cx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"cy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/dorm)
-"cz" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Research Desks"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"cA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"cB" = (
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"cC" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/research)
-"cD" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"cE" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"cF" = (
-/obj/machinery/vending/cola/random,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"cG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/spider/stickyweb,
-/mob/living/simple_animal/hostile/poison/giant_spider/hunter/ice,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/airlock{
- name = "Freezer"
- },
-/obj/structure/barricade/wooden,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"cK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"cL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/kitchen/fork,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"cM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/item/storage/box{
- illustration = "donk_kit";
- name = "box of donkpockets"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"cN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"cO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"cP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"cQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"cR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"cS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/food/egg_smudge,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"cT" = (
-/obj/item/stack/sheet/mineral/wood,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"cU" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- name = "explosives ordinance"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"cV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"cW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"cX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"cY" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"cZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/item/trash/can,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"da" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"db" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/dorm)
-"dc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/dorm)
-"dd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"de" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"df" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/dorm)
-"dg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Research Desks"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"dh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"di" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"dj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/research)
-"dk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"dl" = (
-/obj/machinery/light,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/research)
-"dm" = (
-/obj/machinery/vending/snack/random,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/research)
-"dn" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"do" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel/freezer,
-/area/awaymission/snowdin/post/kitchen)
-"dp" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/kitchen)
-"dq" = (
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"dr" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"ds" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/kitchen)
-"dt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/food/flour,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"du" = (
-/obj/machinery/deepfryer,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"dv" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker/large,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"dw" = (
-/obj/machinery/deepfryer,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"dx" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/structure/closet/crate{
- name = "explosives ordinance"
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"dy" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- name = "explosives ordinance"
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"dz" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"dA" = (
-/obj/structure/falsewall,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"dB" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"dC" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"dD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"dE" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"dF" = (
-/obj/machinery/washing_machine,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"dG" = (
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"dH" = (
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"dI" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"dJ" = (
-/obj/structure/table,
-/obj/item/bedsheet/purple,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"dK" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post)
-"dL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"dM" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post)
-"dN" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/messhall)
-"dO" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/messhall)
-"dP" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/messhall)
-"dQ" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Kitchen";
- req_access_txt = "35"
- },
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"dR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/closet/secure_closet/freezer/fridge,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"dS" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/storage/box{
- illustration = "donk_kit";
- name = "box of donkpockets"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"dT" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/enzyme,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"dU" = (
-/obj/structure/table,
-/obj/item/kitchen/knife,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"dV" = (
-/obj/effect/decal/cleanable/food/egg_smudge,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/kitchen)
-"dW" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/kitchen)
-"dX" = (
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"dY" = (
-/obj/structure/ladder/unbreakable{
- height = 1;
- id = "snowdin"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"dZ" = (
-/obj/machinery/light/small/broken{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"ea" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"eb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/sign/poster/contraband/lusty_xenomorph{
- pixel_x = 32
- },
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"ec" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/dorm)
-"ed" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"ee" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"ef" = (
-/obj/structure/closet,
-/obj/item/clothing/suit/hooded/wintercoat/security,
-/obj/item/clothing/shoes/winterboots,
-/obj/machinery/button/door/indestructible{
- id = "snowdindormsec";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = -25;
- specialfunctions = 4
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"eg" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/trash/cheesie,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"eh" = (
-/obj/structure/bed,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/item/bedsheet/red,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/dorm)
-"ei" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall,
-/area/awaymission/snowdin/post)
-"ej" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"ek" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"el" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/grille/broken,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"em" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Gateway APC";
- pixel_y = -24;
- req_access = 150
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/gateway)
-"en" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Research Center APC";
- pixel_x = 1;
- pixel_y = 25
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/research)
-"eo" = (
-/obj/machinery/light/small,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"ep" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"eq" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Mess Hall APC";
- pixel_x = 26
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"er" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"es" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"et" = (
-/obj/machinery/vending/boozeomat{
- req_access_txt = "0"
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"eu" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"ev" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"ew" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"ex" = (
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"ey" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"ez" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"eA" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"eB" = (
-/obj/effect/decal/cleanable/food/flour,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/kitchen)
-"eC" = (
-/obj/item/kitchen/knife{
- pixel_x = 6;
- pixel_y = 6
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"eD" = (
-/obj/structure/table,
-/obj/item/kitchen/rollingpin,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"eE" = (
-/turf/closed/wall/mineral/wood,
-/area/awaymission/snowdin/outside)
-"eF" = (
-/obj/structure/mineral_door/wood,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/outside)
-"eG" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"eH" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"eI" = (
-/obj/item/crowbar,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"eJ" = (
-/turf/closed/mineral/snowmountain/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"eK" = (
-/turf/closed/wall/mineral/cult,
-/area/awaymission/snowdin/cave/cavern)
-"eL" = (
-/turf/closed/mineral/plasma/ice,
-/area/awaymission/snowdin/cave/cavern)
-"eM" = (
-/obj/structure/flora/tree/pine,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"eN" = (
-/obj/structure/dresser,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"eO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"eP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"eQ" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/dorm)
-"eR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/dorm)
-"eS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"eT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/airlock{
- id_tag = "snowdindormsec";
- name = "James Reed's Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"eU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/dorm)
-"eV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/trash/cheesie,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"eW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/trash/cheesie,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/dorm)
-"eX" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/reagent_containers/blood/random,
-/obj/item/reagent_containers/blood,
-/obj/item/reagent_containers/blood,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"eY" = (
-/obj/machinery/iv_drip,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"eZ" = (
-/obj/structure/table,
-/obj/item/clothing/neck/stethoscope,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fa" = (
-/obj/structure/table,
-/obj/item/clothing/glasses/hud/health,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fb" = (
-/obj/machinery/vending/wallmed{
- pixel_y = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fc" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/ancient,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"fe" = (
-/obj/structure/rack,
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/item/storage/toolbox/emergency,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"ff" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall,
-/area/awaymission/snowdin/post/gateway)
-"fg" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/gateway)
-"fh" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/gateway)
-"fi" = (
-/obj/structure/barricade/wooden/crude,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"fj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Kitchen";
- req_access_txt = "35"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"fk" = (
-/obj/machinery/smartfridge,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"fl" = (
-/obj/structure/table,
-/obj/machinery/door/firedoor,
-/obj/structure/barricade/wooden/crude,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/kitchen)
-"fm" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/hydro)
-"fn" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/mineral/wood{
- amount = 15
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/outside)
-"fo" = (
-/turf/open/floor/wood,
-/area/awaymission/snowdin/outside)
-"fp" = (
-/obj/structure/rack,
-/obj/item/grown/log/tree,
-/obj/item/grown/log/tree{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/grown/log/tree{
- pixel_x = -2;
- pixel_y = 3
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/outside)
-"fq" = (
-/obj/structure/flora/tree/pine,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"fr" = (
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"fs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"ft" = (
-/obj/structure/sign/poster/official/no_erp{
- pixel_x = -32
- },
-/obj/machinery/holopad,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/dorm)
-"fu" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"fv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 26
- },
-/obj/machinery/light/broken{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"fw" = (
-/obj/machinery/sleeper{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fx" = (
-/obj/item/reagent_containers/blood,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fz" = (
-/obj/item/flashlight/pen,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fB" = (
-/obj/item/storage/firstaid{
- empty = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fC" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/brute{
- empty = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"fD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"fE" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Outpost Hallway APC";
- pixel_x = 26
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"fF" = (
-/obj/structure/closet,
-/obj/item/clothing/under/assistantformal,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/shoes/winterboots,
-/obj/effect/turf_decal/bot,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"fG" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"fH" = (
-/obj/structure/bed,
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/item/bedsheet/nanotrasen,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"fI" = (
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"fJ" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"fK" = (
-/obj/structure/table/reinforced,
-/obj/item/trash/raisins,
-/obj/structure/barricade/wooden/crude,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"fL" = (
-/obj/structure/table/reinforced,
-/obj/item/kitchen/fork,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"fM" = (
-/obj/structure/table_frame,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"fN" = (
-/obj/structure/table_frame,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"fO" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/messhall)
-"fP" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/hydro)
-"fQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"fR" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"fS" = (
-/obj/item/kitchen/knife,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"fT" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"fU" = (
-/obj/machinery/light/broken{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"fV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"fW" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/hydro)
-"fX" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/garage)
-"fY" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/garage)
-"fZ" = (
-/obj/structure/table/wood,
-/obj/item/hatchet,
-/obj/item/hatchet{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/outside)
-"ga" = (
-/obj/structure/table/wood,
-/obj/structure/fireaxecabinet{
- pixel_y = -32
- },
-/obj/effect/spawner/lootdrop/snowdin/dungeonmisc,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/outside)
-"gb" = (
-/obj/structure/table/wood,
-/obj/item/storage/toolbox/mechanical/old,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/outside)
-"gc" = (
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"gd" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"ge" = (
-/turf/closed/mineral/iron/ice,
-/area/awaymission/snowdin/cave/cavern)
-"gf" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/snowdin/dungeonheavy,
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"gg" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/post/cavern2)
-"gh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"gi" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"gj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"gk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/crowbar,
-/obj/item/crowbar,
-/obj/item/pickaxe/mini,
-/obj/item/storage/toolbox/emergency,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"gl" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"gm" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/closet/crate,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"gn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"go" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"gp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"gq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"gr" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"gs" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/fire{
- empty = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"gt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"gu" = (
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"gv" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"gw" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"gy" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"gz" = (
-/obj/machinery/light/broken{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"gA" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"gB" = (
-/obj/effect/decal/cleanable/food/pie_smudge,
-/obj/item/trash/can,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"gC" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/messhall)
-"gD" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"gE" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_y = 3
- },
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 7;
- pixel_y = 7
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"gF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/hydro)
-"gG" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"gH" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"gI" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"gJ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"gK" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"gL" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/hydro)
-"gM" = (
-/obj/item/stack/cable_coil/red{
- amount = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"gN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"gO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/garage)
-"gP" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"gQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"gR" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Garage APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"gS" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"gT" = (
-/obj/item/clothing/head/cone,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"gU" = (
-/obj/effect/decal/remains/human,
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"gV" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"gW" = (
-/turf/closed/mineral/diamond/ice,
-/area/awaymission/snowdin/cave/cavern)
-"gX" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"gY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/button/door/indestructible{
- id = "snowdindormcap";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- specialfunctions = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"gZ" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/item/trash/can,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"ha" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"hb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Misc Storage";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"hc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"hd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"he" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/shoes/winterboots,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"hf" = (
-/obj/item/storage/firstaid/fire{
- empty = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"hg" = (
-/obj/item/shard,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"hh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/storage/firstaid/o2{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"hi" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/o2{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"hj" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"hk" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/machinery/conveyor_switch/oneway{
- id = "snowdin_belt_mine";
- name = "mining conveyor"
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"hl" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"hm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/machinery/holopad,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"hn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"ho" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/loading_area,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"hp" = (
-/obj/item/chair,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"hq" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"hr" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"hs" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"ht" = (
-/obj/structure/table,
-/obj/item/trash/waffles,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"hu" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"hv" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"hw" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"hx" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/hydro)
-"hy" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"hz" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/hydro)
-"hA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"hB" = (
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"hC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/garage)
-"hD" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"hE" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"hF" = (
-/obj/structure/destructible/cult/pylon,
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"hG" = (
-/obj/structure/closet,
-/obj/item/clothing/suit/hooded/wintercoat/captain{
- name = "overseer's winter coat"
- },
-/obj/item/clothing/shoes/winterboots,
-/obj/item/key,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"hH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"hI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"hJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/airlock{
- id_tag = "snowdindormcap";
- name = "Overseer's Private Quarters"
- },
-/turf/open/floor/carpet,
-/area/awaymission/snowdin/post/dorm)
-"hK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/dorm)
-"hL" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"hM" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"hN" = (
-/obj/structure/grille/broken,
-/obj/item/shard{
- icon_state = "medium"
- },
-/obj/item/stack/rods{
- amount = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"hO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical/glass{
- name = "Medbay Storage";
- req_access_txt = "45"
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post)
-"hP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"hQ" = (
-/obj/structure/window,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"hR" = (
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"hS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"hT" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"hU" = (
-/obj/structure/window,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"hV" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"hW" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"hX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/biogenerator,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"hY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"ib" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/hydro)
-"ic" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/garage)
-"id" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/garage)
-"ie" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/garage)
-"if" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"ig" = (
-/obj/effect/light_emitter{
- name = "cave light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave/mountain)
-"ih" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 6
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"ii" = (
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"ij" = (
-/obj/item/clothing/head/cone,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"ik" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 10
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"il" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/snowdin/dungeonmid,
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"im" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/structure/spawner/nether{
- max_mobs = 5
- },
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"in" = (
-/mob/living/simple_animal/hostile/netherworld/blankbody{
- desc = "It's Caleb Reed, but their flesh has an ashy texture, and their face is featureless save an eerie smile.";
- name = "Caleb Reed"
- },
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"io" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"ip" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"iq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"ir" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"is" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Dorms"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"it" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"iu" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"iv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post)
-"iw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/sign/departments/medbay{
- pixel_y = 32
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post)
-"ix" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"iy" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"iz" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/obj/item/paper_bin,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"iA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "snowdin_gate"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"iB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"iC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"iD" = (
-/obj/structure/table,
-/obj/item/crowbar,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"iE" = (
-/obj/item/trash/candy,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"iF" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"iG" = (
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"iH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"iI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/seed_extractor,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"iJ" = (
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"iK" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/hydro)
-"iL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"iM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"iN" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"iO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"iP" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"iQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"iR" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Garage"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"iS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"iT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/garage)
-"iU" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Garage"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"iV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"iW" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"iX" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"iY" = (
-/obj/structure/fence,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"iZ" = (
-/obj/item/clothing/head/cone,
-/obj/effect/light_emitter{
- name = "cave light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"ja" = (
-/obj/effect/light_emitter{
- name = "cave light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"jb" = (
-/obj/effect/light_emitter{
- name = "cave light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"jc" = (
-/mob/living/simple_animal/hostile/bear/snow,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"jd" = (
-/obj/structure/bookcase/random,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"je" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"jf" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"jg" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"jh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"ji" = (
-/obj/machinery/light,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/dorm)
-"jj" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/dorm)
-"jk" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Dorms"
- },
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/dorm)
-"jl" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"jm" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"jn" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post)
-"jo" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post)
-"jp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post)
-"jq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"jr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"js" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"jt" = (
-/obj/structure/table,
-/obj/machinery/button/door/indestructible{
- id = "snowdin_gate";
- pixel_x = 7;
- pixel_y = -24
- },
-/obj/item/disk/holodisk/snowdin/welcometodie,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"ju" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"jw" = (
-/obj/structure/table,
-/obj/item/paper/pamphlet/gateway,
-/obj/item/paper/pamphlet/gateway{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/paper/pamphlet/gateway{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"jx" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"jy" = (
-/obj/structure/table,
-/obj/item/trash/candle,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"jz" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/kitchen/fork,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"jA" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/plantgenes,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"jB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"jC" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"jD" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"jF" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/garage)
-"jG" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"jH" = (
-/obj/effect/spawner/structure/window,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"jI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"jJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"jK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"jL" = (
-/obj/vehicle/ridden/atv,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"jM" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical/old,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"jN" = (
-/obj/effect/spawner/lootdrop/snowdin/dungeonmisc,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"jO" = (
-/mob/living/simple_animal/hostile/netherworld/blankbody{
- desc = "It's Jacob Ullman, but their flesh has an ashy texture, and their face is featureless save an eerie smile.";
- name = "Jacob Ullman"
- },
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"jP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"jQ" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall,
-/area/awaymission/snowdin/post/custodials)
-"jR" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/custodials)
-"jS" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"jT" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post)
-"jU" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"jV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"jW" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post)
-"jX" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"jY" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "snowdin_gate"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/gateway)
-"jZ" = (
-/obj/effect/landmark/vr_spawn/snowdin,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"ka" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"kb" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/messhall)
-"kc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/messhall)
-"kd" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"ke" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"kf" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/hydro)
-"kg" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"kh" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"ki" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/garage)
-"kj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"kk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"kl" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"km" = (
-/obj/structure/sign/poster/contraband/tools{
- pixel_x = 32
- },
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/tank/internals/plasma,
-/obj/item/tank/internals/plasma,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"kn" = (
-/obj/structure/fence/corner{
- dir = 9
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"ko" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"kp" = (
-/obj/structure/fence{
- dir = 4
- },
-/obj/structure/sign/nanotrasen,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"kq" = (
-/obj/structure/fence/door/opened,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"kr" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"ks" = (
-/obj/structure/fence/door,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"kt" = (
-/obj/structure/fence/corner,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"ku" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/cave/mountain)
-"kv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/shower{
- pixel_y = 25
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/shower{
- pixel_y = 25
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/shower{
- pixel_y = 25
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"ky" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Showers"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kA" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kB" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kC" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"kD" = (
-/obj/structure/table,
-/obj/machinery/power/apc{
- dir = 1;
- name = "Custodials APC";
- pixel_x = 1;
- pixel_y = 25
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"kE" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"kF" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post)
-"kG" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"kH" = (
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/item/paper/crumpled/ruins/snowdin/shovel,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"kI" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"kJ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"kK" = (
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/post/mining_dock)
-"kL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"kM" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Mess Hall"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"kN" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"kO" = (
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"kP" = (
-/obj/item/trash/candy,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/messhall)
-"kQ" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"kR" = (
-/obj/machinery/hydroponics/constructable,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"kS" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"kT" = (
-/obj/item/stack/cable_coil/red{
- amount = 1
- },
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"kU" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"kV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"kW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"kX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"kY" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"kZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/garage)
-"la" = (
-/obj/structure/filingcabinet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"lb" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"lc" = (
-/obj/vehicle/ridden/atv,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"ld" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"le" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lg" = (
-/obj/machinery/light/small/broken{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lh" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"li" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/broken,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lk" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"ll" = (
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"lm" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/janitorialcart,
-/obj/item/mop,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"ln" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post)
-"lo" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"lp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/two,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"lq" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/three,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"lr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/four,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"ls" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/five,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"lt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/six,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"lu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/snowdin_station_sign/up/seven,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"lw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"lx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"ly" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Mess Hall"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"lz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"lA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"lB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"lC" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"lD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"lE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"lF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"lG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 2;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/hydro)
-"lH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"lI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"lJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"lK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/hydro)
-"lL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/hydro)
-"lM" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"lN" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"lO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"lP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"lQ" = (
-/obj/machinery/door/airlock{
- name = "Mechanic's Quarters"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"lR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"lS" = (
-/obj/structure/fence/corner{
- dir = 10
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"lT" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"lU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/shower{
- dir = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lV" = (
-/obj/machinery/shower{
- dir = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lW" = (
-/obj/machinery/shower{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lX" = (
-/obj/machinery/door/airlock{
- name = "Private Stall"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"lY" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/custodials)
-"lZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"ma" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"mb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"mc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- name = "Custodial Closet"
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"md" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post)
-"me" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mf" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/snowdin_station_sign,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mg" = (
-/obj/effect/turf_decal/snowdin_station_sign/two,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mh" = (
-/obj/effect/turf_decal/snowdin_station_sign/three,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mi" = (
-/obj/effect/turf_decal/snowdin_station_sign/four,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mj" = (
-/obj/effect/turf_decal/snowdin_station_sign/five,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mk" = (
-/obj/effect/turf_decal/snowdin_station_sign/six,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"ml" = (
-/obj/effect/turf_decal/snowdin_station_sign/seven,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mn" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"mo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"mp" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"mq" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"mr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"ms" = (
-/obj/machinery/hydroponics/constructable,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/hydro)
-"mt" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"mu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/hydro)
-"mv" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/hydro)
-"mw" = (
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"mx" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"my" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"mz" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"mB" = (
-/obj/item/storage/toolbox/electrical,
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"mC" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"mD" = (
-/obj/structure/toilet{
- dir = 1
- },
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/dorm)
-"mE" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"mF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"mG" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"mH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -26
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post)
-"mI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post)
-"mJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mL" = (
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mM" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"mO" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/messhall)
-"mP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/messhall)
-"mQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"mR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"mS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"mT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"mU" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/shoes/winterboots{
- pixel_x = 2;
- pixel_y = -2
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"mV" = (
-/obj/structure/table,
-/obj/item/key,
-/obj/item/key,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"mW" = (
-/obj/structure/table,
-/obj/machinery/light/small,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"mX" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/garage)
-"mY" = (
-/obj/machinery/button/door/indestructible{
- id = "snowdingarage1";
- name = "garage door toggle";
- pixel_x = -24;
- pixel_y = -7
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"mZ" = (
-/obj/structure/flora/grass/both,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"na" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/custodials)
-"nb" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"nc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/light/broken,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post)
-"nd" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post)
-"ne" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"nf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"ng" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"nh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"ni" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"nj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"nk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"nl" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall,
-/area/awaymission/snowdin/post/engineering)
-"nm" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"nn" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"no" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"np" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"nq" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/engineering)
-"nr" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Engineering APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"ns" = (
-/obj/machinery/computer/monitor,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"nt" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/engineering)
-"nu" = (
-/obj/machinery/vending/hydronutrients,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"nv" = (
-/obj/machinery/vending/hydroseeds,
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"nw" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/obj/item/watertank,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"nx" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"ny" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"nz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/hydro)
-"nA" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"nB" = (
-/obj/machinery/door/poddoor/shutters{
- id = "snowdingarage1";
- name = "garage door"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"nC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"nD" = (
-/obj/structure/closet/jcloset,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/custodials)
-"nE" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/secpost)
-"nF" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/secpost)
-"nG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access = null;
- req_access_txt = "1"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"nH" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
-"nI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/shard,
-/obj/item/stack/cable_coil/red{
- amount = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"nJ" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"nK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"nL" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"nM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"nN" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/engineering)
-"nO" = (
-/obj/machinery/power/smes/engineering,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"nP" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"nQ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"nR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"nS" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"nT" = (
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"nU" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 10
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"nV" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/hydro)
-"nW" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/hydro)
-"nX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/public/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"nY" = (
-/obj/effect/spawner/structure/window,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/hydro)
-"nZ" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/post/garage)
-"oa" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"ob" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/secpost)
-"oc" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/secpost)
-"od" = (
-/obj/item/gun/ballistic/rifle/boltaction,
-/obj/item/ammo_box/a762,
-/obj/item/ammo_box/a762,
-/obj/structure/closet/secure_closet{
- icon_state = "sec";
- locked = 1;
- name = "security officer's locker";
- req_access_txt = "201"
- },
-/obj/item/restraints/handcuffs,
-/obj/item/assembly/flash,
-/obj/item/storage/box/rubbershot,
-/obj/structure/fireaxecabinet{
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
-"oe" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Security Outpost APC";
- pixel_x = 1;
- pixel_y = 25
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"of" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"og" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oh" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
-"oi" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"ok" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/door/airlock/public/glass,
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"ol" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"om" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"on" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"oo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4;
- pixel_x = 5;
- pixel_y = 5;
- piping_layer = 3
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"op" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4;
- pixel_x = 5;
- pixel_y = 5;
- piping_layer = 3
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"oq" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/table,
-/obj/item/stack/sheet/glass/fifty{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/stack/sheet/metal/fifty{
- pixel_x = -1;
- pixel_y = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"or" = (
-/obj/structure/table,
-/obj/item/cultivator,
-/obj/item/cultivator{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"ot" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"ou" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"ov" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Hydroponics APC";
- pixel_x = 26
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"ow" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/cavern2)
-"ox" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/cavern2)
-"oy" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oz" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oA" = (
-/obj/machinery/door/window/brigdoor/westleft,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/machinery/holopad,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
-"oF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oG" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"oH" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
-"oI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"oJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"oK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"oL" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"oM" = (
-/obj/machinery/power/smes/engineering,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"oN" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"oO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"oP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"oQ" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/structure/sign/warning/enginesafety{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"oR" = (
-/obj/structure/table,
-/obj/item/hatchet{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/hatchet,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"oS" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/item/shovel/spade,
-/obj/item/wrench,
-/obj/item/reagent_containers/glass/bucket,
-/obj/item/wirecutters,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"oT" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"oU" = (
-/obj/machinery/chem_master/condimaster,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"oV" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/hydro)
-"oW" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/engineering)
-"oX" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/engineering)
-"oY" = (
-/obj/structure/flora/rock/pile/icy,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"oZ" = (
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"pa" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/cavern2)
-"pb" = (
-/obj/structure/table/wood,
-/obj/item/flashlight/lamp{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/item/paper_bin,
-/obj/item/pen,
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/cavern2)
-"pc" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/cavern2)
-"pd" = (
-/obj/structure/bed,
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/cavern2)
-"pe" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/cavern2)
-"pf" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/cavern2)
-"pg" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/cavern2)
-"ph" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"pi" = (
-/obj/structure/bed,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"pj" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/sign/poster/official/do_not_question{
- pixel_y = -32
- },
-/obj/item/wirecutters,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"pk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/screwdriver,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"pl" = (
-/obj/machinery/light,
-/obj/item/crowbar,
-/obj/structure/noticeboard{
- dir = 1;
- pixel_y = -32
- },
-/obj/item/paper/fluff/awaymissions/snowdin/secnotice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
-"pm" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"pn" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
-"po" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"pp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post)
-"pq" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"pr" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/holopad,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"ps" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"pt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"pu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"pv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/engineering)
-"pw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"px" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"py" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high/plus,
-/obj/item/storage/toolbox/electrical{
- pixel_x = 4;
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"pz" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/rack,
-/obj/machinery/atmospherics/pipe/simple/supply/visible,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"pA" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/cave/cavern)
-"pB" = (
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/cavern2)
-"pC" = (
-/obj/item/chair,
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/cavern2)
-"pD" = (
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/cavern2)
-"pE" = (
-/turf/closed/wall/mineral/cult,
-/area/awaymission/snowdin/post/cavern2)
-"pF" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/cavern2)
-"pG" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"pH" = (
-/turf/closed/wall/r_wall,
-/area/awaymission/snowdin/post/secpost)
-"pI" = (
-/turf/closed/wall/r_wall/rust,
-/area/awaymission/snowdin/post/secpost)
-"pJ" = (
-/obj/machinery/door/airlock/vault{
- name = "Armory";
- req_access_txt = "3"
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/secpost)
-"pK" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"pL" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/secpost)
-"pM" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/item/paper/fluff/awaymissions/snowdin/profile/engi1,
-/obj/item/paper/fluff/awaymissions/snowdin/profile/hydro1,
-/obj/item/paper/fluff/awaymissions/snowdin/profile/overseer,
-/obj/item/paper/fluff/awaymissions/snowdin/profile/research1,
-/obj/item/paper/fluff/awaymissions/snowdin/profile/research2,
-/obj/item/paper/fluff/awaymissions/snowdin/profile/research3,
-/obj/item/paper/fluff/awaymissions/snowdin/profile/sec1,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
-"pN" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"pO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"pP" = (
-/obj/machinery/light,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"pQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"pR" = (
-/obj/structure/closet/emcloset,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post)
-"pS" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"pT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"pU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/obj/machinery/holopad,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"pV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"pW" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"pX" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 1
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/engineering)
-"pY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/engineering)
-"pZ" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"qa" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qb" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qc" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qd" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/item/clothing/head/welding,
-/obj/item/weldingtool/largetank,
-/obj/effect/turf_decal/bot,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 8
- },
-/turf/closed/wall,
-/area/awaymission/snowdin/post/engineering)
-"qf" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"qg" = (
-/obj/structure/flora/rock/pile/icy,
-/turf/open/floor/engine/cult{
- initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120";
- temperature = 120
- },
-/area/awaymission/snowdin/cave/cavern)
-"qh" = (
-/obj/structure/fence,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"qi" = (
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"qk" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/cavern2)
-"ql" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/cavern2)
-"qm" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/cavern2)
-"qn" = (
-/obj/structure/guncase/shotgun,
-/obj/item/gun/ballistic/shotgun/automatic,
-/obj/item/gun/ballistic/shotgun/automatic,
-/obj/item/gun/ballistic/shotgun/automatic,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/secpost)
-"qo" = (
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/secpost)
-"qp" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/secpost)
-"qq" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/obj/structure/grille,
-/obj/structure/barricade/wooden/crude/snow,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/secpost)
-"qr" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/barricade/wooden/crude,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"qs" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/barricade/wooden/crude,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"qt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 6;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"qu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qv" = (
-/obj/machinery/atmospherics/components/binary/volume_pump{
- name = "Air Mix To Turbine Mix"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/visible{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qx" = (
-/obj/machinery/atmospherics/components/trinary/mixer/airmix/flipped{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qy" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qz" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qA" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible{
- dir = 10
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/engineering)
-"qB" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qC" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"qD" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"qE" = (
-/obj/structure/sign/nanotrasen{
- pixel_x = 32
- },
-/obj/machinery/light/small/broken{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/post/cavern2)
-"qF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/cavern2)
-"qG" = (
-/obj/machinery/door/airlock{
- name = "Private Quarters"
- },
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/cavern2)
-"qH" = (
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/cavern2)
-"qI" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/cavern2)
-"qJ" = (
-/obj/structure/rack,
-/obj/item/storage/box/rubbershot,
-/obj/machinery/light/small,
-/obj/item/storage/box/rubbershot{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/secpost)
-"qK" = (
-/obj/structure/rack,
-/obj/item/storage/box/lethalshot,
-/obj/item/storage/box/lethalshot{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/secpost)
-"qL" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post)
-"qM" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"qN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"qO" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"qP" = (
-/obj/machinery/power/smes/engineering,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"qQ" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"qR" = (
-/obj/machinery/computer/turbine_computer{
- dir = 1;
- id = "snowdin_turbine"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qS" = (
-/obj/machinery/button/door/indestructible{
- id = "snowdinturbineoutlet";
- name = "Turbine Outlet Release";
- pixel_y = -32
- },
-/obj/machinery/button/door/indestructible{
- id = "snowdinturbinegas";
- name = "Turbine Gas Release";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/engineering)
-"qT" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qU" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 6
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "snowdin_turbine_exterior";
- idInterior = "snowdin_turbine_interior";
- idSelf = "snowdin_turbine_access";
- name = "Turbine Access Console";
- pixel_x = -8;
- pixel_y = -26;
- req_access_txt = "32"
- },
-/obj/machinery/button/ignition/indestructible{
- id = "snowdin_turbine_ignitor";
- pixel_x = 6;
- pixel_y = -24
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qV" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qW" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qX" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/frame/computer{
- dir = 1;
- name = "Toxins Supply Control"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/engineering)
-"qY" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"qZ" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"ra" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/frame/computer{
- dir = 1;
- name = "Oxygen Supply Control"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"rb" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/frame/computer{
- dir = 1;
- name = "Nitrogen Supply Control"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/engineering)
-"rc" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/structure/fans/tiny,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"rd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 1;
- piping_layer = 3
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"re" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"rf" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern2)
-"rg" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/cavern2)
-"rh" = (
-/obj/structure/window,
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/cavern2)
-"ri" = (
-/obj/structure/window,
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/awaymission/snowdin/post/cavern2)
-"rj" = (
-/obj/structure/statue/snow/snowman{
- anchored = 1
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"rk" = (
-/obj/structure/rack,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"rl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"rm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"rn" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/shoes/winterboots{
- pixel_x = 2;
- pixel_y = -2
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"ro" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/engineering)
-"rp" = (
-/turf/closed/wall/r_wall,
-/area/awaymission/snowdin/post/engineering)
-"rq" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/door/airlock/glass{
- autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- id_tag = "snowdin_turbine_exterior";
- name = "Turbine Exterior Airlock";
- req_access_txt = "32"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/engine,
-/area/awaymission/snowdin/post/engineering)
-"rr" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/closed/wall/r_wall,
-/area/awaymission/snowdin/post/engineering)
-"rs" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"ru" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/visible,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/engineering)
-"rv" = (
-/mob/living/simple_animal/hostile/skeleton/plasmaminer/jackhammer,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"rw" = (
-/obj/structure/fence,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"rx" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"ry" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/cavern2)
-"rz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"rA" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"rB" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern2)
-"rC" = (
-/obj/structure/sign/warning/nosmoking{
- pixel_y = 32
- },
-/obj/machinery/light/broken{
- dir = 1
- },
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/cavern2)
-"rD" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"rE" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"rF" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"rG" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/obj/structure/grille,
-/obj/structure/barricade/wooden/crude/snow,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"rH" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/structure/barricade/wooden/crude/snow,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post)
-"rI" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{
- dir = 1;
- piping_layer = 3;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/effect/light_emitter{
- name = "cave light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/engineering)
-"rJ" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "snowdin_turbine_interior";
- idSelf = "snowdin_turbine_access";
- layer = 3.1;
- name = "Turbine airlock control";
- pixel_x = 8;
- pixel_y = -24
- },
-/turf/open/floor/engine,
-/area/awaymission/snowdin/post/engineering)
-"rK" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine,
-/area/awaymission/snowdin/post/engineering)
-"rL" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/components/binary/volume_pump{
- name = "Mix To Turbine"
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "snowdin_turbine_exterior";
- idSelf = "snowdin_turbine_access";
- name = "Turbine airlock control";
- pixel_x = -8;
- pixel_y = 24
- },
-/obj/structure/sign/warning/fire{
- pixel_y = -32
- },
-/turf/open/floor/engine,
-/area/awaymission/snowdin/post/engineering)
-"rM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon{
- dir = 1;
- name = "toxin out"
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/engineering)
-"rN" = (
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/engineering)
-"rO" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon{
- dir = 1;
- name = "oxygen out"
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/engineering)
-"rQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon{
- dir = 1;
- name = "nitrogen out"
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/engineering)
-"rS" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"rT" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"rU" = (
-/obj/structure/fence,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"rV" = (
-/obj/structure/lattice/catwalk,
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"rW" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/plasma/reinforced/unanchored,
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"rX" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"rY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern2)
-"rZ" = (
-/mob/living/simple_animal/hostile/netherworld/migo,
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/cavern2)
-"sa" = (
-/obj/machinery/holopad,
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/cavern2)
-"sb" = (
-/obj/structure/spawner/nether{
- max_mobs = 4;
- name = "weak netherworld link"
- },
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/cavern2)
-"sc" = (
-/obj/item/stack/sheet/mineral/plasma{
- amount = 10
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"sd" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Main Outpost APC";
- pixel_x = 26
- },
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"se" = (
-/obj/structure/flora/tree/dead,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"sf" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"sg" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/locked,
-/obj/machinery/door/airlock/glass{
- autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- id_tag = "snowdin_turbine_interior";
- name = "Turbine Interior Airlock";
- req_access_txt = "32"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/engine,
-/area/awaymission/snowdin/post/engineering)
-"si" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/engineering)
-"sl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"sm" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/fence/door{
- dir = 4
- },
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"sn" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/plasma/reinforced/spawner/east,
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"so" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/plasma/reinforced/spawner/west,
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"sp" = (
-/obj/structure/fence/door{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"sq" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/sign/nanotrasen{
- pixel_x = 32
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/post/cavern2)
-"sr" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"ss" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/cavern2)
-"st" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern2)
-"su" = (
-/obj/machinery/door/airlock/maintenance{
- name = "SMES Storage";
- req_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"sv" = (
-/obj/machinery/computer/monitor{
- dir = 8
- },
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"sw" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 9
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sx" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sy" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 5
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sz" = (
-/obj/machinery/door/poddoor{
- id = "snowdinturbinegas";
- name = "Turbine Gas Release"
- },
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/post/engineering)
-"sA" = (
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/post/engineering)
-"sB" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/igniter{
- id = "snowdin_turbine_ignitor"
- },
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/post/engineering)
-"sC" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{
- dir = 1;
- id = "snowdin_incin_in"
- },
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/post/engineering)
-"sD" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"sE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"sF" = (
-/obj/structure/fence,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"sG" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/plasma/reinforced/spawner/north,
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"sH" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sI" = (
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sJ" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/stripes/white/line,
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sK" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/stripes/white/line,
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sL" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sM" = (
-/obj/machinery/power/compressor{
- comp_id = "snowdin_turbine";
- dir = 1;
- luminosity = 2
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/post/engineering)
-"sN" = (
-/obj/structure/fence/corner{
- dir = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"sO" = (
-/obj/structure/fence{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"sP" = (
-/obj/structure/fence/corner,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"sQ" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Misc Storage";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"sR" = (
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern2)
-"sS" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/stripes/white/line{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sU" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/stripes/white/line{
- dir = 8
- },
-/obj/machinery/computer{
- desc = "A console meant for calling and sending a transit ferry. It seems iced-over and non-functional.";
- dir = 4;
- icon_screen = null;
- name = "Shuttle Transist Console"
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"sV" = (
-/obj/structure/statue/snow/snowman{
- anchored = 1
- },
-/obj/item/clothing/head/bowler{
- pixel_y = 13
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"sW" = (
-/obj/machinery/power/turbine{
- dir = 2;
- luminosity = 2
- },
-/obj/structure/cable,
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/post/engineering)
-"sX" = (
-/obj/structure/flora/rock/icy,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"sY" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"sZ" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"ta" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"tb" = (
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern2)
-"tc" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern2)
-"td" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/stripes/white/line{
- dir = 4
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"te" = (
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"tf" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/stripes/white/line{
- dir = 8
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 4
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"tg" = (
-/obj/machinery/door/poddoor{
- id = "snowdinturbineoutlet";
- name = "Turbine Outlet"
- },
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/post/engineering)
-"th" = (
-/obj/structure/rack,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern2)
-"ti" = (
-/obj/machinery/shower{
- dir = 1
- },
-/obj/structure/curtain,
-/obj/structure/window{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern2)
-"tj" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern2)
-"tk" = (
-/obj/structure/toilet{
- dir = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern2)
-"tl" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/stripes/white/line{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"tm" = (
-/mob/living/simple_animal/hostile/asteroid/basilisk,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"tn" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 10
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"to" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 6
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"tp" = (
-/turf/closed/wall/mineral/snow,
-/area/awaymission/snowdin/cave/cavern)
-"tq" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/outside)
-"tr" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/mob/living/simple_animal/hostile/bear/snow,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"ts" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/snowdin/dungeonheavy,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"tt" = (
-/mob/living/simple_animal/hostile/skeleton/templar,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"tu" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"tv" = (
-/obj/structure/barricade/wooden/crude/snow,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"tw" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/snowdin/dungeonmid,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"tx" = (
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/cave)
-"ty" = (
-/mob/living/simple_animal/hostile/netherworld/blankbody{
- desc = "It's Caleb Reed, but their flesh has an ashy texture, and their face is featureless save an eerie smile.";
- name = "Caleb Reed"
- },
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/cave)
-"tz" = (
-/mob/living/simple_animal/hostile/skeleton/ice,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"tA" = (
-/obj/structure/flora/bush,
-/obj/structure/flora/bush,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"tB" = (
-/obj/structure/flora/grass/both,
-/obj/structure/flora/grass/both,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"tC" = (
-/obj/structure/flora/grass/both,
-/obj/structure/flora/tree/pine,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"tD" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"tE" = (
-/turf/closed/indestructible/rock/snow,
-/area/awaymission/snowdin/cave)
-"tF" = (
-/turf/closed/mineral/snowmountain,
-/area/awaymission/snowdin/outside)
-"tG" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/mineral/snowmountain,
-/area/awaymission/snowdin/cave)
-"tH" = (
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"tI" = (
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"tJ" = (
-/obj/effect/decal/remains/human,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"tK" = (
-/obj/effect/mob_spawn/human/clown/corpse,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"tL" = (
-/mob/living/simple_animal/hostile/poison/giant_spider/nurse/ice,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"tN" = (
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/outside)
-"tO" = (
-/obj/effect/spawner/lootdrop/snowdin/dungeonmid,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"tP" = (
-/obj/structure/barricade/wooden/snowed,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"tQ" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"tR" = (
-/obj/structure/barricade/wooden/snowed,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"tS" = (
-/obj/effect/light_emitter{
- name = "cave light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/cave)
-"tT" = (
-/obj/structure/fence{
- pixel_x = 16
- },
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/outside)
-"tU" = (
-/obj/structure/fence{
- pixel_x = -16
- },
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/outside)
-"tV" = (
-/mob/living/simple_animal/hostile/poison/giant_spider/ice,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"tW" = (
-/obj/structure/fence{
- pixel_x = 16
- },
-/turf/open/floor/plating/ice,
-/area/awaymission/snowdin/outside)
-"tX" = (
-/obj/structure/fence{
- pixel_x = -16
- },
-/turf/open/floor/plating/ice,
-/area/awaymission/snowdin/outside)
-"tY" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/cavern1)
-"tZ" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/cavern1)
-"ua" = (
-/turf/open/floor/plating/ice,
-/area/awaymission/snowdin/outside)
-"ub" = (
-/obj/structure/bed,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/cavern1)
-"uc" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/cavern1)
-"ud" = (
-/mob/living/simple_animal/hostile/bear/snow,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"ue" = (
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/cavern1)
-"uf" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/closet,
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/cavern1)
-"ug" = (
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uh" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"ui" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Main Outpost APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uj" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uk" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/awaymission/snowdin/post/cavern1)
-"ul" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"um" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"un" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"up" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uq" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/outside)
-"ur" = (
-/obj/machinery/door/airlock{
- name = "Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/cavern1)
-"us" = (
-/obj/machinery/door/airlock/maintenance{
- name = "SMES Storage";
- req_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"ut" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uu" = (
-/obj/machinery/power/terminal,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uv" = (
-/obj/structure/fence{
- pixel_x = 16
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"uw" = (
-/mob/living/simple_animal/hostile/poison/giant_spider/hunter/ice,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"ux" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/cavern1)
-"uy" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"uA" = (
-/obj/machinery/computer/monitor{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uB" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uC" = (
-/obj/structure/fence{
- pixel_x = -16
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"uD" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Misc Storage";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uE" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/cavern1)
-"uF" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/cavern1)
-"uG" = (
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"uH" = (
-/obj/structure/table,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/storage/firstaid/brute,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"uI" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/cavern1)
-"uJ" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uK" = (
-/mob/living/simple_animal/hostile/skeleton/plasmaminer,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"uL" = (
-/obj/structure/table,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"uM" = (
-/obj/structure/table,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/cavern1)
-"uN" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"uO" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uP" = (
-/obj/structure/spider/stickyweb,
-/mob/living/simple_animal/hostile/poison/giant_spider/hunter/ice,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"uQ" = (
-/obj/structure/spider/stickyweb,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"uR" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/post/cavern1)
-"uS" = (
-/mob/living/simple_animal/hostile/skeleton/plasmaminer,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/cavern1)
-"uT" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"uU" = (
-/obj/item/chair,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"uV" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"uW" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"uX" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"uY" = (
-/obj/structure/barricade/wooden/snowed,
-/obj/structure/spider/stickyweb,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"uZ" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/structure/fans/tiny,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"va" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vb" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vc" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/cavern1)
-"vd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"ve" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light/broken,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"vf" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"vg" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Observation Deck"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"vh" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/cavern1)
-"vi" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/cavern1)
-"vj" = (
-/obj/structure/table,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"vk" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vl" = (
-/obj/effect/mob_spawn/human/corpse/assistant,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"vm" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vn" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/cavern1)
-"vp" = (
-/obj/machinery/door/airlock{
- name = "Bathroom"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern1)
-"vq" = (
-/obj/machinery/light/broken{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vr" = (
-/obj/structure/filingcabinet/chestdrawer,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"vs" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vu" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"vv" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern1)
-"vw" = (
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern1)
-"vx" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"vy" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vz" = (
-/obj/machinery/light/small/broken{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/post/cavern1)
-"vA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/cavern1)
-"vB" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/cavern1)
-"vC" = (
-/obj/structure/rack,
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/cavern1)
-"vD" = (
-/obj/machinery/shower{
- dir = 1
- },
-/obj/structure/curtain,
-/obj/structure/window{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern1)
-"vE" = (
-/obj/structure/toilet{
- dir = 1
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/awaymission/snowdin/post/cavern1)
-"vF" = (
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave/mountain)
-"vG" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{
- dir = 1;
- id = "snowdin_incin_in"
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/post/cavern1)
-"vH" = (
-/obj/structure/flora/tree/pine,
-/obj/structure/flora/grass/both,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"vI" = (
-/mob/living/simple_animal/hostile/asteroid/basilisk,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave/mountain)
-"vJ" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"vK" = (
-/obj/effect/decal/cleanable/blood/old,
-/mob/living/simple_animal/hostile/bear/snow,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"vL" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/snowdin/post/broken_shuttle)
-"vM" = (
-/obj/effect/spawner/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/broken_shuttle)
-"vN" = (
-/obj/effect/spawner/structure/window/shuttle,
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/broken_shuttle)
-"vO" = (
-/obj/structure/fluff/fokoff_sign,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"vP" = (
-/obj/structure/bed,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"vQ" = (
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"vR" = (
-/obj/structure/sign/nanotrasen,
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/snowdin/post/broken_shuttle)
-"vS" = (
-/obj/structure/chair,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/snowdin/post/broken_shuttle)
-"vT" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/snowdin/post/broken_shuttle)
-"vU" = (
-/obj/item/chair,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/snowdin/post/broken_shuttle)
-"vV" = (
-/obj/structure/barricade/wooden/snowed,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"vW" = (
-/mob/living/simple_animal/hostile/skeleton/ice,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"vX" = (
-/obj/machinery/door/airlock/shuttle,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/snowdin/post/broken_shuttle)
-"vY" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/snowdin/post/broken_shuttle)
-"vZ" = (
-/obj/structure/flora/grass/both,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"wa" = (
-/obj/structure/flora/bush,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"wb" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/snowdin/post/broken_shuttle)
-"wc" = (
-/obj/machinery/computer{
- name = "Shuttle Transist Console";
- desc = "A console meant for calling and sending a transit ferry. It seems iced-over and non-functional.";
- dir = 1;
- icon_screen = null
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/snowdin/post/broken_shuttle)
-"wd" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/snowdin/post/broken_shuttle)
-"we" = (
-/mob/living/simple_animal/hostile/skeleton/ice{
- name = "Captain Bones"
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wf" = (
-/obj/structure/bed,
-/mob/living/simple_animal/hostile/skeleton/ice{
- name = "Privateer Jones"
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wg" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wh" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 10
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wi" = (
-/obj/effect/turf_decal/weather/snow/corner,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wj" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wk" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"wl" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wm" = (
-/obj/machinery/porta_turret/centcom_shuttle/weak{
- desc = "A turret built with substandard parts and run down further with age.";
- icon_state = "syndie_off";
- dir = 9;
- faction = list("pirate")
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"wn" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wo" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 6
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wp" = (
-/obj/structure/flora/tree/pine/xmas/presents,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"wq" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wr" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"ws" = (
-/obj/structure/closet/crate/wooden,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/cave)
-"wt" = (
-/obj/structure/table/wood,
-/obj/effect/spawner/lootdrop/snowdin/dungeonmisc,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wu" = (
-/obj/structure/table/wood,
-/obj/item/trash/candy,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wv" = (
-/obj/item/trash/can,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"ww" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wx" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/decal/remains/human,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"wy" = (
-/obj/structure/bonfire/prelit{
- burn_icon = "bonfire_warm"
- },
-/obj/effect/light_emitter{
- light_color = "#FAA019";
- light_power = 1;
- light_range = 4;
- name = "fire light"
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wz" = (
-/obj/structure/closet/crate/wooden,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wA" = (
-/obj/structure/table/wood,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"wB" = (
-/obj/item/key,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"wC" = (
-/obj/vehicle/ridden/atv{
- icon_state = "atv";
- dir = 4
- },
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"wD" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/mining_dock)
-"wE" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/mining_dock)
-"wF" = (
-/obj/effect/decal/remains/human,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"wG" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wH" = (
-/obj/structure/sign/warning/electricshock{
- pixel_y = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wI" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wJ" = (
-/obj/machinery/computer/monitor,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wK" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wL" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wN" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Main Outpost APC";
- pixel_x = 26
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wO" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wP" = (
-/turf/closed/wall/mineral/cult,
-/area/awaymission/snowdin/post/mining_dock)
-"wQ" = (
-/turf/closed/indestructible/rock/snow/ice,
-/area/awaymission/snowdin/cave/mountain)
-"wR" = (
-/obj/machinery/door/airlock/maintenance{
- name = "SMES Storage";
- req_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"wS" = (
-/turf/closed/indestructible/rock/snow/ice,
-/area/awaymission/snowdin/cave)
-"wT" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"wU" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/sign/warning/docking{
- pixel_y = 32
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"wV" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"wW" = (
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/mining_dock)
-"wX" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"wY" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/mining_dock)
-"wZ" = (
-/obj/structure/sign/warning/docking{
- pixel_y = 32
- },
-/obj/machinery/light/broken{
- dir = 1
- },
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/mining_dock)
-"xa" = (
-/obj/effect/turf_decal/stripes/white/line,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xb" = (
-/obj/effect/turf_decal/stripes/white/line,
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xc" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xd" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xe" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"xf" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"xg" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xh" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/mining_dock)
-"xi" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/mining_dock)
-"xj" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/spawner/nether{
- max_mobs = 4;
- name = "weak netherworld link"
- },
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/mining_dock)
-"xk" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xl" = (
-/turf/open/floor/plasteel/elevatorshaft{
- initial_gas_mix = "o2=22;n2=82;TEMP=180"
- },
-/area/awaymission/snowdin/cave)
-"xp" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xq" = (
-/obj/machinery/light/broken{
- dir = 8
- },
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"xr" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"xs" = (
-/obj/item/gun/energy/e_gun{
- dead_cell = 1
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"xt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/mob_spawn/human/corpse/nanotrasensoldier{
- brute_damage = 145;
- mob_name = "James Reed";
- name = "James Reed";
- oxy_damage = 55
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xu" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/engine/cult,
-/area/awaymission/snowdin/post/mining_dock)
-"xx" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xy" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"xz" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille/broken,
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"xA" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/mob/living/simple_animal/hostile/netherworld/migo,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xC" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 4
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xD" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 8
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xE" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 6
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xF" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xG" = (
-/obj/machinery/holopad,
-/obj/item/disk/holodisk/snowdin/overrun,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xH" = (
-/obj/machinery/door/airlock/vault{
- name = "Relic Storage";
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xI" = (
-/obj/item/shard,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xJ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"xK" = (
-/obj/docking_port/stationary{
- area_type = /area/awaymission/snowdin/cave;
- dir = 4;
- dwidth = 3;
- height = 6;
- id = "snowdin_excavation_top";
- name = "snowdin excavation top";
- roundstart_template = /datum/map_template/shuttle/snowdin/excavation;
- width = 6
- },
-/turf/open/floor/plasteel/elevatorshaft{
- initial_gas_mix = "o2=22;n2=82;TEMP=180"
- },
-/area/awaymission/snowdin/cave)
-"xL" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xM" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xN" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"xP" = (
-/obj/docking_port/stationary{
- area_type = /area/awaymission/snowdin/post/mining_dock;
- dir = 4;
- dwidth = 3;
- height = 6;
- id = "snowdin_excavation_down";
- name = "snowdin excavation down";
- width = 6
- },
-/turf/open/floor/plasteel/elevatorshaft,
-/area/awaymission/snowdin/post/mining_dock)
-"xQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_dock)
-"xR" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/cave)
-"xS" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 3
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"xT" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xU" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"xV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3
- },
-/turf/closed/mineral/snowmountain/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"xW" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/mining_dock)
-"xX" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"xY" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"xZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"ya" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"yb" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"yc" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 6
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"yd" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"ye" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"yf" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/cave)
-"yg" = (
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/cave)
-"yi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/fence,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"yj" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/closet/crate,
-/obj/item/relic,
-/obj/item/relic,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"yk" = (
-/obj/structure/closet/crate,
-/obj/item/relic,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"yl" = (
-/obj/structure/sign/warning/nosmoking{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"ym" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/computer/shuttle/snowdin/mining{
- dir = 8;
- name = "Excavation Elevator Console";
- possible_destinations = "snowdin_excavation_top;snowdin_excavation_down";
- shuttleId = "snowdin_excavation"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"yn" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 8
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"yo" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"yp" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"yq" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"yr" = (
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/obj/machinery/computer/shuttle/snowdin/mining{
- dir = 8;
- name = "Excavation Elevator Console";
- possible_destinations = "snowdin_excavation_top;snowdin_excavation_down";
- shuttleId = "snowdin_excavation"
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"ys" = (
-/obj/machinery/atmospherics/pipe/manifold4w/orange/visible,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"yt" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/cave)
-"yu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- name = "toxin out";
- dir = 8;
- id_tag = "snowdin_toxins_mine_1";
- frequency = 1442
- },
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/cave)
-"yv" = (
-/turf/closed/wall/mineral/snow,
-/area/awaymission/snowdin/outside)
-"yw" = (
-/obj/structure/closet/crate,
-/obj/item/relic,
-/obj/item/relic,
-/obj/item/relic,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"yx" = (
-/obj/structure/closet/crate,
-/obj/item/relic,
-/obj/item/relic,
-/obj/item/relic,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"yy" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"yz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"yA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"yB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"yC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_dock)
-"yD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_dock)
-"yE" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"yF" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"yG" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/stripes/white/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"yH" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"yI" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"yJ" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"yK" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"yL" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"yM" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"yN" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"yO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/fence/door{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"yP" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"yQ" = (
-/obj/structure/sign/warning/docking{
- pixel_y = -32
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"yR" = (
-/obj/machinery/light/broken,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"yS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"yT" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"yU" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/weather/snow/corner,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/outside)
-"yV" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/post/minipost)
-"yW" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/minipost)
-"yX" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/minipost)
-"yY" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/minipost)
-"yZ" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall,
-/area/awaymission/snowdin/post/minipost)
-"za" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 4;
- frequency = 1442;
- id_tag = "snowdin_toxins_mine_1";
- name = "toxin out"
- },
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/cave)
-"zc" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 8
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"zd" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"ze" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"zf" = (
-/obj/structure/rack,
-/obj/item/pickaxe/drill,
-/obj/item/pickaxe/drill{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"zg" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"zh" = (
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"zi" = (
-/obj/structure/barricade/sandbags,
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"zj" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/structure/fence/corner{
- dir = 9
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"zk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/fence/corner,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"zl" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/window/plasma/reinforced/spawner/north,
-/obj/structure/window/plasma/reinforced/unanchored,
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"zm" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"zn" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"zo" = (
-/obj/machinery/door/poddoor/shutters{
- id = "snowdingarage2";
- name = "garage door"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"zp" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"zq" = (
-/obj/vehicle/ridden/atv{
- icon_state = "atv";
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"zr" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 10
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"zs" = (
-/obj/effect/turf_decal/weather/snow/corner,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"zt" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/mineral/wood,
-/area/awaymission/snowdin/igloo)
-"zu" = (
-/turf/closed/wall/mineral/wood,
-/area/awaymission/snowdin/igloo)
-"zv" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/emcloset,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"zw" = (
-/obj/structure/rack,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"zx" = (
-/obj/machinery/light/small,
-/obj/machinery/button/door/indestructible{
- id = "snowdingarage2";
- name = "garage door toggle";
- pixel_x = -7;
- pixel_y = -24
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"zy" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"zz" = (
-/obj/structure/rack,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"zA" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 8
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"zB" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"zC" = (
-/obj/structure/rack,
-/obj/item/grown/log/tree,
-/obj/item/grown/log/tree{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/grown/log/tree{
- pixel_x = -2;
- pixel_y = 3
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"zD" = (
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"zE" = (
-/obj/structure/rack,
-/obj/item/stack/sheet/mineral/wood{
- amount = 15
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"zF" = (
-/mob/living/simple_animal/hostile/skeleton/eskimo,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"zG" = (
-/obj/machinery/space_heater,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"zH" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4;
- piping_layer = 3
- },
-/obj/machinery/space_heater,
-/obj/structure/sign/warning/xeno_mining{
- pixel_x = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"zI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4;
- piping_layer = 3
- },
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/mining_dock)
-"zJ" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/post/mining_dock)
-"zK" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"zL" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Garage"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"zM" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"zN" = (
-/obj/structure/rack,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"zO" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 6
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"zP" = (
-/obj/structure/table/wood,
-/obj/effect/spawner/lootdrop/snowdin/dungeonmisc,
-/obj/effect/spawner/lootdrop/snowdin/dungeonmisc,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"zQ" = (
-/obj/item/hatchet{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"zR" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"zS" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/structure/fans/tiny,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"zT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/fence/corner{
- dir = 6
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"zU" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"zV" = (
-/obj/structure/filingcabinet,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"zW" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"zX" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"zY" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/ore_box,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"zZ" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall/mineral/snow,
-/area/awaymission/snowdin/igloo)
-"Aa" = (
-/turf/closed/wall/mineral/snow,
-/area/awaymission/snowdin/igloo)
-"Ab" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 8
- },
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 4
- },
-/mob/living/simple_animal/hostile/skeleton/eskimo,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"Ac" = (
-/obj/structure/table/wood,
-/obj/item/hatchet{
- pixel_x = 4;
- pixel_y = 4
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"Ad" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/structure/fence/corner{
- dir = 10
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Ae" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Af" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/sign/nanotrasen{
- pixel_y = 32
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Ag" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Ah" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/obj/structure/grille,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"Ai" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/minipost)
-"Aj" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"Ak" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"Al" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/cave)
-"Am" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"An" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 9
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"Ao" = (
-/obj/structure/mineral_door/wood,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"Ap" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/fence,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Aq" = (
-/mob/living/simple_animal/hostile/skeleton/plasmaminer,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Ar" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/structure/fence/corner{
- dir = 10
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"As" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/fence/door,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"At" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Au" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/obj/structure/flora/grass/both,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Av" = (
-/obj/machinery/door/airlock/external/glass,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"Aw" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/minipost)
-"Ax" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"Ay" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"Az" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"AA" = (
-/mob/living/simple_animal/hostile/skeleton/eskimo,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"AB" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"AC" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"AE" = (
-/obj/item/pen,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/minipost)
-"AF" = (
-/obj/structure/table,
-/obj/item/flashlight/lamp,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"AG" = (
-/mob/living/simple_animal/hostile/bear/snow,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/minipost)
-"AH" = (
-/obj/structure/bed,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/minipost)
-"AI" = (
-/obj/structure/bonfire/prelit{
- burn_icon = "bonfire_warm"
- },
-/obj/effect/light_emitter{
- light_color = "#FAA019";
- light_power = 1;
- light_range = 4;
- name = "fire light"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"AJ" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"AK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/fence/door,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"AL" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/structure/fence/corner,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"AM" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"AN" = (
-/obj/item/key,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/minipost)
-"AO" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"AP" = (
-/obj/machinery/door/airlock{
- id_tag = "snowdindormabandoned1";
- name = "Private Quarters"
- },
-/turf/open/floor/wood,
-/area/awaymission/snowdin/post/minipost)
-"AQ" = (
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/minipost)
-"AR" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/minipost)
-"AS" = (
-/obj/item/stack/sheet/mineral/wood,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"AT" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"AU" = (
-/obj/structure/table/wood,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"AV" = (
-/obj/structure/table/wood,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"AW" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"AX" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"AY" = (
-/obj/structure/closet/emcloset,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"AZ" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"Ba" = (
-/obj/item/wrench,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/minipost)
-"Bb" = (
-/obj/machinery/button/door/indestructible{
- id = "snowdindormabandoned1";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = -25;
- specialfunctions = 4
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/post/minipost)
-"Bc" = (
-/obj/structure/barricade/wooden,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Bd" = (
-/mob/living/simple_animal/hostile/skeleton/eskimo,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"Bf" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/minipost)
-"Bg" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 4
- },
-/mob/living/simple_animal/hostile/skeleton/eskimo,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"Bh" = (
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"Bi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/fence/door,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Bj" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"Bk" = (
-/obj/item/clothing/neck/stethoscope,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/minipost)
-"Bl" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/minipost)
-"Bm" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/fire,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/minipost)
-"Bn" = (
-/obj/effect/turf_decal/weather/snow/corner{
- dir = 5
- },
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"Bo" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Bp" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/fence/door{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Bq" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Recon Post APC";
- pixel_x = 1;
- pixel_y = 25
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"Br" = (
-/obj/machinery/computer/monitor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"Bs" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/minipost)
-"Bt" = (
-/obj/structure/table,
-/obj/machinery/light/small,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/minipost)
-"Bu" = (
-/obj/structure/table,
-/obj/item/clothing/glasses/hud/health,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/minipost)
-"Bv" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"Bw" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"Bx" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"By" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Bz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BA" = (
-/obj/machinery/power/smes,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"BB" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/machinery/light/small,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"BC" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/power/port_gen/pacman,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 3
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"BD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/fence/corner{
- dir = 10
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BF" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/fence/door,
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"BG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BH" = (
-/obj/structure/fence,
-/turf/closed/mineral/snowmountain/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BI" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"BJ" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"BK" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"BL" = (
-/obj/effect/turf_decal/weather/snow/corner,
-/mob/living/simple_animal/hostile/skeleton/eskimo,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"BM" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/awaymission/snowdin/igloo)
-"BN" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 9
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"BO" = (
-/obj/effect/turf_decal/stripes/end{
- icon_state = "warn_end";
- dir = 1
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BP" = (
-/obj/structure/lattice/catwalk,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/lava/plasma,
-/area/awaymission/snowdin/cave/cavern)
-"BQ" = (
-/obj/effect/turf_decal/stripes/end{
- icon_state = "warn_end";
- dir = 8
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BS" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 10
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"BT" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BU" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"BV" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"BW" = (
-/obj/item/clothing/head/cone,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"BX" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"BY" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"BZ" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"Ca" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- name = "explosives ordinance"
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"Cb" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Cc" = (
-/obj/structure/fence/door,
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Cd" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Ce" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/closet/crate{
- name = "explosives ordinance"
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"Cf" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 3
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Cg" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/cave)
-"Ch" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Ci" = (
-/obj/item/stack/ore/iron,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Cj" = (
-/obj/structure/fence{
- dir = 4
- },
-/obj/structure/sign/mining,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"Ck" = (
-/obj/structure/fence/door,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"Cl" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Cm" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Cn" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Co" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Cp" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Cq" = (
-/obj/item/stack/sheet/mineral/plastitanium,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Cr" = (
-/obj/item/shard,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Cs" = (
-/obj/structure/girder,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"Ct" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/awaymission/snowdin/outside)
-"Cu" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"Cv" = (
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Cw" = (
-/obj/item/shard{
- icon_state = "medium"
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Cy" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Cz" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/cave)
-"CA" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"CB" = (
-/obj/item/shard,
-/turf/open/floor/plating/ice/smooth,
-/area/awaymission/snowdin/cave)
-"CC" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"CD" = (
-/turf/closed/wall/mineral/plastitanium/nodiagonal,
-/area/awaymission/snowdin/cave)
-"CE" = (
-/obj/structure/girder,
-/obj/item/stack/sheet/mineral/plastitanium,
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"CF" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"CG" = (
-/obj/item/shard,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"CH" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CI" = (
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CJ" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CK" = (
-/obj/structure/closet/syndicate{
- desc = "It's a storage unit for a Syndicate boarding party."
- },
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CL" = (
-/obj/structure/closet/syndicate{
- desc = "It's a storage unit for a Syndicate boarding party."
- },
-/obj/effect/turf_decal/bot_white,
-/obj/item/gun/ballistic/automatic/pistol,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CM" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CN" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CO" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/circuit/red,
-/area/awaymission/snowdin/cave)
-"CP" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"CQ" = (
-/obj/structure/shuttle/engine/propulsion/left{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"CR" = (
-/obj/effect/gibspawner/generic,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"CS" = (
-/obj/effect/light_emitter{
- name = "cave light";
- set_cap = 3;
- set_luminosity = 6
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"CT" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CU" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CV" = (
-/obj/effect/decal/cleanable/vomit/old,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CW" = (
-/obj/item/shard,
-/obj/item/stack/cable_coil/red{
- amount = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CX" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CY" = (
-/obj/item/aicard,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"CZ" = (
-/obj/structure/frame/machine,
-/obj/item/stack/cable_coil/red{
- amount = 1
- },
-/turf/open/floor/circuit/red,
-/area/awaymission/snowdin/cave)
-"Da" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"Db" = (
-/obj/structure/fence,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Dc" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"Dd" = (
-/obj/item/shard,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"De" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/built{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Df" = (
-/obj/item/stack/rods,
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Dg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/item/shard,
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"Dh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"Di" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Dj" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Dk" = (
-/obj/item/stack/cable_coil/red{
- amount = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Dl" = (
-/obj/structure/shuttle/engine/propulsion/right{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"Dm" = (
-/obj/effect/light_emitter{
- name = "cave light";
- set_cap = 3;
- set_luminosity = 6
- },
-/obj/structure/fence/door{
- dir = 4
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"Dn" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"Do" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/item/stack/rods,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"Dp" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"Dq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"Dr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/item/stack/rods,
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"Ds" = (
-/obj/item/grenade/plastic/c4,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Dt" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Du" = (
-/obj/structure/girder,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"Dv" = (
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/cave)
-"Dw" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"Dx" = (
-/obj/machinery/light/built,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"Dy" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/bot_white,
-/obj/item/chair,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"Dz" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/bot_white,
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"DA" = (
-/obj/item/stack/rods,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"DB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"DC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"DD" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"DE" = (
-/obj/item/stack/sheet/mineral/plastitanium,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/outside)
-"DF" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"DG" = (
-/obj/machinery/door/airlock/external{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"DH" = (
-/obj/structure/window/plastitanium,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/cave)
-"DI" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/cave)
-"DJ" = (
-/obj/machinery/door/airlock/hatch{
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"DK" = (
-/obj/structure/grille,
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/cave)
-"DL" = (
-/obj/item/stack/rods,
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"DM" = (
-/mob/living/simple_animal/hostile/bear/snow,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"DN" = (
-/obj/effect/gibspawner/human,
-/obj/effect/decal/cleanable/blood/drip,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"DO" = (
-/obj/item/shard,
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"DP" = (
-/obj/item/stack/rods,
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"DQ" = (
-/obj/item/paper/crumpled/ruins/snowdin/misc1,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"DR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/item/shard,
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"DT" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/cave)
-"DU" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/cave)
-"DV" = (
-/obj/structure/shuttle/engine/propulsion/left{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"DW" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"DX" = (
-/obj/item/shard,
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"DY" = (
-/obj/effect/turf_decal/weather/snow,
-/mob/living/simple_animal/hostile/bear/snow,
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"DZ" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/decal/cleanable/blood/drip,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"Ea" = (
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Eb" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Ec" = (
-/obj/item/shard,
-/obj/item/stack/cable_coil/red{
- amount = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Ed" = (
-/obj/machinery/telecomms/allinone/indestructable,
-/turf/open/floor/circuit/red,
-/area/awaymission/snowdin/cave)
-"Ee" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Ef" = (
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Eg" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/decal/cleanable/vomit/old,
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"Eh" = (
-/obj/structure/shuttle/engine/propulsion/right{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave)
-"Ei" = (
-/obj/item/shard,
-/mob/living/simple_animal/hostile/bear/snow,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"Ej" = (
-/obj/structure/grille/broken,
-/obj/item/stack/rods,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/cave)
-"Ek" = (
-/obj/structure/door_assembly/door_assembly_hatch,
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"El" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/bot_white,
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"Em" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/turf_decal/bot_white,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"En" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"Eo" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"Ep" = (
-/obj/item/shard,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Eq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/item/shard,
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"Er" = (
-/obj/structure/table/reinforced,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Es" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"Et" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/mob_spawn/human/corpse/syndicatesoldier,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark/snowdin,
-/area/awaymission/snowdin/cave)
-"Eu" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Ev" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/item/stack/rods,
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"Ew" = (
-/obj/machinery/iv_drip,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Ex" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/effect/spawner/lootdrop/snowdin/dungeonlite,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Ey" = (
-/obj/structure/girder,
-/obj/effect/turf_decal/weather/snow,
-/turf/open/floor/plating/asteroid/snow{
- floor_variance = 0;
- icon_state = "snow_dug";
- slowdown = 1
- },
-/area/awaymission/snowdin/cave)
-"Ez" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EA" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/obj/item/shard,
-/obj/item/reagent_containers/food/drinks/beer{
- list_reagents = null
- },
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"EB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/item/reagent_containers/glass/beaker,
-/turf/open/floor/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"EC" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/circular_saw,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"ED" = (
-/obj/item/toy/plush/nukeplushie,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/suit_storage_unit{
- state_open = 1
- },
-/turf/open/floor/mineral/plastitanium{
- initial_gas_mix = "o2=22;n2=82;TEMP=180";
- planetary_atmos = 1;
- temperature = 180
- },
-/area/awaymission/snowdin/cave)
-"EF" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/mineral/plastitanium{
- initial_gas_mix = "o2=22;n2=82;TEMP=180";
- planetary_atmos = 1;
- temperature = 180
- },
-/area/awaymission/snowdin/cave)
-"EG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/effect/turf_decal/weather/snow,
-/obj/machinery/suit_storage_unit{
- state_open = 1
- },
-/turf/open/floor/mineral/plastitanium{
- initial_gas_mix = "o2=22;n2=82;TEMP=180";
- planetary_atmos = 1;
- temperature = 180
- },
-/area/awaymission/snowdin/cave)
-"EH" = (
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EI" = (
-/obj/item/stack/rods,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EJ" = (
-/obj/item/reagent_containers/dropper,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EK" = (
-/obj/structure/bed/roller,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EL" = (
-/obj/item/shard,
-/obj/item/retractor,
-/obj/item/cautery,
-/obj/effect/decal/cleanable/blood/old,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EM" = (
-/obj/structure/table/optable,
-/obj/effect/turf_decal/bot_white,
-/obj/item/surgical_drapes,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EN" = (
-/obj/machinery/sleeper/syndie{
- icon_state = "sleeper_s";
- dir = 1
- },
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EO" = (
-/obj/effect/turf_decal/bot_white,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EP" = (
-/obj/effect/turf_decal/bot_white,
-/obj/machinery/sleeper/syndie{
- icon_state = "sleeper_s";
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"EQ" = (
-/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"ER" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"ES" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/built,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"ET" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 10
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/awaymission/snowdin/cave)
-"EU" = (
-/obj/item/stack/ore/iron,
-/turf/closed/mineral/iron/ice,
-/area/awaymission/snowdin/cave/cavern)
-"EV" = (
-/obj/structure/mecha_wreckage/ripley,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"EW" = (
-/obj/structure/ore_box,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"EX" = (
-/obj/item/pickaxe/drill{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"EY" = (
-/obj/item/shard,
-/obj/structure/flora/grass/both,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"EZ" = (
-/obj/effect/turf_decal/weather/snow,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fa" = (
-/obj/structure/flora/grass/both,
-/obj/structure/flora/bush,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Fb" = (
-/obj/structure/fence{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Fc" = (
-/obj/structure/fence/corner{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Fd" = (
-/obj/structure/statue/snow/snowman{
- anchored = 1;
- name = "Officer Snowlby"
- },
-/obj/item/clothing/head/helmet{
- pixel_y = 8
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Fe" = (
-/obj/structure/fence,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Ff" = (
-/obj/structure/fence/corner{
- dir = 10
- },
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Fg" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/loading_area,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"Fh" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/loading_area,
-/obj/vehicle/ridden/atv,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"Fi" = (
-/obj/structure/flora/bush,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Fj" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"Fk" = (
-/obj/item/shard,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Fl" = (
-/obj/structure/fence{
- dir = 4
- },
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Fm" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fn" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fo" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fp" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fq" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/machinery/portable_atmospherics/canister/toxins,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fr" = (
-/obj/structure/statue/snow/snowman{
- anchored = 1;
- name = "Officer Norm"
- },
-/obj/item/gun/energy/e_gun/mini{
- pixel_y = -5
- },
-/obj/item/clothing/head/helmet{
- pixel_y = 8
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Fs" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Ft" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fu" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fv" = (
-/obj/machinery/light/small,
-/obj/structure/sign/nanotrasen{
- pixel_y = -32
- },
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/post/mining_dock)
-"Fw" = (
-/obj/item/shard,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Fx" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fy" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 5
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Fz" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"FA" = (
-/obj/effect/mob_spawn/human/corpse/assistant{
- brute_damage = 150;
- oxy_damage = 50
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"FB" = (
-/obj/structure/statue/snow/snowman{
- anchored = 1;
- name = "Officer Norm"
- },
-/obj/item/clothing/head/helmet{
- pixel_y = 8
- },
-/obj/item/melee/baton{
- pixel_x = 4
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"FC" = (
-/obj/effect/baseturf_helper/asteroid/snow{
- baseturf = /turf/open/floor/plating/asteroid/snow/ice;
- name = "asteroid snowice baseturf editor"
- },
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/mining_dock)
-"FD" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/holosign/barrier/atmos,
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"FE" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/obj/structure/lattice/catwalk,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"FF" = (
-/obj/structure/statue/snow/snowman{
- name = "Snow-Luc Price"
- },
-/obj/item/clothing/head/HoS{
- pixel_y = 10
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"FG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/shard,
-/obj/item/stack/rods{
- amount = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"FH" = (
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"FI" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"FJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/item/stack/rods{
- amount = 2
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"FK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 4;
- piping_layer = 3
- },
-/obj/structure/sign/warning/xeno_mining{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"FL" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/post/mining_dock)
-"FM" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"FQ" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/post/mining_main)
-"FR" = (
-/obj/machinery/light/small,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/post/mining_main)
-"FS" = (
-/obj/structure/fence/door{
- dir = 4
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"FT" = (
-/obj/structure/ore_box,
-/turf/closed/mineral/snowmountain/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"FU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_dock)
-"FV" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"FW" = (
-/obj/structure/sign/nanotrasen{
- pixel_y = -32
- },
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"FZ" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/mining_main)
-"Ga" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Gb" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Gc" = (
-/obj/structure/statue/snow/snowman{
- anchored = 1;
- name = "snowman"
- },
-/obj/item/pickaxe/mini{
- pixel_x = 5;
- pixel_y = 3
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Gd" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Ge" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Gf" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Gg" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Gh" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_dock)
-"Gi" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Gj" = (
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Gk" = (
-/turf/closed/wall/ice,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Gl" = (
-/obj/machinery/door/poddoor/shutters{
- id = "snowdingarageunder";
- name = "garage door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Gm" = (
-/obj/machinery/door/poddoor/shutters{
- id = "snowdingarageunder2";
- name = "garage door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Gn" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Go" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/mining_main)
-"Gp" = (
-/obj/machinery/space_heater,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Gq" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Gr" = (
-/obj/structure/flora/stump,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Gs" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Gt" = (
-/obj/machinery/atmospherics/pipe/manifold/orange/visible{
- dir = 1
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Gu" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Gv" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 8
- },
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Gw" = (
-/obj/machinery/atmospherics/pipe/simple/orange/visible{
- dir = 8
- },
-/turf/open/floor/plating/snowed,
-/area/awaymission/snowdin/outside)
-"Gx" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Gy" = (
-/obj/structure/table,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/obj/item/clothing/glasses/welding,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Gz" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"GA" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"GB" = (
-/obj/machinery/mecha_part_fabricator,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"GC" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"GD" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"GE" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/item/disk/holodisk/snowdin/ripjacob,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"GF" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"GG" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"GH" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"GI" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"GJ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"GK" = (
-/obj/machinery/button/door/indestructible{
- id = "snowdingarageunder2";
- name = "right garage door toggle";
- pixel_x = 7;
- pixel_y = 24
- },
-/obj/machinery/button/door/indestructible{
- id = "snowdingarageunder";
- name = "left garage door toggle";
- pixel_x = -7;
- pixel_y = 24
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"GL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"GN" = (
-/turf/closed/wall,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"GO" = (
-/obj/machinery/mineral/unloading_machine{
- dir = 1;
- icon_state = "unloader-corner";
- input_dir = 1;
- output_dir = 2
- },
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"GP" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/mining_main)
-"GQ" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/shoes/winterboots,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"GR" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_main)
-"GS" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/outside)
-"GT" = (
-/obj/structure/window/reinforced/fulltile/ice,
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/outside)
-"GU" = (
-/turf/closed/wall/rust,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"GV" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 3;
- pixel_y = 7
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"GW" = (
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"GX" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_main/robotics)
-"GY" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"GZ" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Ha" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Hb" = (
-/mob/living/simple_animal/hostile/netherworld/migo,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Hc" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Hd" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"He" = (
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Hf" = (
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Hg" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Hh" = (
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Hi" = (
-/obj/effect/turf_decal/bot,
-/obj/structure/mecha_wreckage/ripley,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Hj" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile/ice,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Hk" = (
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Hl" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/turf/closed/wall,
-/area/awaymission/snowdin/post/mining_main)
-"Hm" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Hn" = (
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/cave/mountain)
-"Ho" = (
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/outside)
-"Hp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
- dir = 1;
- frequency = 1442;
- id_tag = "snowdin_toxins_mine_1";
- name = "toxin out"
- },
-/turf/open/floor/engine/vacuum,
-/area/awaymission/snowdin/outside)
-"Hq" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"Hr" = (
-/obj/structure/fence,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/outside)
-"Hs" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Ht" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Hu" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Hv" = (
-/obj/structure/closet/wardrobe/robotics_black,
-/obj/machinery/power/apc{
- dir = 4;
- name = "Robotics APC";
- pixel_x = 26
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Hw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"Hx" = (
-/obj/machinery/holopad,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"Hy" = (
-/obj/machinery/door/airlock/research/glass{
- name = "Mech Lab";
- req_access_txt = "29"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Hz" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"HA" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"HB" = (
-/obj/machinery/mineral/processing_unit_console,
-/turf/closed/wall,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"HC" = (
-/obj/machinery/mineral/processing_unit{
- dir = 1;
- output_dir = 2
- },
-/obj/machinery/conveyor{
- dir = 2;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"HD" = (
-/obj/structure/table,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_main)
-"HE" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_main)
-"HF" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_main)
-"HG" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"HI" = (
-/obj/effect/turf_decal/bot,
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/light_emitter{
- name = "outdoor light";
- set_cap = 3;
- set_luminosity = 6
- },
-/turf/open/floor/plating/snowed/smoothed,
-/area/awaymission/snowdin/outside)
-"HJ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"HK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/item/stack/sheet/glass{
- amount = 20;
- pixel_x = -3;
- pixel_y = 6
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"HL" = (
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"HM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"HN" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"HO" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"HP" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"HQ" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"HR" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"HS" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"HT" = (
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/mining_main)
-"HU" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/mining_main)
-"HV" = (
-/obj/machinery/door/airlock{
- name = "Private Quarters"
- },
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/mining_main)
-"HW" = (
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"HX" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"HY" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"HZ" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Ia" = (
-/obj/machinery/door/poddoor/shutters{
- id = "snowdingarage3";
- name = "garage door"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Ib" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Ic" = (
-/obj/machinery/door/airlock/research{
- name = "Robotics Lab";
- req_access_txt = "29"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"Id" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_dock)
-"Ie" = (
-/obj/structure/barricade/sandbags,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_dock)
-"If" = (
-/obj/structure/sign/warning/nosmoking{
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Ig" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Ih" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Ii" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/machinery/light,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Ij" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/mech_bay_recharge_floor,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Ik" = (
-/obj/machinery/computer/mech_bay_power_console{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Il" = (
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Im" = (
-/obj/machinery/mech_bay_recharge_port,
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"In" = (
-/obj/mecha/working/ripley/mining{
- dir = 1;
- ruin_mecha = 1
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/mech_bay_recharge_floor,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Io" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Ip" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"Iq" = (
-/obj/structure/bed,
-/obj/item/bedsheet/grey,
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/mining_main)
-"Ir" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/mining_main)
-"Is" = (
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/mining_main)
-"It" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Iu" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_main)
-"Iv" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Iw" = (
-/obj/machinery/button/door/indestructible{
- id = "snowdingarage3";
- name = "garage door toggle";
- pixel_x = 7;
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Ix" = (
-/obj/vehicle/ridden/atv{
- icon_state = "atv";
- dir = 1
- },
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Iy" = (
-/obj/structure/table,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Iz" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"IA" = (
-/obj/structure/rack,
-/obj/item/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = 6
- },
-/obj/item/storage/belt/utility,
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"IB" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/white,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"IC" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_dock)
-"ID" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"IE" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"IF" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"IG" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"IH" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Garage"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"II" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_main)
-"IJ" = (
-/obj/structure/sign/warning/electricshock{
- pixel_x = 32
- },
-/turf/closed/wall,
-/area/awaymission/snowdin/post/mining_main/robotics)
-"IK" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_dock)
-"IL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"IM" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"IN" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"IO" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"IP" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Main Outpost APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"IQ" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Mechbay APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"IR" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"IS" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"IT" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
-/area/awaymission/snowdin/post/mining_main)
-"IU" = (
-/obj/machinery/light,
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"IV" = (
-/obj/structure/table,
-/obj/structure/showcase/machinery/microwave,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"IW" = (
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"IX" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/stack/sheet/mineral/plasma{
- amount = 10
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"IY" = (
-/obj/machinery/light,
-/turf/open/floor/plating{
- icon_state = "platingdmg1"
- },
-/area/awaymission/snowdin/post/mining_main)
-"IZ" = (
-/obj/machinery/computer/monitor,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Ja" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jb" = (
-/obj/machinery/door/airlock/maintenance{
- name = "SMES Storage";
- req_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jc" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Jd" = (
-/obj/item/shard,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Je" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jf" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 8;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jg" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jh" = (
-/obj/machinery/conveyor{
- dir = 10;
- id = "snowdin_belt_mine"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Ji" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Jj" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Misc Storage";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Jk" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jl" = (
-/obj/machinery/door/airlock/mining/glass{
- name = "Mining Dock";
- req_access_txt = "48"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Jm" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille/broken,
-/obj/item/stack/rods{
- amount = 2
- },
-/obj/item/shard,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jn" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jo" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jp" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Jq" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plating/snowed/cavern,
-/area/awaymission/snowdin/cave/cavern)
-"Jr" = (
-/obj/machinery/door/airlock/mining/glass{
- name = "Mining Dock";
- req_access_txt = "48"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Js" = (
-/obj/structure/door_assembly/door_assembly_min{
- anchored = 1;
- name = "broken airlock"
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Jt" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/storage/toolbox/emergency,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Ju" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Jv" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Jw" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Jx" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Jy" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Jz" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"JA" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"JB" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"JC" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"JD" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"JE" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"JF" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"JG" = (
-/obj/effect/turf_decal/stripes/corner,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"JH" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"JI" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"JJ" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"JK" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/awaymission/snowdin/post/mining_main)
-"JL" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"JM" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"JN" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen"
- },
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/suit/hooded/wintercoat,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/shoes/winterboots,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"JO" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"JP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"JU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"JV" = (
-/obj/machinery/power/port_gen/pacman,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"JW" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"JX" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"JY" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"JZ" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Misc Storage";
- req_access_txt = "12"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Ka" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Kb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Kc" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Kg" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Kh" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/structure/sign/warning/docking{
- pixel_x = 32
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Ki" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Kj" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Kk" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/computer/monitor,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Kl" = (
-/obj/structure/sign/warning/docking{
- pixel_x = 32
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Km" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 8
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Kn" = (
-/obj/docking_port/stationary{
- area_type = /area/awaymission/snowdin/post/mining_main;
- dir = 4;
- dwidth = 2;
- height = 5;
- id = "snowdin_mining_top";
- name = "snowdin mining top";
- roundstart_template = /datum/map_template/shuttle/snowdin/mining;
- width = 5
- },
-/turf/open/floor/plasteel/elevatorshaft,
-/area/awaymission/snowdin/post/mining_main)
-"Ko" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Kp" = (
-/obj/machinery/holopad,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Kq" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Kr" = (
-/obj/structure/door_assembly/door_assembly_min{
- anchored = 1;
- name = "broken airlock"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Ks" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Kt" = (
-/obj/docking_port/stationary{
- area_type = /area/awaymission/snowdin/post/mining_dock;
- dir = 4;
- dwidth = 2;
- height = 5;
- id = "snowdin_mining_down";
- name = "snowdin mining bottom";
- width = 5
- },
-/turf/open/floor/plasteel/elevatorshaft,
-/area/awaymission/snowdin/post/mining_dock)
-"Ku" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/caution/stand_clear{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"Kv" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Kw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Kx" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Ky" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"Kz" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Mining Post APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"KA" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"KB" = (
-/obj/structure/door_assembly/door_assembly_min{
- anchored = 1;
- name = "broken airlock"
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"KD" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/bot,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"KE" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"KF" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"KG" = (
-/obj/structure/sign/warning/docking{
- pixel_x = 32
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"KH" = (
-/obj/structure/cable,
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"KI" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"KJ" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/stack/rods,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"KK" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"KL" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"KM" = (
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"KN" = (
-/obj/structure/sign/warning/docking{
- pixel_x = 32
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg2"
- },
-/area/awaymission/snowdin/post/mining_main)
-"KO" = (
-/obj/machinery/computer/shuttle/snowdin/mining{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"KP" = (
-/turf/open/floor/plasteel/elevatorshaft,
-/area/awaymission/snowdin/post/mining_main)
-"KQ" = (
-/obj/machinery/computer/shuttle/snowdin/mining{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"KR" = (
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"KT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"KU" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"KV" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"KX" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"KY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/turf_decal/caution/stand_clear,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"KZ" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"La" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plating/asteroid/snow/ice,
-/area/awaymission/snowdin/cave/cavern)
-"Lw" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/minipost)
-"Lx" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"ND" = (
-/turf/open/floor/plasteel/elevatorshaft,
-/area/awaymission/snowdin/post/mining_dock)
-"OF" = (
-/obj/machinery/door/airlock/external{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"PR" = (
-/obj/machinery/door/airlock/external{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/awaymission/snowdin/cave)
-"Qd" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main/mechbay)
-"QX" = (
-/obj/effect/baseturf_helper/asteroid/snow,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"Sf" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_dock)
-"SX" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_main)
-"TP" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 4
- },
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/snowdin/post/mining_main)
-"VW" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/structure/fans/tiny,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/mining_dock)
-"Yn" = (
-/obj/machinery/door/airlock/external/glass,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/awaymission/snowdin/post/garage)
-"Zj" = (
-/turf/open/floor/plating/asteroid/snow,
-/area/awaymission/snowdin/post/engineering)
-
-(1,1,1) = {"
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(2,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(3,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(4,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(5,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(6,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(7,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(8,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(9,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(10,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-tI
-tI
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(11,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-ag
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-tI
-tI
-tQ
-tI
-aj
-tI
-tQ
-tI
-tI
-tI
-aj
-aj
-aj
-tI
-tI
-tI
-tI
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(12,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-tI
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tI
-tI
-tI
-aj
-tI
-vJ
-tI
-tI
-ud
-tI
-tI
-tI
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(13,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-am
-af
-ak
-af
-af
-af
-fq
-af
-am
-af
-af
-ag
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-aj
-tQ
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tQ
-tI
-tI
-tI
-tI
-tQ
-tI
-tI
-tI
-tI
-tI
-tI
-aj
-aj
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(14,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-am
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tI
-aj
-aj
-tx
-tx
-tx
-tI
-tQ
-aj
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(15,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-eM
-af
-af
-al
-af
-af
-jc
-af
-af
-af
-af
-af
-af
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-ud
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-vJ
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(16,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-aK
-aK
-aK
-aK
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-fq
-af
-am
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-tQ
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(17,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-af
-ak
-af
-af
-af
-aK
-dz
-dY
-aK
-af
-af
-af
-ag
-af
-af
-am
-af
-af
-af
-af
-af
-af
-al
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-aj
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tI
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(18,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-av
-af
-af
-af
-af
-ag
-af
-af
-aK
-dA
-aV
-aK
-aK
-aK
-aK
-aK
-aK
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-ak
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-tI
-tI
-tI
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-aj
-aj
-aj
-ae
-aj
-aj
-aj
-tI
-tI
-tI
-tI
-tQ
-tI
-tI
-tQ
-tI
-tI
-tI
-tI
-tx
-tx
-tI
-tI
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(19,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-am
-af
-af
-aK
-aK
-aK
-aK
-dB
-dZ
-eN
-dC
-fH
-gX
-hG
-aK
-af
-fq
-af
-af
-ak
-af
-af
-af
-am
-af
-af
-af
-af
-fq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tQ
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-tI
-ud
-tI
-tI
-vJ
-tI
-vJ
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-af
-fq
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(20,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-aK
-bO
-cm
-aV
-dC
-ea
-eO
-fs
-eO
-eO
-hH
-aK
-ag
-af
-af
-af
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-tI
-aj
-aj
-tI
-tI
-tI
-aj
-aj
-aj
-tI
-tI
-tI
-tI
-tI
-aj
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-ag
-af
-am
-af
-ag
-af
-af
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(21,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-am
-ag
-aK
-bP
-cn
-aS
-dC
-eb
-eP
-eP
-gh
-gY
-hI
-aK
-aK
-aK
-aK
-aK
-aK
-aK
-af
-af
-af
-af
-fq
-am
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-vJ
-tI
-aj
-aj
-tI
-tQ
-tQ
-aj
-aj
-tI
-tI
-tI
-tI
-ud
-tI
-aj
-tI
-tI
-tI
-tI
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ku
-ae
-ae
-ae
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-am
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(22,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-aJ
-aK
-aK
-aK
-aS
-co
-aV
-aS
-aS
-aS
-aV
-aV
-aS
-hJ
-aV
-jd
-aS
-kv
-le
-lU
-aK
-af
-af
-af
-af
-af
-af
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tG
-tI
-ja
-tx
-tx
-tS
-tx
-tx
-tS
-tx
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-tQ
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-tQ
-aj
-tI
-tI
-tI
-aj
-aj
-aj
-tQ
-tQ
-tI
-tI
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-ag
-fq
-ko
-af
-ag
-am
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-fq
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-fq
-af
-tN
-af
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(23,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-aK
-aQ
-bi
-bx
-bQ
-cp
-cV
-cv
-ec
-eQ
-ft
-eQ
-eQ
-hK
-eQ
-je
-aS
-kw
-lf
-lV
-aK
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-tJ
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-tI
-tI
-tI
-tI
-vK
-tI
-tI
-tI
-tI
-vJ
-aj
-aj
-aj
-tI
-tI
-aj
-ae
-aj
-aj
-aj
-aj
-tI
-tI
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-ko
-af
-ak
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-tN
-fq
-af
-af
-am
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(24,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-aK
-aR
-bj
-by
-aV
-cq
-cW
-dD
-ed
-eR
-fu
-gi
-gZ
-hL
-io
-jf
-aV
-kx
-lg
-lW
-aK
-ag
-af
-am
-af
-af
-af
-af
-af
-fq
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-af
-af
-af
-sf
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-mZ
-af
-af
-af
-af
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-tI
-tI
-tI
-tI
-tI
-aj
-tI
-tQ
-tI
-tI
-tI
-tI
-tI
-tI
-aj
-ae
-ae
-ae
-ae
-aj
-aj
-tI
-ud
-wx
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ak
-af
-al
-af
-af
-ko
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-af
-ak
-ag
-af
-af
-af
-ag
-af
-af
-af
-af
-tN
-af
-am
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(25,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-aK
-aS
-aV
-aS
-aV
-cr
-cX
-dE
-ee
-eS
-fv
-gj
-ha
-dE
-ip
-jg
-aV
-ky
-aV
-aV
-aK
-aK
-af
-af
-al
-am
-af
-af
-af
-af
-af
-se
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-fq
-af
-am
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-tI
-tI
-tI
-tI
-aj
-tI
-tI
-tI
-tI
-tI
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-uq
-tN
-ae
-ae
-ae
-tN
-uq
-tN
-tN
-tN
-uq
-af
-af
-ag
-ag
-fq
-af
-ag
-af
-af
-am
-af
-af
-af
-af
-ko
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-am
-af
-am
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-fq
-af
-tN
-af
-af
-af
-fq
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(26,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-af
-af
-af
-ak
-af
-aK
-aT
-bi
-bx
-bR
-cs
-cY
-aS
-aS
-eT
-aS
-aS
-hb
-aS
-iq
-jf
-aV
-kz
-lh
-lX
-mD
-aK
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-uq
-af
-af
-af
-am
-uX
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-tI
-tI
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-tI
-tI
-tI
-tI
-tI
-tI
-tQ
-tI
-tI
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tN
-tN
-tN
-ae
-ae
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-am
-af
-af
-af
-am
-fq
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-ak
-af
-am
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-fq
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-tN
-tN
-af
-af
-af
-ag
-af
-af
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(27,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-af
-ao
-af
-af
-af
-aK
-aU
-bk
-bz
-aS
-cq
-cZ
-aS
-ef
-eU
-aV
-gk
-hc
-aV
-ir
-jh
-jP
-kA
-li
-aV
-aV
-aK
-ag
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-am
-af
-af
-ak
-af
-jc
-af
-af
-fq
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-tI
-tI
-tI
-tx
-tx
-tx
-tx
-xR
-tN
-tN
-tN
-tN
-tN
-uq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-fq
-ko
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-am
-tN
-af
-af
-am
-af
-ak
-af
-af
-af
-af
-am
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(28,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-aK
-aV
-aV
-aV
-aS
-ct
-da
-aV
-eg
-eV
-aV
-gl
-hd
-aS
-iq
-ji
-aS
-kB
-lj
-lX
-mD
-aK
-af
-af
-ak
-af
-am
-af
-ak
-af
-am
-af
-ag
-af
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-am
-af
-am
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-tI
-aj
-aj
-aj
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tq
-am
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-tN
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(29,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-af
-af
-af
-am
-af
-aK
-aW
-bl
-bA
-bS
-cu
-db
-aV
-eh
-eW
-aS
-gm
-he
-aV
-iq
-jj
-aS
-kC
-kC
-jR
-jR
-na
-na
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-am
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-ai
-aj
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fq
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-af
-af
-fq
-am
-af
-af
-af
-af
-af
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(30,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-af
-af
-af
-af
-ag
-aK
-aX
-bm
-bB
-aS
-cv
-dc
-aS
-aS
-aS
-aS
-aV
-aS
-aS
-iq
-jg
-jQ
-jR
-jR
-lY
-mE
-nb
-na
-na
-af
-fq
-af
-al
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-am
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-tC
-af
-af
-af
-fq
-af
-af
-am
-af
-al
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-fq
-ag
-af
-af
-af
-mZ
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ko
-ag
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-am
-af
-fq
-af
-ak
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-ag
-af
-af
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(31,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ak
-af
-af
-af
-af
-aK
-aS
-aV
-aS
-aS
-cr
-dd
-dF
-ei
-eX
-fw
-fw
-fw
-dK
-is
-jk
-jR
-kD
-lk
-lZ
-mF
-mF
-nC
-ob
-ob
-ob
-ob
-ag
-af
-af
-af
-af
-af
-ak
-af
-am
-af
-af
-ag
-tq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-am
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-ko
-af
-ak
-af
-af
-af
-af
-af
-af
-fq
-af
-ak
-af
-af
-am
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-tN
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(32,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-af
-am
-af
-af
-af
-aK
-aY
-bl
-bx
-bT
-cw
-cY
-dF
-dK
-eY
-fx
-gn
-gr
-hM
-it
-jl
-jR
-kE
-ll
-ma
-mG
-mG
-nD
-oc
-oy
-ph
-pH
-pH
-pH
-pH
-fq
-af
-sw
-sH
-sH
-sH
-sH
-sH
-tn
-ko
-af
-ag
-af
-af
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-ak
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-fq
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ae
-ae
-af
-af
-af
-af
-ko
-sw
-sH
-sH
-sH
-sH
-sH
-tn
-af
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-am
-af
-af
-fq
-af
-ak
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(33,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ag
-af
-af
-af
-ao
-aK
-aZ
-bm
-bC
-aS
-cx
-de
-dF
-dM
-eY
-fy
-go
-hf
-hM
-it
-jm
-jR
-jR
-lm
-mb
-mG
-mG
-nD
-oc
-oz
-pi
-pH
-qn
-qn
-pH
-af
-af
-sx
-sI
-sS
-td
-sS
-td
-sS
-tq
-af
-am
-af
-af
-af
-am
-ak
-af
-af
-af
-fq
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-am
-af
-af
-af
-ag
-af
-fq
-af
-ag
-af
-af
-ag
-af
-af
-eM
-af
-af
-af
-ag
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-ae
-ae
-af
-af
-af
-ae
-ae
-af
-af
-af
-af
-tq
-sS
-td
-sS
-td
-sS
-sI
-yU
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tq
-tN
-tN
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-fq
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-fq
-af
-af
-am
-af
-af
-ag
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(34,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-af
-af
-af
-af
-aK
-aS
-aV
-aV
-aV
-cx
-de
-dG
-dM
-eZ
-fz
-gp
-hg
-hN
-it
-jn
-jS
-jR
-jR
-mc
-lY
-jR
-nE
-oc
-oA
-oH
-pI
-qo
-qp
-pH
-am
-af
-sx
-sJ
-te
-te
-te
-te
-te
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-vL
-vR
-vX
-vR
-vL
-af
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-af
-af
-ag
-af
-af
-af
-af
-ae
-af
-af
-af
-ag
-af
-af
-af
-af
-af
-dX
-te
-te
-te
-te
-te
-yF
-yU
-af
-am
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-tN
-tN
-tN
-af
-af
-fq
-kp
-am
-af
-af
-af
-af
-af
-af
-fq
-ak
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-am
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-am
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Go
-Go
-GP
-Go
-Go
-GP
-GP
-Go
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(35,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-am
-af
-af
-af
-aK
-ba
-bl
-bx
-bU
-cy
-df
-dH
-dK
-fa
-fA
-gq
-hh
-hO
-iu
-jm
-jT
-kF
-ln
-md
-mH
-nc
-nF
-od
-oB
-pj
-pI
-qp
-qJ
-pH
-af
-am
-sx
-sK
-te
-te
-te
-te
-te
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-ua
-ua
-ua
-ua
-ua
-ua
-ua
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-vM
-vS
-vY
-wb
-vM
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-te
-te
-te
-te
-te
-yG
-yU
-af
-af
-af
-af
-af
-am
-af
-ak
-af
-af
-af
-af
-af
-am
-af
-af
-af
-tN
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-am
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-ak
-af
-tN
-tN
-fq
-ak
-af
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-fq
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-GP
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-GP
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(36,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-am
-af
-af
-ag
-aK
-bb
-bn
-bD
-aS
-cq
-de
-dI
-dK
-fb
-fB
-gr
-gr
-hM
-iv
-jo
-jU
-js
-jU
-me
-mI
-nd
-nF
-oe
-oC
-pk
-pJ
-qo
-qK
-pH
-ak
-af
-sx
-sJ
-te
-te
-te
-te
-te
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-te
-te
-te
-te
-te
-te
-te
-te
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-oa
-vN
-vT
-vY
-wc
-vM
-oa
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-dX
-te
-te
-te
-te
-te
-yF
-yU
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-ks
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-ko
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Go
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Go
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(37,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ag
-af
-af
-am
-aq
-ar
-ar
-aK
-aS
-aV
-aV
-aS
-cq
-dd
-dJ
-dK
-fc
-fC
-gs
-hi
-dK
-iw
-jp
-jV
-gt
-lo
-mf
-mJ
-ne
-nG
-of
-oD
-pl
-pI
-pH
-pH
-pH
-af
-fq
-sx
-sK
-te
-te
-te
-te
-te
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-ua
-ua
-ua
-ua
-ua
-ua
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-vM
-vU
-vY
-wd
-vM
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-te
-te
-te
-te
-te
-yG
-yU
-af
-fq
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-am
-af
-tN
-tN
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-Fl
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Go
-GP
-GP
-Go
-Go
-GP
-Go
-Gq
-Gq
-Gq
-Gq
-Gq
-Go
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(38,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-al
-ag
-ar
-aw
-aE
-aL
-bc
-bo
-bE
-az
-cz
-dg
-dK
-dK
-dK
-dM
-dM
-dM
-dK
-ix
-jq
-jm
-jU
-lp
-mg
-mK
-nf
-nH
-og
-oE
-pm
-pK
-qq
-af
-ak
-af
-sf
-sx
-sJ
-te
-te
-te
-te
-te
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-vL
-vR
-vX
-vR
-vL
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-te
-te
-te
-te
-te
-yF
-yU
-af
-af
-ak
-am
-af
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ks
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-tN
-tN
-am
-af
-af
-af
-fq
-af
-am
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-ko
-am
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-GP
-HT
-Iq
-Go
-HT
-Iq
-Go
-Go
-Go
-GP
-Gq
-GP
-Go
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(39,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-af
-ar
-ax
-aF
-aE
-aE
-bo
-bE
-az
-bo
-dh
-dL
-ej
-fd
-fD
-gt
-fd
-hP
-gt
-jr
-jW
-jU
-lq
-mh
-mL
-nf
-nI
-oh
-oF
-pn
-pL
-qq
-ag
-rj
-am
-af
-sx
-sI
-sU
-tf
-tl
-tf
-tl
-tq
-af
-am
-af
-af
-af
-af
-af
-fq
-af
-am
-tB
-af
-af
-fq
-af
-af
-af
-al
-af
-af
-af
-af
-af
-am
-af
-af
-fq
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-al
-ag
-af
-af
-ag
-am
-af
-ag
-fq
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-ak
-tq
-tl
-tf
-tl
-tf
-sU
-sI
-yU
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-ko
-af
-af
-fq
-am
-af
-af
-fq
-af
-fq
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-fq
-af
-ko
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-GP
-HU
-Ir
-GP
-HU
-Ir
-Go
-ae
-Go
-Kj
-Kv
-KH
-GP
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(40,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-ak
-ar
-ay
-aG
-aM
-bc
-bp
-bE
-az
-br
-di
-dM
-ek
-fe
-fE
-gu
-hj
-dK
-iy
-js
-jX
-kG
-lr
-mi
-mM
-nf
-nF
-oi
-oG
-po
-pM
-qq
-am
-af
-af
-af
-sy
-sL
-sL
-sL
-sL
-sL
-to
-ko
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-kp
-sy
-sL
-sL
-sL
-sL
-sL
-to
-am
-am
-af
-af
-af
-am
-af
-af
-af
-af
-af
-am
-dX
-af
-fq
-ao
-af
-af
-ag
-af
-fq
-af
-kp
-ag
-af
-af
-af
-ag
-af
-af
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-am
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-GP
-HT
-Is
-Go
-HT
-Is
-Go
-ae
-GP
-Kk
-Kw
-KI
-GP
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(41,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-af
-ar
-az
-aC
-aC
-az
-bq
-bF
-bV
-cA
-dj
-dM
-el
-ff
-fg
-fg
-fh
-fh
-fh
-fg
-fg
-kH
-ls
-mj
-jo
-ng
-nF
-oc
-oH
-oH
-oc
-ob
-qL
-qL
-qL
-ak
-am
-af
-dX
-dX
-dX
-af
-af
-kp
-af
-af
-af
-ak
-fq
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-ak
-af
-am
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-al
-af
-tN
-ko
-af
-af
-af
-dX
-dX
-dX
-dX
-dX
-af
-dX
-dX
-dX
-dX
-af
-ag
-af
-am
-af
-af
-af
-af
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ku
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-fq
-ag
-af
-af
-af
-fq
-ag
-af
-af
-ag
-af
-af
-fq
-ak
-af
-af
-af
-af
-fq
-af
-al
-tN
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-lS
-iY
-sN
-ao
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-Hl
-Go
-HV
-Go
-Go
-HV
-Go
-GP
-Go
-GP
-Go
-Kx
-KJ
-GP
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(42,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-ag
-ar
-aw
-aE
-aE
-bd
-br
-bI
-bW
-cB
-bo
-dK
-em
-fg
-fF
-gv
-fF
-hQ
-iz
-jt
-fh
-kI
-lt
-mk
-mL
-nh
-nJ
-hM
-oI
-pp
-pN
-dK
-qM
-rk
-rG
-af
-am
-dX
-dX
-dX
-af
-fq
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-fq
-af
-af
-al
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-fq
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ks
-af
-ak
-af
-af
-fq
-af
-dX
-dX
-dX
-af
-dX
-te
-te
-AC
-yW
-af
-af
-ak
-eM
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-ak
-af
-af
-fq
-ko
-af
-af
-ak
-af
-af
-am
-af
-af
-ae
-ae
-ae
-GP
-HD
-GR
-It
-Iu
-IR
-Go
-Is
-Ir
-Iq
-Go
-Ky
-Gq
-GP
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(43,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ag
-af
-af
-af
-ar
-aA
-aH
-aN
-aE
-bs
-bH
-bX
-cB
-bE
-az
-en
-fh
-fF
-fG
-fG
-gw
-hl
-hR
-jY
-kJ
-lu
-ml
-jU
-ni
-nK
-oj
-oJ
-pq
-pO
-qr
-qN
-js
-rH
-dX
-dX
-dX
-dX
-dX
-dX
-af
-af
-ks
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-af
-fq
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-am
-af
-am
-am
-af
-zK
-oa
-te
-Au
-te
-yW
-af
-ag
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-am
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-af
-am
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-kp
-af
-af
-af
-af
-af
-af
-af
-FQ
-FZ
-Go
-GP
-Go
-HE
-Gq
-Gq
-HW
-IS
-HV
-HT
-JK
-HT
-GP
-Kz
-Gq
-Go
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(44,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-af
-ar
-aB
-aG
-aO
-bc
-br
-bI
-bY
-cC
-bE
-dK
-eo
-fh
-fF
-fG
-fG
-fI
-hm
-hS
-iA
-iB
-iC
-js
-jW
-nj
-nL
-dK
-js
-pr
-pP
-dK
-qO
-rl
-qL
-oa
-dX
-dX
-dX
-dX
-af
-af
-af
-ko
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-am
-am
-af
-af
-af
-fq
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-ks
-af
-af
-af
-fq
-af
-af
-af
-af
-dX
-af
-zU
-Ag
-te
-te
-yW
-AX
-AX
-yW
-yW
-yY
-yX
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-fq
-tN
-af
-af
-af
-af
-af
-al
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-ko
-am
-af
-am
-af
-af
-af
-af
-af
-Ga
-Gp
-GQ
-Hm
-HF
-HW
-Gq
-Gq
-IS
-Go
-GP
-Go
-GP
-Go
-Go
-KK
-Go
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(45,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-ak
-af
-ao
-ar
-aC
-aC
-aC
-az
-bt
-bJ
-bZ
-bp
-dk
-dK
-ep
-fh
-fF
-fG
-fG
-gy
-hn
-hR
-jY
-kJ
-lw
-jo
-js
-nk
-nM
-ok
-oK
-ps
-pQ
-qs
-pQ
-rm
-rH
-dX
-dX
-dX
-dX
-dX
-af
-dX
-dX
-ks
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-tN
-af
-tN
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-ak
-af
-ao
-yV
-oa
-dX
-yW
-yW
-Ah
-Av
-Lw
-yX
-AY
-jZ
-yX
-Bq
-BA
-yX
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-fq
-af
-af
-af
-af
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-fq
-af
-af
-ks
-af
-af
-af
-af
-af
-dX
-am
-dX
-Gb
-Gq
-Gq
-SX
-GR
-HW
-Gq
-GR
-IT
-IR
-Jr
-Gq
-Kc
-Kc
-Gq
-Gq
-Go
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(46,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-af
-ar
-aw
-aE
-aE
-bc
-br
-bs
-az
-cD
-dl
-dM
-eq
-fg
-fF
-gz
-fF
-hU
-iD
-jw
-fh
-kL
-lx
-mm
-jX
-jX
-jm
-hM
-oL
-pt
-pR
-dK
-qM
-rn
-rG
-af
-af
-af
-dX
-af
-af
-af
-af
-ko
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-af
-af
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-kp
-af
-af
-af
-ag
-af
-af
-yW
-zo
-zo
-yW
-zV
-Ai
-Aw
-zp
-AM
-AZ
-zp
-Bj
-zp
-BB
-yY
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-am
-af
-af
-am
-af
-tN
-fq
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-ko
-af
-af
-af
-dX
-af
-af
-af
-dX
-Gb
-Gq
-GR
-SX
-HG
-HX
-HX
-IF
-HW
-Gq
-Hm
-JL
-HW
-GR
-GR
-KL
-GP
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(47,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-am
-ag
-ar
-ax
-aI
-aE
-aE
-bp
-bs
-az
-cE
-dk
-dN
-dO
-dO
-dO
-dP
-dP
-dO
-dP
-dP
-dP
-kM
-ly
-dP
-dP
-nl
-nN
-nt
-nt
-nt
-nN
-nN
-nN
-oW
-qL
-fq
-am
-af
-af
-ak
-af
-af
-dX
-kp
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-am
-am
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-tN
-tN
-af
-af
-ao
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-ko
-af
-fq
-af
-af
-ae
-ae
-yX
-zp
-zx
-yX
-zW
-Aj
-Aj
-Ai
-AN
-Aj
-Bf
-yY
-Br
-BC
-yX
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-af
-af
-ag
-af
-am
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ks
-af
-af
-af
-af
-af
-af
-af
-FR
-FZ
-FZ
-Go
-Go
-GP
-GP
-Go
-HF
-Gq
-IW
-Js
-JM
-Gq
-Gq
-GR
-KM
-GP
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(48,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-af
-af
-af
-af
-ar
-aD
-aG
-aP
-bc
-bo
-bK
-az
-cF
-dm
-dO
-er
-ex
-fJ
-gA
-hp
-gA
-gA
-jx
-ka
-kb
-lz
-mn
-dO
-nm
-nO
-ol
-oM
-pu
-oM
-ol
-qP
-oW
-af
-af
-ak
-af
-sV
-af
-af
-af
-af
-ko
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-tq
-uv
-tT
-tW
-tW
-tW
-tW
-tW
-tW
-tq
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-af
-ko
-af
-af
-am
-af
-ae
-ae
-yY
-zq
-zy
-zL
-zX
-zp
-Ax
-AE
-Ai
-Ba
-zp
-yY
-yX
-yY
-yX
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-CS
-af
-af
-af
-CS
-af
-DW
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-am
-af
-af
-ko
-af
-am
-af
-af
-af
-af
-ao
-af
-mZ
-ae
-ae
-ae
-FZ
-HY
-Iu
-IG
-IS
-Go
-GP
-Go
-Go
-Kl
-KA
-KN
-GP
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(49,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ag
-af
-af
-af
-ar
-ar
-ar
-ar
-ar
-az
-az
-az
-aC
-aC
-dP
-es
-fi
-fK
-gB
-hq
-gA
-gA
-jy
-gA
-kN
-lA
-gA
-dO
-nn
-nP
-om
-oN
-om
-pS
-qt
-qQ
-ro
-rI
-dX
-dX
-dX
-af
-af
-am
-af
-af
-ko
-af
-af
-af
-af
-af
-am
-af
-af
-af
-am
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-am
-af
-af
-af
-am
-af
-dX
-te
-te
-te
-te
-te
-te
-te
-te
-dX
-af
-af
-af
-ak
-af
-am
-af
-af
-af
-af
-tN
-am
-af
-af
-af
-am
-af
-af
-am
-af
-af
-af
-af
-af
-am
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-ko
-ag
-af
-af
-ae
-ae
-ae
-yZ
-yX
-yY
-yX
-yX
-Ak
-Ay
-AF
-AO
-AO
-zp
-Bk
-Bs
-yX
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-ai
-Db
-Dm
-Db
-ai
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-Fd
-af
-kp
-ao
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-am
-Ga
-HF
-HW
-HW
-IU
-Go
-Jt
-JN
-GP
-Go
-KB
-Go
-Go
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(50,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-be
-bu
-bL
-ca
-cG
-dn
-dO
-et
-ex
-fL
-gC
-hr
-gA
-iE
-hp
-gC
-gD
-lB
-gC
-mO
-no
-nQ
-nQ
-nQ
-nQ
-nQ
-op
-qR
-rp
-rp
-rp
-sz
-rp
-af
-af
-af
-dX
-dX
-ko
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-ao
-af
-af
-ak
-af
-am
-af
-af
-af
-af
-af
-af
-ao
-af
-af
-dX
-te
-te
-te
-te
-te
-te
-te
-te
-dX
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-ag
-ku
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-yX
-yY
-yY
-yX
-AP
-yX
-yX
-Bl
-Bt
-yX
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-ii
-ii
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-am
-af
-ak
-af
-af
-af
-am
-af
-af
-af
-fq
-af
-al
-af
-ko
-af
-af
-am
-af
-af
-af
-af
-af
-Gc
-af
-am
-Hn
-Ga
-HF
-GR
-HW
-IV
-Go
-Ju
-Gq
-GP
-Gq
-Gq
-Kc
-KR
-Go
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(51,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-af
-af
-af
-ao
-am
-af
-ag
-bf
-bv
-bM
-cb
-cH
-do
-dP
-eu
-ex
-fM
-gD
-gA
-hV
-iF
-gD
-kb
-kO
-lC
-mo
-mP
-np
-nR
-on
-oO
-pv
-pT
-qu
-qS
-rp
-rJ
-rp
-sA
-rp
-rp
-rp
-ag
-dX
-dX
-ko
-af
-af
-am
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-dX
-te
-te
-te
-te
-te
-te
-te
-te
-dX
-af
-af
-af
-af
-af
-af
-af
-ao
-af
-am
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-am
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-yW
-AG
-AQ
-Bb
-yX
-Bm
-Bu
-yY
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-ii
-tI
-ii
-aj
-aj
-aj
-aj
-ai
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-ao
-af
-af
-ao
-af
-af
-af
-ae
-FZ
-HZ
-HX
-QX
-IW
-Jj
-Gq
-JO
-Go
-Gq
-Gq
-HW
-KL
-Go
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(52,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-bf
-bw
-bN
-cc
-cI
-cb
-dP
-ev
-ex
-fN
-gA
-hs
-gA
-iG
-hs
-gD
-kP
-lB
-gA
-mO
-nq
-nS
-oo
-oP
-pw
-pw
-oP
-qT
-rq
-rK
-sg
-sB
-sM
-sW
-tg
-dX
-dX
-dX
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ao
-af
-am
-af
-af
-af
-af
-af
-am
-af
-af
-af
-ao
-af
-af
-af
-af
-ak
-af
-af
-dX
-te
-te
-te
-te
-te
-te
-te
-te
-dX
-af
-am
-af
-af
-af
-am
-am
-af
-af
-af
-af
-ak
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-ak
-af
-ae
-ae
-ae
-ae
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ae
-ae
-yW
-AH
-AQ
-AQ
-yW
-yY
-yX
-yY
-ae
-ae
-ai
-ai
-ai
-ai
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-ii
-tI
-tI
-aj
-aj
-tI
-tI
-tI
-Ch
-tI
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-Gr
-ae
-ae
-GP
-Go
-Iv
-IH
-Iv
-GP
-GP
-GP
-Go
-JL
-HW
-Gq
-KM
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(53,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-af
-af
-af
-af
-af
-ak
-ao
-bf
-bf
-bf
-cd
-cJ
-dp
-dp
-ew
-ex
-fJ
-gA
-ht
-hW
-iH
-jz
-kc
-iH
-lD
-hV
-dO
-nr
-nT
-op
-oP
-px
-pU
-nS
-qU
-rr
-rL
-rr
-sC
-rp
-rp
-rp
-dX
-af
-af
-ko
-af
-af
-af
-af
-af
-am
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-am
-af
-af
-tq
-tU
-tX
-tX
-tX
-tX
-tX
-tX
-tX
-tq
-af
-af
-af
-af
-am
-am
-am
-fq
-af
-am
-af
-af
-af
-af
-af
-am
-af
-af
-am
-am
-af
-am
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-ag
-ae
-ae
-ae
-ae
-ai
-yg
-yg
-yg
-yg
-yg
-ai
-ae
-ae
-yW
-yW
-AR
-AQ
-yW
-ae
-ae
-ae
-ae
-ae
-ai
-yg
-yg
-ai
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-tI
-aj
-aj
-aj
-aj
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-wS
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-lS
-sN
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-FZ
-Iw
-Gq
-IX
-GP
-Jv
-Jv
-Jv
-Gq
-HW
-HW
-KM
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(54,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ag
-af
-af
-af
-af
-af
-af
-af
-ag
-bf
-ce
-cK
-dq
-dQ
-ex
-ex
-fO
-gA
-hu
-gA
-gA
-hp
-kd
-gA
-lB
-mp
-dO
-ns
-nU
-oq
-oQ
-py
-pV
-nS
-qV
-rp
-rp
-rp
-rp
-rp
-af
-af
-af
-am
-dX
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-aj
-aj
-aj
-ai
-yg
-yg
-yg
-yg
-yg
-ai
-ae
-ae
-ae
-aj
-tI
-tI
-aj
-aj
-ae
-ae
-wQ
-wQ
-ai
-yg
-za
-ai
-wS
-wQ
-aj
-aj
-ai
-aj
-aj
-aj
-aj
-wS
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-tI
-ii
-ii
-ii
-ii
-tI
-tI
-ii
-ii
-tI
-tI
-tI
-wS
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-ag
-am
-af
-af
-af
-af
-af
-ko
-Fg
-Fj
-am
-ao
-af
-am
-af
-af
-af
-dX
-af
-af
-dX
-dX
-Ia
-Gq
-Gq
-Ix
-GP
-Jw
-JP
-JP
-Km
-JP
-KO
-KV
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(55,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-af
-am
-af
-af
-af
-af
-af
-af
-af
-bf
-cf
-cL
-dr
-cd
-cd
-dp
-dP
-dO
-hv
-hv
-hv
-hv
-dO
-dP
-lE
-mq
-dO
-nt
-nN
-nN
-nN
-nN
-pW
-qv
-qW
-rs
-rM
-Zj
-Zj
-af
-fq
-af
-af
-af
-af
-ko
-am
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-fq
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-ae
-ae
-ae
-aj
-an
-xS
-ai
-yf
-yf
-za
-yg
-yg
-ai
-aj
-ai
-aj
-aj
-AS
-tI
-Bc
-aj
-ae
-wS
-wS
-wS
-ai
-yf
-yt
-ai
-wS
-wS
-aj
-tI
-Ch
-tI
-tI
-tI
-tI
-wS
-ai
-wS
-wS
-aj
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-ii
-ii
-Dn
-tI
-tI
-wS
-wS
-tI
-tI
-tI
-tI
-wS
-wS
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-ag
-af
-am
-af
-ko
-Fh
-Fj
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-dX
-dX
-oa
-Ia
-Gq
-II
-IY
-Go
-Jx
-KP
-KP
-Kn
-KP
-KP
-KT
-Go
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(56,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-bf
-cg
-cM
-ds
-dR
-ey
-cd
-fP
-gE
-hw
-hX
-iI
-jA
-ke
-kQ
-lF
-mr
-mQ
-nu
-nV
-or
-oR
-nt
-pX
-qw
-qX
-rs
-rN
-si
-oW
-am
-af
-am
-af
-dX
-dX
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fq
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-ag
-ae
-ae
-ae
-aj
-ii
-ii
-yb
-an
-yf
-yt
-yf
-ai
-ai
-aj
-Al
-tx
-aj
-aj
-Bc
-Bc
-wS
-ae
-wS
-wS
-wS
-BJ
-xL
-ys
-BU
-an
-wS
-aj
-wS
-wS
-wS
-tI
-tI
-tI
-tI
-Ch
-tI
-tI
-aj
-wQ
-wQ
-ae
-ae
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-wS
-ai
-wS
-aj
-wS
-wS
-tI
-tI
-ii
-ii
-tI
-tI
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-ko
-Fg
-Fj
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-dX
-dX
-Ia
-Ix
-Gq
-Gq
-Go
-Jx
-KP
-KP
-KP
-KP
-KP
-KT
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(57,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-af
-af
-af
-af
-af
-af
-ao
-af
-af
-bf
-ch
-cN
-dt
-dS
-ez
-fj
-fQ
-gF
-fQ
-hY
-hY
-fQ
-hY
-hY
-lG
-hx
-mt
-nv
-nV
-iJ
-iJ
-nt
-pY
-pV
-qY
-oW
-oW
-oW
-oW
-ag
-af
-af
-af
-dX
-dX
-ko
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-ae
-ae
-ae
-ae
-wQ
-wS
-tI
-tI
-yc
-yn
-yH
-zc
-an
-an
-zM
-ii
-tx
-tx
-tx
-aj
-tI
-AS
-wS
-wS
-wS
-tI
-wS
-Bv
-BN
-BS
-BV
-an
-BZ
-Ce
-wS
-wS
-wS
-wS
-tI
-tI
-tI
-tI
-tI
-tI
-aj
-wS
-ai
-wS
-wS
-wS
-wS
-wS
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-wQ
-wQ
-wQ
-ae
-wQ
-wS
-aj
-aj
-tI
-tI
-tI
-tI
-tI
-tI
-wS
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ko
-Fh
-Fj
-af
-af
-af
-ao
-af
-af
-af
-am
-af
-af
-af
-ae
-FZ
-Iy
-Iy
-Iy
-Go
-Jy
-KP
-KP
-KP
-KP
-KP
-KU
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(58,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-bf
-ci
-cO
-du
-dT
-eA
-cd
-fR
-gG
-hx
-gI
-iJ
-gI
-gH
-kR
-lH
-ms
-mt
-nw
-nW
-iJ
-oS
-nt
-pZ
-qx
-qZ
-ru
-rO
-rN
-Zj
-am
-am
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-ak
-af
-af
-am
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wS
-wS
-ii
-tI
-yd
-yo
-yI
-zd
-an
-ii
-ij
-tI
-tI
-tI
-tx
-tx
-tI
-wS
-wS
-wS
-tI
-tx
-tI
-ii
-ii
-ii
-ii
-ii
-Ca
-Ca
-aj
-aj
-wS
-wS
-tx
-tx
-tx
-tI
-tI
-tI
-Cj
-tI
-Cm
-tI
-tI
-tI
-tI
-aj
-wS
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-AT
-tI
-tI
-ii
-ii
-tI
-wS
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-ko
-Fh
-Fj
-am
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-Go
-Go
-GP
-GP
-GP
-Jx
-KP
-KP
-KP
-KP
-KP
-KT
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(59,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ag
-af
-af
-af
-af
-af
-af
-af
-ag
-bf
-cj
-cP
-dv
-ch
-eB
-fk
-fR
-gH
-gH
-gH
-gH
-gJ
-kf
-iJ
-lI
-mt
-hx
-nx
-nW
-ot
-oT
-nN
-qa
-qy
-ra
-rs
-rN
-rN
-Zj
-am
-am
-af
-af
-dX
-af
-ko
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-vH
-am
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-fq
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-wS
-wS
-an
-ii
-tI
-wS
-wS
-yJ
-zd
-an
-ii
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-wS
-ai
-wS
-tI
-tx
-tx
-tI
-tI
-tI
-BW
-tI
-aj
-aj
-aj
-aj
-wS
-wS
-tx
-tx
-tx
-tx
-tI
-tI
-Ck
-BW
-Cn
-Cp
-tI
-Cp
-tI
-tI
-wS
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-ai
-wS
-wS
-ii
-ii
-BX
-ai
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ko
-af
-af
-af
-am
-af
-af
-af
-am
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Go
-Jx
-KP
-KP
-KP
-KP
-KP
-KT
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(60,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-bf
-cj
-cQ
-dw
-dU
-dr
-fl
-fS
-gI
-gH
-gI
-gJ
-gG
-kg
-kS
-lH
-kR
-iJ
-ny
-nV
-iJ
-oU
-nN
-qb
-qz
-qY
-oW
-oW
-rN
-Zj
-am
-am
-af
-dX
-dX
-fq
-ko
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-af
-af
-am
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-am
-am
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-fq
-af
-af
-af
-af
-mZ
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-an
-an
-ii
-ii
-wS
-wS
-yK
-ze
-an
-ii
-tI
-ii
-ii
-ii
-ii
-ii
-tI
-ii
-yb
-ii
-ii
-tI
-ii
-ii
-ii
-ii
-tI
-BX
-ai
-wS
-wS
-aj
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tI
-Ck
-ii
-tI
-BW
-ii
-ii
-tI
-Cp
-aj
-aj
-wS
-wQ
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-tI
-tI
-tI
-wS
-wS
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Fi
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Go
-Jz
-JU
-JU
-Ko
-JU
-JU
-TP
-GP
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(61,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-af
-af
-am
-af
-af
-ak
-bf
-ck
-cR
-ds
-dV
-eC
-cd
-fT
-gJ
-hy
-gH
-iK
-gH
-hz
-hy
-lJ
-mu
-mR
-nz
-nX
-ou
-oV
-nt
-qc
-qA
-qZ
-ru
-rQ
-rN
-Zj
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-fq
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-am
-am
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-am
-ae
-ae
-ae
-ae
-tG
-aj
-aj
-an
-an
-an
-an
-an
-ii
-tx
-ii
-ii
-ii
-ii
-ii
-tI
-ii
-ii
-ii
-ii
-tI
-tI
-tI
-ii
-ii
-ii
-ii
-ii
-ii
-ii
-tI
-tI
-wS
-wS
-aj
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-ii
-Cj
-ii
-wS
-wS
-wS
-wS
-ai
-Cu
-tI
-tI
-wS
-wQ
-wQ
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wQ
-wS
-tI
-tI
-tI
-tI
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-af
-dX
-dX
-af
-af
-af
-dX
-dX
-dX
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Go
-Go
-GP
-GP
-GP
-Go
-GP
-Go
-Go
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(62,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-bf
-cl
-cS
-dr
-dW
-eD
-cd
-fU
-gK
-hz
-gG
-iJ
-gI
-hz
-gI
-lK
-ms
-kf
-nA
-nY
-ov
-oV
-nN
-qd
-qB
-rb
-rs
-rN
-rN
-Zj
-ag
-af
-af
-af
-lS
-iY
-sN
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-am
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-aj
-an
-xk
-xk
-xC
-xC
-xk
-xk
-ii
-tx
-tI
-tI
-tI
-tI
-tx
-tx
-tI
-tI
-tI
-tI
-tI
-tI
-tx
-tI
-tI
-tI
-tx
-tI
-tI
-ii
-ii
-tI
-Cf
-aj
-aj
-aj
-aj
-tx
-tx
-tx
-tI
-tI
-ii
-wS
-wS
-aj
-wS
-wS
-wS
-wS
-tI
-Cp
-Cp
-ai
-aj
-wS
-wS
-wS
-wS
-ae
-ae
-ae
-wQ
-wQ
-wQ
-ae
-ae
-wQ
-wQ
-wS
-tI
-ii
-ii
-tI
-wS
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-Fm
-te
-dX
-dX
-ak
-am
-dX
-te
-Gs
-tq
-tq
-tq
-tq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(63,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-bf
-bf
-bf
-bf
-bf
-bf
-bf
-fV
-gL
-hA
-ib
-iL
-jB
-iL
-iL
-lL
-mv
-hx
-nA
-fW
-fW
-oW
-nt
-qe
-qC
-oW
-oW
-oW
-Zj
-Zj
-af
-af
-dX
-af
-ko
-af
-af
-dX
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-am
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-uq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-xa
-xl
-xl
-xl
-xK
-xl
-xl
-an
-ii
-ii
-wS
-tI
-tx
-tx
-tx
-tI
-tI
-tI
-tI
-ii
-ii
-ii
-ii
-ii
-tI
-tI
-tI
-tI
-tI
-tI
-ii
-tI
-tI
-ii
-tI
-ii
-ii
-tI
-tI
-ii
-tI
-BX
-ai
-wS
-aj
-tx
-tx
-tI
-tI
-tI
-tI
-ii
-Cy
-ii
-ii
-tI
-tI
-wS
-ae
-ae
-ae
-wS
-wS
-wS
-ai
-aj
-wS
-wS
-wS
-aj
-ii
-ii
-tI
-wS
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-Fn
-Fs
-Fx
-FE
-FI
-FI
-FE
-Fx
-Fy
-GS
-Ho
-Ho
-tq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(64,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-af
-fm
-fW
-fW
-fW
-fW
-fW
-fW
-fW
-fW
-fW
-fW
-fW
-fW
-fW
-jC
-oX
-pz
-qf
-qD
-oW
-af
-ag
-af
-af
-af
-dX
-lS
-iY
-sN
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-xa
-xl
-xl
-xl
-xl
-xl
-xl
-yp
-ii
-wS
-wS
-tI
-tx
-tx
-tx
-tI
-tI
-AT
-tI
-ii
-an
-an
-an
-ii
-ii
-ii
-ij
-tI
-tI
-tI
-tI
-tx
-tx
-tx
-tI
-ii
-ii
-AT
-tI
-tI
-tI
-tI
-wS
-wS
-aj
-tx
-tx
-tx
-tx
-tI
-tI
-tI
-tI
-tI
-Cz
-tx
-tI
-wS
-aj
-ai
-aj
-aj
-tI
-tI
-Ch
-ii
-tI
-tI
-tI
-ii
-ii
-tI
-tI
-wS
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-Fo
-Ft
-te
-dX
-af
-af
-dX
-te
-Gt
-GT
-Hp
-Ho
-tq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(65,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-ag
-af
-af
-af
-af
-am
-jC
-iM
-kT
-hB
-mw
-kT
-iM
-iM
-jD
-oW
-oW
-oW
-oW
-oW
-af
-ao
-af
-af
-af
-dX
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-ai
-xb
-xl
-xl
-xl
-xl
-xl
-xl
-yq
-ii
-wS
-wS
-wS
-tI
-tx
-Am
-Az
-wS
-ai
-wS
-wS
-wS
-Bv
-xT
-an
-xE
-xL
-xT
-Az
-Am
-Am
-tx
-Cg
-tx
-tI
-tI
-tI
-tI
-ai
-aj
-wS
-wS
-wS
-aj
-ae
-aj
-aj
-aj
-wS
-wS
-wS
-aj
-tx
-tx
-tI
-tI
-CB
-Cz
-tx
-tx
-Al
-aj
-aj
-tI
-ii
-tI
-aj
-aj
-tI
-tI
-ii
-Dn
-tI
-tI
-wS
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-Fp
-Ft
-te
-dX
-dX
-af
-dX
-te
-Gu
-tq
-tq
-tq
-tq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(66,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-gM
-hB
-hB
-iM
-jD
-ak
-am
-am
-af
-am
-af
-af
-am
-ag
-ao
-af
-af
-af
-af
-af
-am
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-ai
-xb
-xl
-xl
-xl
-xl
-xl
-xl
-yq
-an
-ii
-tI
-tI
-tI
-tI
-Am
-Az
-wS
-wQ
-wQ
-wQ
-wS
-Bw
-ys
-ye
-BI
-BK
-xM
-Az
-Az
-Am
-wS
-ai
-wS
-wS
-wS
-aj
-wS
-wS
-wS
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-wQ
-wQ
-wQ
-aj
-tx
-tx
-tx
-tI
-vQ
-CF
-tx
-tx
-tx
-aj
-tI
-tI
-ii
-tI
-aj
-aj
-tI
-tI
-tI
-ai
-aj
-aj
-wS
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-Fq
-Ft
-te
-te
-dX
-ao
-dX
-te
-Gv
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(67,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-af
-af
-ak
-af
-ao
-af
-af
-af
-al
-af
-af
-af
-af
-af
-gN
-ak
-af
-af
-af
-ag
-am
-am
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-dX
-dX
-ko
-af
-af
-fq
-af
-ao
-af
-af
-am
-af
-af
-af
-fq
-af
-am
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-af
-af
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-uq
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-xa
-xl
-xl
-xl
-xl
-xl
-xl
-yr
-an
-ii
-ii
-ii
-ii
-tI
-Am
-Az
-wS
-wQ
-wQ
-wQ
-wS
-ai
-yt
-yf
-ai
-aj
-aj
-aj
-wS
-wS
-wS
-wS
-wQ
-wQ
-wQ
-ae
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wQ
-wS
-wS
-wS
-ai
-CA
-tI
-CG
-vQ
-Dc
-ii
-ii
-ii
-tI
-wS
-wS
-aj
-aj
-aj
-wS
-wS
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-Fn
-Fu
-Fy
-te
-dX
-af
-dX
-te
-Gu
-tq
-tq
-tq
-tq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(68,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-gN
-ag
-fY
-fY
-fY
-fY
-fY
-fY
-fY
-fY
-fY
-dX
-af
-af
-dX
-dX
-dX
-dX
-af
-dX
-dX
-dX
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-af
-af
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-xa
-xl
-xl
-xl
-xl
-xl
-xl
-yp
-an
-an
-an
-an
-an
-zY
-aj
-wS
-wS
-ae
-ae
-wQ
-wQ
-ai
-yu
-yg
-ai
-ae
-ae
-ae
-wQ
-wQ
-wQ
-wQ
-wQ
-wQ
-wQ
-ae
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wQ
-wS
-wS
-wS
-wS
-aj
-aj
-wS
-wS
-ai
-Do
-ii
-Dd
-tI
-wS
-ae
-wQ
-ae
-ae
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-tq
-Fp
-Ft
-te
-dX
-af
-dX
-te
-Gw
-GS
-Ho
-Ho
-tq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(69,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fX
-gO
-hC
-ic
-iN
-hT
-kh
-kU
-lM
-mx
-mS
-Yn
-dX
-dX
-af
-af
-dX
-af
-af
-dX
-af
-af
-af
-af
-lS
-sN
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-al
-af
-tN
-tN
-tN
-tN
-af
-af
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-an
-xp
-xp
-xD
-xD
-xp
-xp
-an
-gT
-an
-an
-an
-an
-zY
-aj
-wQ
-wQ
-ae
-ae
-ae
-ae
-ai
-yg
-yg
-ai
-ae
-ae
-ae
-ae
-wQ
-wQ
-wQ
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wQ
-wS
-tI
-wS
-wS
-aj
-tI
-tI
-tI
-tI
-tI
-Dv
-DF
-ai
-aj
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-Fp
-Fz
-Fx
-FE
-FI
-FE
-Fx
-Fu
-GT
-Hp
-Ho
-tq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(70,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fY
-gP
-hD
-id
-iO
-iW
-ki
-kV
-lN
-my
-mT
-Yn
-dX
-dX
-af
-af
-dX
-dX
-af
-af
-af
-af
-af
-af
-ko
-am
-am
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-tA
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-af
-fq
-af
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-aj
-aj
-an
-an
-an
-an
-an
-an
-an
-zf
-zf
-zz
-zN
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ai
-ai
-ai
-ai
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wQ
-wS
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-Dd
-Cp
-tI
-Dd
-tI
-CF
-tI
-wS
-vQ
-vQ
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-tq
-tq
-tq
-af
-dX
-af
-dX
-te
-Gs
-tq
-tq
-tq
-tq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(71,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-am
-af
-af
-af
-ao
-af
-am
-af
-af
-fY
-gQ
-hE
-ie
-iP
-jF
-kj
-kW
-id
-ld
-mU
-fY
-dX
-af
-af
-af
-fq
-af
-af
-dX
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-jc
-af
-af
-af
-am
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-uq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-wS
-xE
-xL
-xT
-an
-xE
-yL
-wS
-wS
-ai
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-tI
-an
-vQ
-DL
-vQ
-Dw
-Ei
-Dw
-wS
-wS
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-dX
-dX
-dX
-dX
-Fj
-HI
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(72,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fY
-gR
-hE
-if
-iQ
-jG
-kk
-kX
-ie
-mz
-mz
-fY
-af
-af
-ak
-af
-af
-af
-af
-af
-am
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-tN
-tN
-tN
-tN
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wS
-wS
-xF
-xM
-xU
-ye
-ys
-yM
-wS
-wQ
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-Dw
-CG
-an
-Dw
-an
-Dw
-an
-vQ
-an
-CC
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-mZ
-af
-ak
-af
-af
-af
-Fj
-Hq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(73,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-ak
-af
-af
-af
-af
-ao
-af
-ag
-fY
-gS
-hE
-id
-iR
-jH
-ie
-kY
-id
-ju
-mV
-fY
-ag
-af
-fq
-af
-af
-dX
-af
-dX
-af
-af
-af
-lS
-sN
-af
-af
-af
-af
-af
-am
-am
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-wS
-wS
-ai
-yf
-yt
-ai
-aj
-ae
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-CC
-vQ
-vQ
-DM
-wS
-vQ
-vQ
-vQ
-an
-CC
-CC
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-am
-af
-Hq
-Hq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(74,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fY
-fY
-fY
-fY
-iS
-jI
-id
-kZ
-lO
-mB
-mW
-fY
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wQ
-ai
-yg
-yu
-ai
-ae
-ae
-wQ
-wQ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-CC
-CC
-an
-DN
-an
-vQ
-an
-wS
-aj
-CC
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-iY
-iY
-FS
-iY
-FS
-iY
-Hr
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(75,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-dX
-fY
-iT
-jJ
-ie
-la
-lP
-mC
-mX
-fY
-af
-am
-af
-fq
-dX
-af
-af
-af
-af
-al
-af
-ko
-af
-fq
-af
-am
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-ak
-af
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-af
-am
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-uq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ai
-yg
-yg
-ai
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-CC
-CC
-Dp
-an
-an
-an
-wS
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-am
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(76,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-ao
-af
-af
-af
-ak
-af
-eE
-eE
-eE
-eE
-af
-fY
-iU
-jH
-id
-id
-lQ
-id
-ie
-fY
-nZ
-af
-af
-af
-af
-af
-dX
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ai
-ai
-ai
-ai
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-CC
-DO
-an
-DP
-CC
-aj
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-ak
-af
-am
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(77,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-eE
-fn
-fZ
-eE
-af
-fY
-iV
-jK
-jK
-lb
-lR
-hE
-mY
-nB
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-am
-lS
-sN
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-CC
-CC
-CC
-DP
-DX
-DO
-CC
-an
-an
-an
-an
-CC
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-fq
-af
-af
-ak
-af
-fq
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(78,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-eF
-fo
-ga
-eE
-ag
-fY
-iW
-jL
-kl
-lc
-hE
-jL
-iW
-nB
-dX
-dX
-af
-af
-dX
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-am
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-am
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-an
-CC
-an
-DY
-Dp
-CC
-an
-an
-an
-an
-CC
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-al
-am
-af
-af
-af
-mZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(79,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-am
-af
-af
-eE
-fp
-gb
-eE
-af
-fY
-iW
-iW
-iW
-iW
-iW
-hE
-hE
-nB
-oa
-dX
-dX
-af
-af
-af
-dX
-am
-af
-af
-ko
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-am
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-uq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wQ
-wQ
-wS
-aj
-an
-CC
-Dp
-DZ
-an
-CC
-El
-an
-an
-EE
-CC
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(80,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-eE
-eE
-eE
-eE
-af
-fY
-iX
-jM
-km
-ld
-iW
-hE
-hE
-nB
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-al
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-wp
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wS
-wS
-an
-Dx
-CC
-DH
-DG
-DH
-CC
-Em
-Dp
-an
-EF
-CC
-AJ
-Cr
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-am
-af
-af
-fq
-af
-af
-af
-vH
-am
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(81,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-ag
-af
-af
-af
-ag
-dX
-af
-af
-ak
-af
-fY
-fY
-fY
-fY
-fY
-fY
-fY
-fY
-fY
-nZ
-af
-af
-af
-af
-af
-af
-ak
-af
-lS
-kt
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fq
-am
-am
-af
-fq
-af
-af
-af
-al
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-am
-af
-af
-am
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-Aa
-Aa
-Aa
-Aa
-Aa
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-vH
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wS
-an
-an
-Dy
-PR
-CX
-CX
-CX
-OF
-En
-Es
-Dp
-EE
-CC
-zh
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-se
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(82,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-dX
-af
-dX
-af
-af
-ag
-af
-af
-af
-af
-ag
-af
-af
-af
-fq
-af
-dX
-dX
-af
-af
-af
-ko
-af
-af
-am
-af
-af
-af
-af
-af
-ak
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-am
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-uq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-zZ
-Aa
-zD
-zD
-AU
-Aa
-Aa
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-am
-am
-af
-ag
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-wS
-an
-Dp
-Dz
-DH
-CX
-Ea
-Ef
-DH
-Eo
-Et
-Dp
-EG
-CC
-zh
-af
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-ag
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(83,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-fq
-af
-af
-fq
-dX
-af
-af
-af
-dX
-am
-af
-af
-dX
-af
-af
-af
-af
-dX
-dX
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-am
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-fq
-mZ
-am
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-Aa
-zD
-AA
-zD
-zD
-zD
-Aa
-af
-af
-Aa
-Aa
-Aa
-Aa
-Aa
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-af
-ag
-am
-af
-ag
-af
-ae
-ae
-ae
-CC
-CC
-CC
-CC
-CC
-CC
-CC
-CV
-CJ
-CX
-CC
-CC
-CC
-CC
-CC
-CC
-ET
-zh
-af
-af
-Cq
-af
-ae
-ae
-ae
-Ct
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-vH
-af
-af
-am
-af
-am
-af
-ak
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(84,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-am
-af
-ko
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-jc
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-fq
-am
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-fq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Aa
-zD
-zD
-AI
-zD
-zD
-Aa
-af
-zZ
-Aa
-zD
-zD
-AV
-Aa
-Aa
-ae
-ae
-ae
-ae
-eM
-af
-af
-mZ
-af
-af
-af
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-am
-af
-af
-Co
-af
-af
-AJ
-CC
-CH
-CH
-De
-CH
-CH
-DH
-CX
-Eb
-Ef
-DH
-CH
-Eu
-Ez
-EH
-EN
-CC
-zh
-af
-af
-af
-af
-ag
-zh
-Cv
-Cv
-EZ
-Ct
-ae
-ae
-ae
-ae
-ae
-af
-ag
-af
-af
-af
-am
-af
-af
-fq
-am
-fq
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(85,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-fq
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-am
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-al
-am
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Aa
-zD
-zD
-zD
-zD
-zD
-Aa
-am
-Aa
-zD
-zD
-zD
-zD
-zD
-Aa
-af
-af
-ao
-yv
-af
-af
-ak
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-fq
-ak
-am
-af
-fq
-af
-af
-af
-af
-zh
-CC
-CI
-CT
-Df
-Di
-DA
-DI
-DQ
-Ea
-CX
-Ej
-Ep
-Di
-Di
-Di
-EO
-CC
-AJ
-af
-Cw
-af
-af
-af
-zh
-zh
-Cv
-Ct
-Ct
-ae
-ae
-ae
-ae
-af
-af
-af
-am
-af
-af
-am
-af
-af
-af
-af
-af
-am
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(86,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-af
-af
-am
-ko
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-fq
-am
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-fq
-mZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Aa
-Aa
-zD
-zD
-zD
-Aa
-Aa
-af
-Aa
-zD
-zD
-AI
-zD
-zD
-Aa
-ag
-af
-af
-yv
-af
-af
-af
-af
-am
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-zh
-CC
-CJ
-CU
-Dg
-Dq
-DB
-DJ
-DR
-Dq
-Eg
-Ek
-DR
-DB
-EA
-EI
-EP
-CC
-zh
-af
-af
-af
-af
-af
-zh
-zh
-zh
-zh
-zh
-af
-af
-ag
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-fq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(87,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-af
-af
-af
-ko
-af
-af
-af
-al
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-ak
-af
-af
-af
-af
-am
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-Aa
-Aa
-zD
-Aa
-Aa
-af
-af
-Aa
-zD
-zD
-zD
-AA
-zD
-Aa
-af
-af
-af
-yv
-am
-af
-fq
-af
-af
-af
-af
-af
-af
-am
-af
-fq
-Co
-af
-af
-af
-af
-Co
-af
-af
-am
-af
-AJ
-CC
-CK
-CV
-Dh
-Dr
-DC
-DK
-DC
-DC
-DC
-Ej
-Eq
-Ev
-EB
-EJ
-EH
-CC
-zh
-af
-Co
-Co
-af
-af
-af
-zh
-zh
-zh
-zh
-af
-af
-ak
-af
-af
-fq
-am
-af
-af
-af
-al
-ak
-am
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(88,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-am
-af
-ae
-ae
-ae
-ae
-ae
-af
-yv
-ae
-ae
-af
-ag
-af
-Aa
-zD
-Aa
-af
-af
-ag
-Aa
-Aa
-zD
-zD
-zD
-Aa
-Aa
-af
-af
-am
-yv
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-am
-af
-af
-am
-af
-af
-af
-af
-af
-zh
-CC
-CL
-CW
-Di
-Ds
-Di
-CC
-CX
-Ec
-CX
-CC
-Di
-Ew
-Ep
-EK
-EQ
-CC
-ag
-af
-af
-af
-af
-af
-af
-zh
-zh
-zh
-zh
-af
-am
-af
-af
-am
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-eM
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(89,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-dX
-dX
-af
-af
-af
-af
-ko
-fq
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-fq
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-fq
-af
-af
-af
-af
-am
-af
-af
-fq
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-ag
-af
-af
-af
-ag
-am
-yv
-af
-ag
-af
-af
-af
-Aa
-Ao
-Aa
-af
-af
-af
-af
-Aa
-Aa
-zD
-Aa
-Aa
-af
-af
-af
-af
-yv
-yv
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-Cw
-af
-af
-af
-af
-CC
-CM
-CX
-Dj
-Dt
-DD
-CC
-DT
-Ed
-DT
-CC
-Er
-Ex
-EC
-Dk
-ER
-CC
-af
-af
-ao
-af
-af
-af
-af
-af
-zh
-zh
-zh
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-vH
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(90,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-af
-dX
-dX
-af
-af
-af
-af
-ko
-af
-af
-fq
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-am
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fq
-af
-am
-af
-af
-af
-af
-af
-yv
-af
-af
-fq
-af
-am
-AB
-AJ
-zs
-af
-am
-af
-af
-af
-Aa
-zD
-Aa
-af
-ag
-af
-fq
-af
-af
-yv
-af
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-Ct
-af
-af
-CC
-CN
-CY
-Dk
-CC
-CC
-CC
-DU
-DU
-DU
-CC
-CC
-CC
-ED
-EL
-ES
-CC
-af
-af
-Ct
-Ct
-af
-af
-af
-af
-zh
-zh
-zh
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(91,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ah
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-ko
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-fq
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-al
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-ao
-af
-yv
-yv
-af
-af
-af
-af
-af
-AB
-zh
-zs
-af
-af
-af
-am
-af
-Aa
-Ao
-Aa
-af
-af
-af
-af
-ao
-af
-yv
-yv
-af
-af
-af
-af
-fq
-ak
-af
-af
-am
-af
-af
-af
-af
-af
-Cq
-af
-af
-af
-zh
-af
-ag
-CC
-CO
-CZ
-CZ
-CD
-AJ
-CC
-DV
-Ee
-Eh
-CC
-AJ
-CC
-CH
-EM
-CH
-CC
-zh
-af
-Cv
-zh
-af
-ao
-af
-af
-af
-zh
-zh
-af
-am
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(92,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ai
-aj
-aj
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ae
-ae
-ig
-iY
-iY
-kn
-af
-af
-af
-af
-af
-af
-af
-dX
-dX
-dX
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fq
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-am
-af
-af
-af
-yv
-af
-af
-am
-af
-ak
-ao
-AB
-zh
-zh
-zA
-zA
-zr
-af
-af
-AB
-AJ
-zs
-af
-af
-am
-ak
-af
-af
-af
-yv
-fq
-am
-af
-af
-af
-af
-am
-af
-af
-fq
-af
-af
-vH
-af
-af
-am
-af
-af
-zh
-af
-ao
-CD
-CP
-CP
-CP
-Du
-DE
-zh
-zh
-AJ
-zh
-zh
-zh
-CD
-CP
-CP
-CP
-CC
-AJ
-af
-zh
-zh
-af
-Ct
-af
-af
-af
-zh
-zh
-af
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(93,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-aj
-ap
-as
-ap
-ap
-aj
-aj
-ap
-ap
-ap
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-dX
-dX
-dX
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-fq
-ak
-am
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-am
-af
-yv
-zg
-zr
-af
-af
-af
-An
-zh
-zh
-zB
-zB
-Bg
-zh
-zA
-zA
-zh
-zh
-zs
-af
-af
-af
-zF
-af
-fq
-af
-yv
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-zh
-af
-af
-CE
-CQ
-Da
-Dl
-AJ
-zh
-DE
-zh
-zh
-zh
-DE
-AJ
-Ey
-CQ
-Da
-Dl
-CC
-zh
-Cq
-zh
-zh
-af
-zh
-Cr
-af
-ao
-zh
-zh
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-ag
-am
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(94,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-an
-ap
-aj
-ap
-ap
-ap
-ap
-ap
-ap
-aj
-as
-dx
-dx
-eG
-eG
-ap
-ai
-ai
-ai
-ai
-af
-kp
-af
-af
-af
-af
-af
-dX
-af
-af
-dX
-dX
-dX
-dX
-af
-lS
-kt
-af
-al
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-tF
-tF
-tF
-tF
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-yN
-yN
-zh
-zA
-zA
-Ab
-zB
-zB
-zO
-af
-af
-af
-Bn
-zB
-zh
-zh
-zh
-BL
-af
-am
-af
-af
-af
-af
-af
-yv
-af
-tF
-tF
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-zh
-af
-af
-AJ
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-AJ
-zh
-zh
-af
-zh
-zh
-af
-zh
-af
-af
-af
-zh
-af
-af
-af
-af
-af
-am
-af
-af
-fq
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(95,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-aj
-an
-an
-an
-aj
-aj
-an
-an
-aj
-an
-ap
-ap
-ap
-eG
-eG
-ap
-ap
-as
-ih
-iZ
-dX
-ko
-af
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-dX
-af
-kp
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-tF
-tF
-tN
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-fq
-tF
-tF
-tF
-tF
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-yN
-zh
-zh
-zB
-zO
-af
-af
-af
-af
-af
-af
-tF
-af
-af
-Bn
-zh
-zh
-zs
-af
-af
-af
-af
-am
-af
-af
-tF
-tF
-tF
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-ao
-af
-Cr
-Ct
-Ct
-Ct
-af
-Cq
-Co
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-zh
-zh
-af
-zh
-af
-af
-af
-af
-af
-am
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-am
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(96,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-aj
-aj
-at
-an
-an
-an
-an
-an
-aj
-an
-cT
-an
-an
-eH
-an
-ap
-gT
-an
-ii
-ii
-dX
-kq
-dX
-dX
-af
-dX
-af
-af
-dX
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-af
-af
-tF
-tF
-tF
-tF
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-tN
-af
-tF
-tF
-tF
-tF
-tF
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-ao
-af
-am
-af
-yN
-yN
-zs
-af
-af
-af
-af
-af
-af
-fq
-af
-tF
-tF
-tF
-af
-AB
-zh
-zs
-af
-fq
-tF
-tF
-af
-af
-tF
-tF
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-Ct
-Cv
-zh
-af
-af
-af
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-zh
-zh
-af
-zh
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-fq
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(97,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-aj
-an
-an
-an
-an
-an
-aj
-aj
-aj
-aj
-aj
-at
-an
-an
-cT
-an
-an
-an
-ij
-ja
-dX
-ko
-af
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-af
-ks
-af
-af
-am
-af
-af
-af
-am
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tF
-tF
-tF
-tF
-tF
-tN
-tN
-af
-af
-af
-tN
-af
-af
-tN
-tN
-tF
-tF
-tF
-tF
-tF
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-ao
-af
-yv
-zi
-zh
-tF
-tF
-ag
-am
-af
-af
-af
-am
-tF
-tF
-tF
-af
-AB
-zh
-zs
-af
-af
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-af
-am
-af
-af
-af
-fq
-af
-af
-af
-Co
-af
-af
-af
-zh
-zh
-zh
-Cr
-af
-af
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-zh
-zh
-af
-zh
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-vH
-af
-af
-af
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(98,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-aj
-aj
-aj
-an
-an
-aj
-aj
-aj
-aj
-aj
-aj
-an
-an
-eI
-an
-an
-an
-an
-ij
-jb
-dX
-kr
-dX
-af
-af
-dX
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-fq
-af
-af
-fq
-af
-tF
-tF
-tF
-tF
-tF
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tF
-tF
-tF
-tF
-tF
-af
-af
-am
-af
-af
-af
-af
-ak
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-am
-af
-af
-yv
-ag
-zt
-zu
-zu
-zu
-zu
-af
-af
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-zh
-zs
-af
-am
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-ao
-zh
-zh
-zh
-af
-af
-ao
-Co
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-zh
-zh
-af
-zh
-af
-af
-af
-am
-af
-af
-am
-af
-af
-af
-af
-af
-am
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(99,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-aj
-aj
-an
-an
-an
-at
-an
-an
-aj
-an
-an
-an
-cT
-an
-eH
-an
-gT
-an
-ii
-ii
-dX
-ks
-af
-af
-af
-af
-dX
-af
-af
-af
-af
-af
-af
-fq
-af
-kq
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tF
-tF
-tF
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-tF
-tF
-tF
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-yv
-yv
-af
-zu
-zC
-zP
-Ac
-zu
-ag
-af
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-zh
-zs
-af
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-af
-fq
-af
-am
-af
-af
-af
-af
-am
-af
-af
-af
-af
-zh
-zh
-zh
-af
-af
-af
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-Cw
-zh
-zh
-af
-zh
-af
-Co
-af
-af
-ak
-af
-af
-fq
-af
-ak
-af
-af
-af
-af
-fq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(100,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-aj
-an
-an
-aj
-an
-aj
-aj
-an
-an
-an
-ap
-ap
-ap
-eG
-eG
-ap
-ap
-au
-ik
-iZ
-dX
-kr
-dX
-af
-dX
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-am
-am
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tF
-tF
-tF
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-af
-af
-af
-af
-am
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-am
-yv
-af
-tF
-zu
-zD
-zD
-zD
-zu
-af
-af
-af
-tF
-tF
-tF
-tF
-tF
-zh
-zh
-zs
-af
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-af
-am
-af
-af
-fq
-af
-am
-af
-af
-af
-am
-af
-af
-zh
-zh
-zh
-af
-af
-Ct
-af
-zh
-CR
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-ao
-af
-zh
-zh
-af
-zh
-af
-af
-af
-af
-Cw
-af
-af
-af
-af
-Fa
-af
-af
-fq
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(101,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-aj
-ap
-aj
-ap
-ap
-aj
-aj
-ap
-ap
-aj
-cU
-dy
-ap
-eG
-eG
-ap
-ai
-ai
-ai
-ai
-af
-kp
-af
-af
-af
-af
-ak
-af
-am
-af
-af
-af
-al
-af
-af
-kp
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-fq
-af
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-am
-af
-ao
-af
-yv
-af
-tF
-zu
-zE
-zQ
-zD
-Ao
-ag
-af
-ao
-tF
-tF
-tF
-tF
-tF
-zh
-zh
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-zh
-zh
-zh
-af
-af
-zh
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-af
-zh
-zh
-af
-zh
-af
-af
-Cq
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(102,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-aj
-aj
-aj
-ap
-au
-ap
-ap
-ap
-ap
-ap
-ap
-aj
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-jN
-ko
-af
-fq
-af
-af
-af
-af
-af
-fq
-af
-af
-lS
-iY
-iY
-kt
-af
-fq
-am
-af
-af
-af
-af
-ao
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ao
-af
-af
-af
-fq
-af
-af
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-am
-af
-yv
-tF
-tF
-zu
-zu
-zu
-zu
-zu
-af
-af
-af
-tF
-tF
-tF
-tF
-zh
-zh
-zh
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-zh
-zh
-zh
-af
-af
-zh
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-af
-zh
-zh
-af
-zh
-af
-af
-af
-af
-af
-af
-af
-af
-am
-am
-af
-af
-af
-am
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(103,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ai
-ai
-aj
-ai
-ai
-ai
-aj
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ae
-ae
-ae
-ig
-iY
-kt
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-am
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-tN
-tN
-tN
-tN
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-tF
-tF
-tF
-ag
-af
-af
-ag
-af
-af
-fq
-af
-af
-af
-af
-af
-AB
-zh
-zh
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-af
-am
-af
-af
-af
-af
-af
-af
-af
-Cq
-am
-af
-zh
-zh
-zh
-af
-af
-zh
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-Cs
-af
-zh
-zh
-af
-zh
-af
-af
-af
-am
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(104,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ai
-ai
-ai
-ai
-aj
-aj
-ai
-ai
-ai
-ai
-ai
-ai
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-fq
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-ko
-am
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-am
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-tq
-tT
-tW
-tW
-tW
-ua
-ua
-ua
-tT
-uv
-tq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-am
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-fq
-af
-af
-yv
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-An
-zA
-zA
-zA
-Bd
-zh
-zh
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-af
-af
-af
-ao
-af
-af
-am
-af
-af
-am
-af
-af
-af
-af
-zh
-zh
-zh
-ao
-af
-zh
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-zh
-zh
-af
-zh
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-am
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(105,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-al
-af
-af
-af
-fq
-af
-af
-am
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-ao
-af
-af
-am
-af
-af
-dX
-te
-te
-te
-te
-ua
-ua
-ua
-te
-dX
-dX
-af
-af
-af
-am
-af
-af
-af
-am
-af
-af
-ao
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-am
-af
-yv
-yv
-af
-fq
-af
-af
-af
-am
-af
-An
-zA
-Bd
-zh
-zh
-zB
-zB
-zh
-zh
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-tF
-af
-am
-af
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-zh
-zh
-zh
-af
-af
-zh
-Cs
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-zh
-zh
-af
-zh
-af
-af
-af
-af
-am
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-fq
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(106,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-fq
-af
-af
-af
-al
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-te
-te
-te
-ua
-ua
-ua
-te
-te
-te
-dX
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-am
-af
-am
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-af
-am
-af
-af
-af
-fq
-af
-af
-tN
-tN
-tN
-tN
-tN
-af
-al
-af
-am
-af
-af
-af
-af
-af
-af
-yv
-af
-af
-af
-am
-ao
-af
-An
-zh
-zh
-zB
-zB
-zO
-am
-af
-AB
-zh
-zh
-zr
-af
-tF
-tF
-tF
-am
-af
-yv
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-af
-zh
-af
-af
-af
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-zh
-zh
-af
-af
-Co
-am
-af
-af
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(107,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-ao
-af
-dX
-te
-te
-te
-ua
-ua
-te
-te
-te
-te
-dX
-af
-am
-af
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-fq
-af
-af
-fq
-af
-am
-af
-af
-am
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-am
-yv
-af
-af
-af
-af
-af
-af
-AB
-AJ
-zs
-af
-af
-af
-af
-af
-AB
-AJ
-zh
-zh
-zA
-zr
-af
-af
-af
-fq
-yv
-yv
-af
-ao
-af
-am
-af
-am
-af
-af
-af
-af
-af
-Cs
-af
-af
-af
-af
-af
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-af
-zh
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(108,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-lS
-iY
-iY
-kt
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-dX
-te
-te
-te
-ua
-ua
-ua
-ua
-te
-te
-dX
-af
-af
-af
-af
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-af
-ao
-af
-yv
-yv
-af
-af
-am
-af
-af
-Aa
-Ao
-Aa
-ag
-af
-fq
-ak
-ag
-Aa
-Ao
-Aa
-zB
-zB
-zh
-zr
-af
-af
-An
-yN
-yv
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-zh
-af
-af
-Ct
-af
-af
-af
-zh
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-CR
-zh
-zh
-zh
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-af
-af
-af
-af
-am
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(109,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-ko
-af
-af
-al
-af
-af
-am
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-fq
-af
-am
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-fq
-af
-af
-af
-tq
-tU
-tX
-tX
-ua
-ua
-ua
-ua
-tU
-uC
-tq
-af
-ak
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-fq
-af
-af
-fq
-af
-ag
-af
-af
-ag
-af
-fq
-af
-af
-fq
-af
-am
-af
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-af
-af
-yv
-af
-zF
-af
-ag
-af
-Aa
-zD
-Aa
-af
-af
-af
-am
-af
-Aa
-zD
-Aa
-af
-af
-Bn
-zB
-zA
-zA
-zh
-yN
-yN
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-am
-af
-zh
-Cq
-af
-zh
-af
-af
-af
-zh
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-af
-af
-ao
-af
-af
-af
-ak
-af
-af
-af
-am
-af
-af
-vH
-af
-am
-af
-af
-fq
-af
-af
-af
-ag
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(110,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-fq
-af
-af
-af
-am
-lS
-iY
-iY
-kt
-af
-af
-af
-ak
-af
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-al
-af
-am
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-am
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-af
-am
-af
-af
-ae
-ae
-ae
-ae
-ae
-af
-af
-ag
-af
-af
-af
-mZ
-af
-af
-af
-af
-af
-jc
-af
-sf
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-am
-yv
-af
-af
-af
-af
-Aa
-Aa
-zD
-Aa
-Aa
-af
-ag
-af
-Aa
-Aa
-zD
-Aa
-Aa
-ag
-af
-af
-Bn
-zh
-zh
-zh
-yN
-af
-af
-ao
-am
-af
-ao
-af
-af
-af
-af
-af
-zh
-af
-af
-zh
-af
-af
-af
-zh
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-Co
-af
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-fq
-am
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(111,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-af
-ak
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-am
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-fq
-af
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-af
-af
-af
-am
-am
-af
-ag
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-mZ
-af
-af
-af
-sf
-wF
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-fq
-af
-yv
-yv
-af
-af
-af
-zZ
-Aa
-zD
-zD
-zD
-Aa
-Aa
-af
-zZ
-Aa
-zD
-zD
-zD
-Aa
-Aa
-af
-am
-af
-Bn
-zh
-yN
-yN
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-zh
-af
-af
-af
-af
-Cr
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(112,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-am
-af
-lS
-iY
-iY
-kt
-af
-af
-fq
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-am
-am
-af
-af
-af
-af
-af
-af
-af
-fq
-am
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-fq
-am
-af
-vO
-af
-af
-ai
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-wB
-wC
-af
-af
-am
-af
-af
-af
-am
-af
-fq
-af
-af
-af
-af
-yv
-af
-am
-af
-ag
-Aa
-zD
-zD
-zD
-zD
-zD
-Aa
-af
-Aa
-zD
-AA
-zD
-zD
-zD
-Aa
-af
-af
-ak
-af
-Bn
-yN
-yv
-af
-ao
-af
-am
-af
-af
-af
-af
-ao
-af
-af
-am
-af
-af
-zh
-af
-Co
-af
-af
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-am
-am
-af
-af
-fq
-am
-af
-af
-fq
-am
-af
-al
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(113,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-ko
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-ak
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ag
-tG
-vV
-vV
-vV
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-ag
-af
-af
-af
-ag
-af
-af
-af
-ag
-af
-yv
-af
-af
-af
-af
-Aa
-zD
-AA
-AI
-zD
-zD
-Aa
-am
-Aa
-zD
-zD
-AI
-zD
-zD
-Aa
-ag
-af
-fq
-am
-af
-yv
-yv
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-am
-af
-af
-zh
-af
-af
-af
-Cq
-af
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-ao
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-ak
-af
-ak
-af
-af
-af
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(114,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-ko
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-fq
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-am
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-fq
-am
-af
-af
-af
-fq
-af
-am
-ag
-ae
-ae
-ae
-ae
-aj
-tI
-vZ
-tI
-tI
-tI
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-yv
-af
-af
-fq
-af
-Aa
-zD
-zD
-zD
-zD
-zD
-Aa
-am
-Aa
-zD
-zD
-zD
-zD
-zD
-Aa
-af
-af
-af
-ag
-af
-yv
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-Cr
-af
-af
-af
-zh
-af
-af
-af
-af
-af
-AJ
-zh
-zh
-zh
-AJ
-zh
-zh
-zh
-AJ
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-Ct
-af
-af
-EY
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-fq
-am
-af
-am
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(115,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ku
-iY
-kt
-af
-al
-af
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-af
-af
-al
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-tI
-tI
-wa
-vZ
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-am
-af
-yv
-ag
-af
-af
-af
-Aa
-Aa
-zD
-zD
-AV
-Aa
-Aa
-af
-Aa
-Aa
-zD
-zD
-BM
-Aa
-Aa
-ae
-ae
-ae
-ae
-ae
-yv
-af
-af
-af
-af
-ao
-af
-af
-af
-af
-ag
-af
-af
-af
-ag
-af
-zh
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-zh
-af
-zh
-af
-af
-af
-af
-af
-af
-af
-af
-am
-am
-af
-fq
-af
-af
-fq
-af
-af
-af
-am
-sf
-FF
-af
-am
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(116,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-al
-af
-af
-af
-af
-af
-af
-af
-tr
-af
-af
-ag
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-ag
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-af
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-eM
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tI
-wa
-tI
-tI
-tQ
-tI
-tI
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-Aa
-Aa
-Aa
-Aa
-Aa
-af
-ag
-af
-Aa
-Aa
-Aa
-Aa
-Aa
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zh
-AJ
-zh
-zh
-AJ
-zh
-zh
-zh
-af
-ag
-zh
-af
-af
-af
-af
-fq
-af
-af
-fq
-af
-af
-af
-af
-am
-af
-af
-am
-am
-Fr
-am
-FA
-sf
-am
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(117,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-af
-af
-ag
-af
-ak
-af
-af
-ae
-ae
-ae
-ae
-ae
-ag
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-tN
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-vZ
-tI
-vJ
-tI
-tI
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-mZ
-am
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-zh
-af
-af
-ag
-af
-af
-af
-ag
-af
-af
-af
-ag
-af
-am
-af
-af
-af
-af
-af
-sf
-FB
-am
-ag
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(118,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-fq
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ak
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-ja
-af
-tN
-tN
-tN
-tN
-tN
-tN
-ag
-am
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-wg
-wh
-tI
-tI
-wk
-wk
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ak
-af
-af
-af
-af
-vH
-af
-af
-fq
-ak
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(119,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-ak
-af
-af
-af
-af
-af
-af
-fq
-af
-af
-af
-af
-am
-af
-af
-af
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tx
-tx
-tx
-tx
-tS
-tx
-tx
-tx
-tS
-tG
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-vQ
-wh
-wk
-wk
-wm
-tI
-wl
-vQ
-aj
-ae
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-fq
-af
-am
-af
-af
-af
-af
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(120,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-am
-af
-af
-af
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-vP
-vQ
-vP
-aj
-aj
-aj
-vQ
-wi
-wk
-wm
-ii
-tI
-wq
-wj
-aj
-aj
-aj
-wt
-vQ
-vQ
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ag
-af
-af
-af
-af
-af
-fq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(121,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-mZ
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-vQ
-vQ
-vQ
-vQ
-aj
-aj
-aj
-aj
-aj
-tI
-tI
-tI
-tI
-tI
-tI
-tI
-aj
-wu
-vQ
-ww
-wv
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-fq
-af
-ag
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(122,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-al
-af
-am
-af
-af
-af
-af
-fq
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-vP
-vW
-vQ
-vQ
-wf
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-tI
-aj
-tI
-tI
-aj
-vQ
-ww
-wy
-ww
-vQ
-wA
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(123,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-af
-af
-af
-af
-af
-af
-ag
-af
-af
-af
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-vQ
-vQ
-vQ
-vQ
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-tI
-aj
-aj
-tI
-aj
-wv
-vQ
-ww
-vQ
-vQ
-wA
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(124,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-am
-af
-af
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-vQ
-vQ
-vP
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-tI
-tI
-tI
-wq
-vQ
-vQ
-vQ
-vQ
-wA
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(125,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-af
-af
-ag
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-vQ
-vQ
-vQ
-vQ
-vQ
-vQ
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-tx
-tI
-wl
-vQ
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(126,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-vF
-vF
-vF
-ae
-ae
-ae
-aj
-aj
-we
-vQ
-vQ
-vQ
-wj
-vQ
-wn
-wn
-aj
-aj
-aj
-aj
-aj
-tx
-tI
-wl
-vQ
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(127,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tx
-ty
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-vF
-vF
-vF
-vI
-vF
-ae
-ae
-ae
-ae
-aj
-aj
-vQ
-vQ
-wi
-tI
-wl
-vQ
-vQ
-aj
-aj
-aj
-aj
-aj
-aj
-tI
-wl
-vQ
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(128,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-tx
-tx
-tx
-tx
-tx
-aj
-aj
-aj
-aj
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-vF
-vF
-vF
-vF
-vF
-vF
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-tI
-wl
-vQ
-wo
-tI
-tI
-aj
-aj
-aj
-aj
-tI
-wl
-wz
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(129,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-vF
-vI
-vF
-vF
-vF
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-tI
-tI
-tI
-tI
-tx
-tI
-tI
-tI
-wl
-wz
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(130,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-vF
-vF
-vF
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aj
-aj
-aj
-wr
-ws
-tx
-tx
-tI
-tI
-aj
-aj
-aj
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(131,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-tE
-tE
-tE
-tE
-tE
-tE
-tE
-tE
-tE
-tE
-tE
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-tE
-tE
-tE
-tE
-tE
-tE
-tE
-tE
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(132,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(133,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(134,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(135,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(136,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(137,1,1) = {"
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-"}
-(138,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bg
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(139,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(140,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(141,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(142,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(143,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(144,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(145,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(146,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eK
-eK
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(147,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eK
-eK
-eJ
-eK
-eK
-eK
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tH
-tH
-oZ
-oZ
-tV
-oZ
-oZ
-tH
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(148,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eK
-eK
-gc
-il
-gc
-gd
-eK
-eJ
-gc
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-tH
-tH
-eJ
-eJ
-oZ
-tH
-oZ
-oZ
-oZ
-tH
-tH
-vl
-tO
-tH
-tH
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eJ
-eJ
-eL
-eJ
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(149,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-gc
-gc
-gV
-gV
-gc
-gc
-eK
-eK
-eJ
-eK
-eK
-eK
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eK
-eJ
-eJ
-eK
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tH
-oZ
-oZ
-tV
-tH
-tH
-oZ
-oZ
-oZ
-tL
-oZ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oY
-oZ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eJ
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(150,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eK
-eJ
-gU
-hF
-im
-gc
-gc
-gc
-eK
-gc
-eK
-eK
-eK
-eK
-eK
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-gc
-oZ
-oZ
-sX
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tH
-tO
-oZ
-tH
-eJ
-eJ
-oZ
-oZ
-oZ
-tO
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-tL
-oZ
-tH
-oZ
-oZ
-oZ
-eJ
-ge
-ge
-ge
-eJ
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-fr
-fr
-fr
-eJ
-eL
-eJ
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eL
-fr
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-fr
-eL
-eJ
-eJ
-eL
-eL
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-ge
-eJ
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(151,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eK
-eK
-gd
-gc
-gc
-gV
-gU
-gV
-gc
-eJ
-eK
-gc
-eK
-eK
-eK
-eK
-eJ
-eJ
-eJ
-eK
-eJ
-eK
-oZ
-oZ
-gc
-oZ
-gc
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-tK
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-tH
-tH
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-ge
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-eJ
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eJ
-fr
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-gW
-oZ
-oZ
-gW
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(152,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eK
-eK
-gc
-gc
-gV
-gc
-gc
-jO
-gc
-gc
-gc
-gc
-gc
-eK
-eK
-gc
-eK
-eK
-eJ
-gc
-gV
-oZ
-gc
-oZ
-oZ
-gc
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-tL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tH
-tH
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oY
-oZ
-tm
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eL
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(153,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eK
-eK
-gc
-gc
-gc
-gc
-gc
-gc
-gV
-gc
-gc
-gV
-gc
-gc
-gc
-eJ
-eK
-gc
-gc
-gV
-oZ
-gU
-gc
-gc
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-tO
-oZ
-tH
-tH
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-eL
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-gW
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(154,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eK
-eK
-gc
-gc
-gd
-gV
-gc
-gc
-eK
-ge
-gc
-gc
-gU
-gV
-gV
-gc
-gc
-gV
-gc
-oZ
-oZ
-gc
-oZ
-oZ
-gc
-sY
-sY
-oZ
-oZ
-oZ
-oZ
-fr
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-uw
-oZ
-oZ
-uP
-eJ
-eJ
-eJ
-tH
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eL
-eL
-eJ
-fr
-eL
-eL
-eJ
-fr
-fr
-eL
-eL
-eL
-eJ
-fr
-eJ
-eJ
-eL
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eL
-eL
-eJ
-eJ
-tp
-tw
-qi
-qi
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-ge
-gW
-oZ
-oZ
-tm
-oZ
-gW
-oZ
-tm
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(155,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eK
-ge
-gc
-gc
-in
-gc
-gc
-ge
-ge
-eK
-gc
-gc
-ge
-gc
-gc
-gc
-gc
-gV
-gc
-gc
-gc
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-sY
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-sX
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oY
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-fr
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-tp
-qi
-tt
-qi
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-Ci
-eJ
-eJ
-Ci
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-ge
-ge
-ge
-ge
-gW
-oZ
-oZ
-oZ
-gW
-gW
-gW
-oZ
-oZ
-oZ
-gW
-ge
-ge
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(156,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-gc
-gV
-gU
-gc
-gc
-gc
-eK
-ge
-gc
-gc
-gV
-eK
-eK
-gc
-eJ
-gc
-gc
-gU
-gV
-gc
-oZ
-gc
-eK
-oY
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tH
-oZ
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-eL
-eL
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-eJ
-eL
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eL
-tp
-tp
-tp
-tp
-tp
-tv
-tp
-tp
-tp
-tp
-tp
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-ge
-ge
-ge
-oZ
-ge
-eJ
-Ci
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-oZ
-oZ
-oZ
-gW
-gW
-gW
-oZ
-oZ
-oZ
-oZ
-ge
-ge
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(157,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-gf
-gc
-gc
-gV
-gc
-gc
-gc
-eK
-lT
-eK
-eK
-ge
-gc
-gc
-gc
-eK
-qg
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-oZ
-oZ
-oZ
-fr
-fr
-fr
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-eJ
-eL
-tp
-qi
-qi
-tp
-qi
-qi
-qi
-tp
-qi
-tD
-tp
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-ge
-ge
-ge
-Ci
-ge
-eJ
-oZ
-eJ
-eJ
-oZ
-ge
-eJ
-EU
-Ci
-ge
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-oZ
-oZ
-oZ
-gW
-gW
-gW
-oZ
-oZ
-oZ
-gW
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(158,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eK
-eK
-eJ
-gc
-hF
-im
-gV
-gc
-eK
-gc
-eK
-eK
-eK
-eK
-ge
-eK
-ge
-eJ
-gc
-oZ
-gc
-oZ
-gc
-eK
-eJ
-eJ
-eJ
-eJ
-fr
-eL
-eL
-eJ
-eJ
-eL
-oZ
-fr
-fr
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-sX
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eL
-eL
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eL
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-tp
-qi
-tt
-tv
-qi
-tt
-qi
-tv
-tt
-qi
-tp
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-ge
-eJ
-ge
-oZ
-ge
-ge
-ge
-oZ
-ge
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-oZ
-oZ
-gW
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(159,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eK
-eJ
-gc
-gc
-gc
-gU
-eK
-eK
-eK
-eK
-eK
-ge
-eK
-eK
-ge
-eK
-oZ
-gc
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-oZ
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-ts
-qi
-tp
-qi
-qi
-qi
-tp
-qi
-qi
-tp
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-oZ
-eJ
-Cl
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-ge
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-gW
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(160,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eK
-eK
-eK
-gc
-gc
-gc
-eK
-eK
-eK
-eJ
-eK
-eK
-ge
-ge
-eK
-eJ
-eJ
-oZ
-gc
-oZ
-gc
-oZ
-oZ
-eL
-eL
-oZ
-oZ
-eL
-fr
-eL
-eJ
-oZ
-oZ
-fr
-fr
-fr
-fr
-oZ
-oY
-sY
-oZ
-oZ
-sX
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-gW
-eJ
-eJ
-eJ
-tH
-oZ
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oY
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-eL
-eJ
-oZ
-oZ
-fr
-fr
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eL
-eJ
-tp
-tp
-tp
-tp
-tp
-tv
-tp
-tp
-tp
-tp
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-Cl
-oZ
-eJ
-ge
-ge
-oZ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-oZ
-oZ
-oZ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(161,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eK
-eK
-eK
-eJ
-gc
-gd
-eK
-eK
-eK
-eJ
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eK
-eJ
-gc
-oZ
-gc
-oZ
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-tm
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-eL
-eL
-fr
-fr
-fr
-eL
-eL
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-fr
-fr
-eL
-eJ
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-tt
-qi
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-gW
-gW
-ge
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(162,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eK
-eK
-eK
-eJ
-ge
-ge
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-gc
-oZ
-fr
-fr
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-fr
-oZ
-fr
-oZ
-fr
-oZ
-oZ
-eL
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-sY
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-eJ
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-ge
-eL
-ge
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eJ
-fr
-eJ
-eJ
-eL
-eJ
-eJ
-tp
-tw
-qi
-qi
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-ge
-oZ
-eJ
-Cl
-oZ
-eJ
-eJ
-oZ
-oZ
-qi
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(163,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eK
-eK
-eJ
-eJ
-ge
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eK
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-ge
-ge
-ge
-ge
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-fr
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-tp
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-Ci
-eJ
-eJ
-oZ
-eJ
-ge
-oZ
-eJ
-Cl
-eJ
-oZ
-ge
-ge
-Cl
-qi
-qi
-Cl
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-ge
-ge
-ge
-eJ
-ge
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(164,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eL
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oY
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tH
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-eL
-ge
-eL
-ge
-eL
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-ge
-oZ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(165,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eJ
-eJ
-fr
-eL
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-eL
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-eL
-eL
-eL
-eL
-eL
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-ge
-oZ
-eJ
-ge
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Ci
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(166,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eJ
-eL
-fr
-eL
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-rv
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-sY
-sY
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tH
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-sY
-oZ
-oZ
-eJ
-oZ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-eL
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-ge
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(167,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eL
-eL
-eL
-fr
-eL
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-pA
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-tp
-tp
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-tH
-tH
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-oZ
-eJ
-eJ
-eL
-fr
-eL
-eL
-eL
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-qi
-qi
-Cl
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-Ci
-ge
-eJ
-eJ
-oZ
-eJ
-ge
-ge
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(168,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eL
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-rS
-sl
-Jq
-sO
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-qi
-tz
-qi
-tp
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-oZ
-oZ
-sX
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-tH
-tH
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-sY
-sY
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-Ci
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-FT
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(169,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eL
-eJ
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-qi
-rT
-rV
-sE
-sO
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tw
-qi
-qi
-qi
-tp
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-uY
-tH
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-oZ
-oZ
-eJ
-gW
-eJ
-eL
-fr
-fr
-eL
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-oZ
-oZ
-oZ
-oZ
-Ci
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-Cl
-qi
-qi
-Cl
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(170,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-fr
-fr
-eJ
-eJ
-fr
-fr
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-qi
-rT
-rV
-sE
-sO
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-tp
-tp
-tp
-tp
-tv
-tp
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-uY
-uY
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-eJ
-eJ
-eJ
-ge
-Ci
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-ge
-eJ
-ge
-oZ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(171,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eL
-eL
-fr
-eL
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-pA
-rw
-rU
-sm
-sF
-sP
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-tp
-qi
-qi
-qi
-tp
-tz
-qi
-tp
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-sY
-sY
-oZ
-oZ
-oZ
-oZ
-uQ
-tH
-tH
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oY
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eL
-eL
-fr
-eJ
-fr
-fr
-eJ
-eJ
-eL
-eL
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-Ci
-ge
-eJ
-oZ
-eJ
-ge
-oZ
-eJ
-eJ
-eJ
-ge
-oZ
-oZ
-oZ
-oZ
-Ci
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(172,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-oZ
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-gW
-eJ
-tp
-qi
-qi
-tt
-qi
-qi
-qi
-tp
-tp
-tP
-oZ
-oZ
-oZ
-oY
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-tH
-oZ
-oZ
-oZ
-oZ
-sY
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-fr
-eJ
-fr
-fr
-eL
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-eL
-eJ
-eL
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-Ci
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-qi
-qi
-Cl
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-ge
-eJ
-oZ
-eJ
-eJ
-oZ
-ge
-eJ
-eJ
-ge
-oZ
-oZ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-Gd
-Gx
-GU
-Gx
-GU
-GU
-Gx
-Gx
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(173,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tp
-qi
-qi
-tz
-qi
-qi
-qi
-qi
-tP
-tP
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-sY
-sY
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-sY
-oZ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-fr
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eL
-eL
-eL
-fr
-fr
-fr
-eL
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-oZ
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-ge
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-Ge
-Gy
-GV
-Hs
-HJ
-HL
-Iz
-GU
-wE
-wE
-wE
-wD
-wD
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(174,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-tz
-tp
-tv
-tp
-tp
-tp
-tp
-tp
-tp
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-sY
-sY
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eL
-eJ
-eJ
-eL
-eL
-fr
-eJ
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eL
-eJ
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-Ci
-eJ
-eJ
-ge
-oZ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-Cl
-eJ
-oZ
-eJ
-eJ
-eJ
-Cl
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Ci
-Ci
-Ci
-Ci
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-Gf
-Gz
-GW
-Ht
-HK
-HL
-IA
-GU
-IZ
-Jk
-wL
-JV
-wE
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(175,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-qi
-tp
-qi
-qi
-tz
-qi
-tp
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-eJ
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-Cl
-eJ
-eJ
-oZ
-Cl
-eJ
-eJ
-eJ
-eJ
-Cl
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-eJ
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-Gf
-GA
-GX
-Hu
-HL
-HL
-IB
-Gx
-IO
-wL
-wL
-JW
-wE
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(176,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eL
-fr
-eL
-eJ
-eJ
-fr
-fr
-fr
-eL
-eJ
-eJ
-eL
-fr
-eL
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-qi
-tp
-qi
-qi
-qi
-tD
-tp
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-uR
-oZ
-oZ
-oZ
-vz
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-fr
-fr
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eL
-eL
-eL
-fr
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-qi
-qi
-oZ
-oZ
-qi
-qi
-oZ
-oZ
-oZ
-qi
-qi
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-Gg
-GB
-GY
-Hv
-HM
-Ib
-IB
-IJ
-Ja
-wM
-JA
-JX
-wE
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(177,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-eL
-eJ
-oY
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-tp
-ts
-tu
-tp
-tp
-tp
-tp
-tp
-tp
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-uI
-uZ
-vm
-uZ
-uI
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-tm
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-eL
-fr
-fr
-fr
-eJ
-eL
-eJ
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-oY
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-qi
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-qi
-qi
-eJ
-eJ
-ge
-oZ
-Cl
-eJ
-oZ
-eJ
-ge
-oZ
-Cl
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Gd
-GC
-GC
-GU
-GC
-Ic
-GU
-GU
-Jb
-wD
-wD
-wE
-wE
-wD
-wD
-wD
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(178,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eL
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-eL
-eL
-oZ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tY
-tZ
-tY
-tY
-uF
-vi
-vt
-vA
-vG
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-fr
-eJ
-eL
-fr
-fr
-eJ
-fr
-eJ
-fr
-eL
-fr
-eL
-eJ
-eL
-eL
-fr
-fr
-fr
-eL
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-Ci
-oZ
-oZ
-oZ
-oZ
-eJ
-Cl
-eJ
-eJ
-oZ
-eJ
-Cl
-eJ
-oZ
-eJ
-Cl
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-oY
-qi
-Cl
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-xW
-xW
-xW
-wT
-Gh
-wL
-Gh
-Id
-IC
-IK
-Jc
-Jl
-JB
-JY
-Kg
-Kg
-KD
-wD
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(179,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-eJ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-oZ
-eL
-eL
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tZ
-ul
-uJ
-tY
-va
-vi
-ul
-uI
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-ge
-eJ
-oZ
-ge
-eJ
-Ci
-ge
-eJ
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-Fv
-FC
-xW
-xW
-xW
-wL
-Gh
-GD
-GZ
-xy
-Gj
-wL
-wL
-IL
-Jd
-Jm
-JC
-GZ
-Gj
-xy
-xy
-wD
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(180,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eL
-eJ
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-eL
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-oZ
-eL
-ge
-eL
-oZ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-tY
-tY
-tZ
-tZ
-tY
-tY
-uD
-tZ
-tZ
-vb
-vn
-vb
-tY
-tZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eJ
-eL
-fr
-eL
-eJ
-eJ
-eJ
-oZ
-oZ
-sY
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-fr
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-Fw
-FD
-FG
-FJ
-FM
-FU
-Gi
-GE
-Ha
-Hw
-Hw
-Hw
-ID
-IM
-Ih
-Jl
-JD
-wL
-xy
-Gj
-xy
-wD
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(181,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-eJ
-eJ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-oZ
-eL
-gW
-ge
-eL
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-tZ
-ub
-ue
-ue
-tY
-ul
-uE
-uE
-uE
-vc
-vo
-ul
-vB
-tY
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eL
-fr
-fr
-eJ
-fr
-fr
-eJ
-fr
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-eL
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-Ci
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-ge
-eJ
-oZ
-ge
-eJ
-ge
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-Ci
-ge
-ge
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oY
-oZ
-oZ
-Fk
-oZ
-oZ
-VW
-FH
-wL
-Lx
-xy
-Gj
-xy
-Hb
-Hx
-xy
-Ie
-wD
-IN
-wE
-wD
-wD
-wD
-JC
-GZ
-KE
-wD
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(182,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-fr
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eL
-fr
-fr
-fr
-fr
-pA
-rV
-pA
-fr
-eL
-eL
-ge
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-tZ
-uc
-uf
-uk
-ur
-ux
-uF
-ul
-ul
-vd
-uF
-vu
-vC
-tY
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-eL
-fr
-eJ
-eL
-fr
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-sY
-sY
-oZ
-oZ
-sX
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-oZ
-qi
-Cl
-eJ
-eJ
-eJ
-oZ
-ge
-eJ
-ge
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-Ci
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-sY
-oZ
-oZ
-oZ
-VW
-wL
-FK
-Lx
-xy
-xy
-wL
-Gj
-GZ
-Gj
-If
-wD
-IO
-wE
-Jn
-Jn
-wE
-JC
-Kp
-KF
-wD
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(183,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eL
-fr
-fr
-eJ
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-eL
-eL
-eL
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oY
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tZ
-tY
-tZ
-tY
-tZ
-uy
-uG
-ul
-uS
-ve
-tY
-tZ
-tZ
-tY
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-fr
-fr
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-oZ
-sY
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-qi
-qi
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-ge
-ge
-eJ
-Cl
-eJ
-eJ
-oZ
-oZ
-Cl
-eJ
-eJ
-eJ
-eJ
-Cl
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-Cl
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Fv
-xW
-xW
-zI
-xW
-FV
-ya
-GF
-xy
-wL
-xy
-Ig
-wD
-IO
-wD
-Jo
-wL
-JZ
-JC
-GZ
-xy
-wD
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(184,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eL
-fr
-eL
-eJ
-eJ
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-eL
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eL
-eL
-tY
-ug
-ul
-tZ
-ux
-uF
-uK
-uF
-un
-vp
-vv
-vD
-tZ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eL
-eJ
-eJ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-sY
-oZ
-oZ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-AW
-sY
-oZ
-oZ
-oZ
-AW
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-eJ
-ge
-ge
-eJ
-eJ
-Cl
-oZ
-oZ
-oZ
-sY
-oZ
-oZ
-qi
-sY
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-FL
-xW
-xW
-xW
-GG
-wL
-ya
-ya
-Ih
-wD
-IP
-wD
-Jp
-JE
-wD
-Kh
-Kq
-KG
-wD
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(185,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eL
-fr
-eL
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eL
-fr
-tZ
-ug
-um
-us
-uz
-uH
-uL
-uT
-vf
-tY
-vw
-vE
-tZ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-fr
-eJ
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eL
-eJ
-oZ
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-sY
-sY
-oZ
-oZ
-oZ
-eJ
-pA
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-BO
-BT
-qi
-qi
-pA
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-qi
-AW
-oZ
-Ci
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-AW
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-sY
-qi
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oY
-Gk
-GH
-GN
-Hy
-GN
-GH
-GH
-IO
-wE
-wD
-wE
-wE
-wD
-Kr
-wD
-wD
-wE
-wE
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(186,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-fr
-fr
-eJ
-fr
-eL
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eL
-fr
-fr
-fr
-eJ
-fr
-tY
-uh
-un
-tY
-tZ
-tZ
-tZ
-tY
-vg
-tZ
-tY
-tZ
-tY
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-oY
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-fr
-fr
-eL
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-sO
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-Bo
-Jq
-qi
-Cb
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-sY
-oZ
-ge
-ge
-eJ
-sY
-sY
-oZ
-eJ
-ge
-oZ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-qi
-Cl
-eJ
-ge
-eJ
-Cl
-eJ
-eJ
-oZ
-eJ
-Cl
-eJ
-oZ
-eJ
-eJ
-Cl
-ge
-EW
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-eJ
-ge
-eJ
-ge
-eJ
-Cl
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-FW
-Gk
-GI
-Hc
-Hg
-HN
-Ii
-GN
-IO
-wL
-wD
-JF
-JF
-Ki
-wL
-GZ
-wL
-Gj
-wD
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(187,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eL
-eJ
-eL
-fr
-eL
-fr
-tY
-ui
-uo
-ut
-uA
-tY
-uy
-uE
-vh
-vq
-vx
-tY
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-oZ
-oZ
-oZ
-fr
-eJ
-eL
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-qi
-zj
-zk
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-BP
-BP
-Bo
-BY
-Cc
-Aq
-oZ
-oZ
-sY
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-qi
-Cl
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-ge
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-qi
-qi
-Cl
-eJ
-eJ
-Cl
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-EW
-oZ
-oZ
-oZ
-oZ
-oZ
-oY
-oZ
-oZ
-oZ
-oZ
-oZ
-Gl
-GJ
-Hd
-Hg
-HO
-Ij
-GH
-IO
-wL
-wD
-JG
-Ka
-xO
-Ks
-Ka
-KQ
-KZ
-wE
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(188,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eL
-fr
-eJ
-eJ
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-tY
-uj
-up
-uu
-uB
-tY
-uM
-uU
-vi
-ul
-uF
-tY
-eL
-eJ
-eL
-eJ
-eJ
-eJ
-eL
-fr
-eL
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-oZ
-oZ
-eJ
-eL
-eL
-eJ
-fr
-fr
-eL
-fr
-fr
-fr
-eJ
-eL
-fr
-eJ
-pA
-yi
-yi
-yO
-zk
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-pA
-BD
-fr
-fr
-fr
-rV
-rV
-rV
-Bo
-Cd
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-qi
-qi
-eJ
-eJ
-oZ
-ge
-Cl
-ge
-oZ
-eJ
-Cl
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-ge
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-EW
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Gl
-GJ
-He
-He
-HP
-Ik
-GH
-IO
-wL
-wE
-JH
-ND
-ND
-Kt
-ND
-ND
-KX
-wE
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(189,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-fr
-fr
-eL
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eL
-eL
-fr
-fr
-fr
-fr
-eJ
-eL
-tZ
-tY
-tY
-tZ
-tZ
-tY
-uN
-uV
-vj
-vr
-ul
-uI
-eL
-fr
-fr
-eL
-eL
-eJ
-fr
-fr
-fr
-oZ
-oZ
-fr
-oZ
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-eJ
-oZ
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-Ad
-Ap
-Ap
-pA
-oZ
-rS
-BE
-fr
-fr
-rV
-sn
-rV
-rV
-rV
-pA
-eJ
-eJ
-eL
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-qi
-oZ
-sY
-oZ
-oZ
-sY
-oZ
-oZ
-oZ
-sY
-AW
-oZ
-oZ
-ge
-ge
-ge
-ge
-ge
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Gl
-GJ
-Hf
-He
-HQ
-Il
-GH
-IQ
-wL
-wE
-JH
-ND
-ND
-ND
-ND
-ND
-KX
-wE
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(190,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-fr
-fr
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-sn
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tm
-oZ
-eJ
-eJ
-oZ
-oZ
-eL
-fr
-eJ
-fr
-fr
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-uI
-uO
-uW
-vk
-vs
-vy
-uI
-fr
-fr
-fr
-eJ
-eJ
-eL
-fr
-fr
-fr
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-oZ
-oZ
-eJ
-oZ
-eL
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-sn
-rV
-sn
-rV
-fr
-fr
-fr
-fr
-Ae
-qi
-qi
-oZ
-sY
-Bx
-BF
-rV
-rV
-rW
-fr
-sG
-rV
-rV
-eJ
-eJ
-eJ
-fr
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-oZ
-oZ
-oY
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-ge
-ge
-ge
-ge
-ge
-ge
-oZ
-ge
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Ci
-oZ
-oZ
-oZ
-ge
-ge
-ge
-ge
-eJ
-eJ
-ge
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Gk
-GK
-Hg
-Hz
-HO
-Im
-GN
-wL
-wL
-wE
-JI
-ND
-ND
-ND
-ND
-ND
-KY
-wE
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(191,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-pA
-rW
-fr
-sG
-pA
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eL
-eL
-oZ
-oZ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-fr
-fr
-fr
-eJ
-eJ
-oZ
-oZ
-fr
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-pA
-rV
-rW
-fr
-zl
-fr
-sG
-rV
-rV
-rV
-rV
-AK
-AW
-oZ
-oZ
-oZ
-sD
-BG
-fr
-fr
-rV
-so
-rV
-fr
-fr
-fr
-eJ
-eL
-fr
-eL
-fr
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-Cl
-ge
-ge
-oZ
-Cl
-eJ
-ge
-ge
-ge
-oZ
-eJ
-ge
-Ci
-ge
-eJ
-oZ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-oZ
-oZ
-oZ
-oZ
-Gm
-GJ
-He
-HA
-HO
-In
-GH
-wL
-wL
-wE
-JH
-ND
-ND
-ND
-ND
-ND
-KX
-wE
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(192,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-so
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-oZ
-eL
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eL
-eL
-eJ
-fr
-fr
-fr
-fr
-rV
-so
-rV
-so
-rV
-fr
-Ad
-Ap
-Ap
-AL
-oZ
-oZ
-oZ
-oZ
-oZ
-At
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-ge
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-ge
-ge
-ge
-oZ
-ge
-eJ
-oZ
-eJ
-eJ
-oZ
-ge
-eJ
-ge
-ge
-eJ
-ge
-ge
-eJ
-Cl
-qi
-qi
-Cl
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-oZ
-oY
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Gm
-GL
-Hh
-Hf
-HO
-Ik
-GN
-wL
-wL
-wD
-JH
-ND
-ND
-ND
-ND
-ND
-KX
-wD
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(193,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-eL
-fr
-fr
-eL
-eL
-eJ
-eL
-eJ
-fr
-sX
-oZ
-oZ
-oZ
-oZ
-oZ
-oY
-oZ
-oZ
-eL
-eL
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-xV
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-Ae
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-pA
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-fr
-eL
-eJ
-eJ
-eJ
-fr
-eJ
-ge
-oZ
-ge
-eJ
-oZ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-ge
-ge
-ge
-oZ
-ge
-eJ
-oZ
-Cl
-eJ
-oZ
-ge
-Cl
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-oZ
-oZ
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-oZ
-Fb
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Gm
-GJ
-Hh
-Hg
-Qd
-Io
-IE
-wL
-Je
-wD
-JJ
-Kb
-Kb
-Ku
-Kb
-Kb
-Sf
-wD
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(194,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-eL
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-eL
-fr
-fr
-eJ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-eJ
-eL
-eJ
-eL
-fr
-eJ
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-eL
-wD
-wD
-wE
-wE
-wD
-wD
-xW
-xW
-xW
-xW
-eJ
-eJ
-eJ
-eJ
-pA
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eL
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-eL
-eJ
-eL
-fr
-fr
-fr
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Ci
-Ci
-oZ
-eJ
-eJ
-oZ
-Fb
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-sX
-oZ
-FW
-Gk
-HR
-Hi
-Hh
-HS
-Ip
-GN
-wD
-Jf
-wE
-wD
-wE
-wD
-wD
-wE
-wE
-wD
-wD
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(195,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eL
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-fr
-eJ
-eL
-oZ
-fr
-fr
-eJ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-fr
-oZ
-fr
-fr
-fr
-fr
-oZ
-fr
-fr
-fr
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eL
-fr
-eL
-eJ
-fr
-fr
-fr
-eL
-eL
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eJ
-fr
-eJ
-wE
-xc
-xq
-xx
-wL
-wL
-xX
-yj
-yw
-xW
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-sX
-oZ
-oZ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-oZ
-qi
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-eJ
-eJ
-eL
-eJ
-oZ
-Fb
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-hk
-sl
-Gk
-GN
-Hj
-HB
-GN
-GH
-GH
-wL
-Jg
-wD
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(196,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-oZ
-oY
-oZ
-eJ
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-sX
-fr
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-wD
-xd
-xr
-xy
-xG
-xy
-xX
-yk
-yx
-wD
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-BQ
-oZ
-eJ
-fr
-fr
-fr
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eL
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-Cl
-eJ
-ge
-eJ
-Cl
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-eJ
-oZ
-Fc
-Fe
-Ff
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-ho
-kK
-Gn
-GO
-Hk
-HC
-Hk
-Hk
-Hk
-Hk
-Jh
-wE
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(197,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-oZ
-eJ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-oZ
-oZ
-fr
-oZ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eL
-fr
-eL
-eJ
-eJ
-fr
-fr
-fr
-eJ
-eL
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eJ
-eJ
-wD
-wE
-wE
-wE
-xz
-xH
-xH
-xY
-wD
-wE
-wE
-wE
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eL
-eJ
-eL
-fr
-fr
-fr
-fr
-BR
-eJ
-eL
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-qi
-qi
-Cl
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-fr
-fr
-eJ
-oZ
-oZ
-oZ
-oZ
-Fc
-Fe
-Ff
-oZ
-oZ
-oZ
-oZ
-oZ
-sD
-xW
-xW
-xW
-xW
-xW
-xW
-xW
-xW
-xW
-xW
-xW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(198,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-oZ
-pA
-qh
-qh
-qh
-qh
-qh
-sp
-qh
-pA
-oZ
-eJ
-oZ
-oZ
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-eJ
-eJ
-eL
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-eL
-eJ
-eJ
-fr
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eL
-fr
-eL
-eJ
-eJ
-eJ
-wD
-wT
-xe
-xs
-xA
-xI
-xN
-wL
-yl
-xN
-yP
-wD
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-oZ
-sE
-eJ
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eJ
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-ge
-eJ
-eJ
-ge
-eJ
-eJ
-Cl
-eJ
-ge
-eJ
-Cl
-qi
-qi
-Cl
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-oZ
-oY
-oZ
-fr
-oZ
-oZ
-Fc
-Fe
-Ff
-oZ
-oZ
-oZ
-oZ
-Cb
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(199,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-oZ
-oZ
-qi
-qi
-qi
-qi
-qi
-qi
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eL
-eJ
-fr
-eL
-eL
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-wE
-wU
-xf
-xt
-xB
-xJ
-xO
-xZ
-ym
-yy
-yQ
-wE
-eJ
-eJ
-eJ
-oZ
-Aq
-qi
-pA
-eJ
-eJ
-eL
-eJ
-eJ
-fr
-fr
-fr
-oZ
-sE
-eL
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-ge
-eJ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-ge
-eJ
-eJ
-oZ
-oZ
-oZ
-qi
-oZ
-Aq
-oZ
-EX
-oZ
-oZ
-eL
-fr
-eJ
-eJ
-fr
-eJ
-eJ
-fr
-eL
-oZ
-oZ
-oZ
-fr
-fr
-oZ
-oZ
-oZ
-Fb
-oZ
-oZ
-oZ
-oZ
-Cb
-fr
-fr
-fr
-rV
-sn
-rV
-fr
-fr
-fr
-eJ
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(200,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eL
-eJ
-oZ
-eJ
-qE
-qi
-qi
-qi
-sq
-qi
-oZ
-oZ
-sX
-rv
-oZ
-oZ
-fr
-fr
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-fr
-eL
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-fr
-eL
-eL
-eL
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-eL
-eJ
-eJ
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-wE
-wV
-xg
-ND
-ND
-ND
-xP
-ND
-ND
-yz
-yR
-wD
-wE
-wD
-xW
-Af
-qi
-qi
-At
-fr
-eJ
-eJ
-eJ
-eL
-eJ
-fr
-fr
-fr
-Bo
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-Ci
-oZ
-oZ
-oZ
-eJ
-ge
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-qi
-fr
-fr
-EV
-qi
-fr
-fr
-eL
-fr
-fr
-eL
-fr
-eL
-eJ
-fr
-fr
-fr
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-oZ
-Fb
-oZ
-oZ
-oZ
-oZ
-Cc
-rV
-rV
-rV
-rW
-fr
-sG
-rV
-rV
-Ji
-By
-eL
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(201,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-fr
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-pa
-rc
-rx
-rc
-pa
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-oZ
-eJ
-eJ
-sX
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-eL
-eL
-fr
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-tp
-tp
-tp
-eJ
-fr
-fr
-fr
-eJ
-eL
-eL
-eL
-eL
-eL
-eJ
-eL
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-wD
-wW
-xg
-ND
-ND
-ND
-ND
-ND
-ND
-yA
-wM
-zm
-zv
-zG
-zR
-qi
-qi
-Ar
-zk
-fr
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-eJ
-ge
-Cl
-eJ
-fr
-eJ
-Cl
-oZ
-fr
-oZ
-fr
-fr
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-oZ
-fr
-fr
-Fb
-oZ
-oZ
-oZ
-oZ
-Cb
-qi
-fr
-fr
-rV
-so
-rV
-fr
-fr
-sE
-qi
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(202,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eL
-fr
-eJ
-fr
-eL
-eJ
-eJ
-eJ
-oZ
-oZ
-pa
-pG
-ry
-pG
-ow
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eL
-eL
-fr
-eJ
-eL
-fr
-fr
-fr
-eJ
-eL
-eJ
-fr
-fr
-eJ
-eL
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-oZ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-oZ
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tz
-tp
-eJ
-fr
-fr
-eL
-eJ
-eL
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-wD
-wD
-wE
-wD
-wP
-wX
-xg
-ND
-ND
-ND
-ND
-ND
-ND
-yB
-xy
-zn
-wL
-wL
-zS
-qi
-qi
-At
-fr
-fr
-eJ
-eJ
-eJ
-rT
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-Cl
-qi
-qi
-Cl
-eJ
-oZ
-oZ
-eJ
-Cl
-qi
-qi
-oZ
-oZ
-oZ
-oZ
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-oZ
-oY
-fr
-oZ
-Fb
-oZ
-oZ
-oZ
-Cl
-Cl
-eJ
-eL
-fr
-fr
-rV
-fr
-fr
-fr
-sE
-qi
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(203,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-oZ
-gg
-qF
-rd
-rz
-rX
-ox
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-eL
-fr
-eJ
-eJ
-eJ
-fr
-fr
-eL
-eL
-eL
-fr
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-tp
-tp
-fr
-fr
-tp
-eJ
-eL
-eL
-eL
-eL
-eL
-eJ
-eL
-fr
-fr
-eL
-eJ
-wE
-wG
-wK
-wO
-wP
-wW
-xh
-wW
-ND
-ND
-ND
-ND
-ND
-yB
-xy
-zn
-wL
-wL
-zS
-qi
-Ar
-zk
-fr
-fr
-eJ
-eJ
-Jq
-rT
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-oZ
-qi
-Cl
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-eJ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-Fc
-Fe
-Fe
-Fe
-Cl
-eJ
-eJ
-eL
-fr
-fr
-rV
-fr
-fr
-fr
-sE
-qi
-qi
-qi
-eL
-eJ
-fr
-fr
-eL
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(204,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eJ
-eJ
-ow
-pa
-pa
-pa
-pa
-re
-rA
-re
-ow
-ox
-ox
-ow
-ox
-ow
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eL
-eL
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-qi
-qi
-fr
-fr
-tp
-eJ
-eJ
-eL
-eL
-eL
-eL
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-wE
-wH
-wL
-wL
-wP
-wW
-xh
-wW
-wW
-ND
-ND
-ND
-ND
-yC
-yS
-zm
-zw
-zH
-zR
-qi
-As
-rV
-rV
-rV
-rV
-Bh
-Bo
-Bz
-fr
-eJ
-eJ
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-ge
-eJ
-oZ
-oZ
-eL
-eL
-fr
-fr
-fr
-fr
-oZ
-oZ
-eJ
-fr
-eL
-eL
-fr
-eJ
-eL
-eL
-fr
-eL
-oZ
-oZ
-fr
-oZ
-fr
-fr
-fr
-oZ
-oZ
-sX
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-fr
-rV
-sn
-rV
-fr
-fr
-sE
-qi
-qi
-qi
-eL
-eJ
-eJ
-fr
-eL
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(205,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ox
-pb
-pB
-qk
-pE
-qH
-rB
-rY
-sr
-pG
-ow
-sZ
-sZ
-ox
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-eJ
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-eJ
-eJ
-eJ
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-sX
-oZ
-oZ
-fr
-eL
-eL
-eL
-eJ
-eL
-eJ
-eJ
-eJ
-tp
-qi
-qi
-fr
-fr
-fr
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-wD
-wI
-wM
-wM
-wR
-wY
-xi
-wW
-wW
-wW
-ND
-ND
-ND
-yD
-yT
-wE
-xW
-zI
-xW
-Af
-At
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-rV
-sn
-rV
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-fr
-oZ
-eL
-fr
-fr
-fr
-eL
-Cl
-qi
-qi
-fr
-fr
-eL
-fr
-fr
-eJ
-eJ
-fr
-fr
-eL
-eJ
-oZ
-fr
-oZ
-fr
-fr
-fr
-fr
-oZ
-eJ
-eJ
-eJ
-pA
-rV
-rV
-rV
-rV
-rW
-fr
-sG
-rV
-rV
-Bo
-sl
-sl
-sl
-sl
-eJ
-eJ
-fr
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(206,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ox
-pc
-pC
-pD
-qG
-rf
-qH
-qH
-ss
-rf
-sQ
-pG
-rX
-ox
-eJ
-eJ
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-eL
-eL
-fr
-fr
-eL
-eJ
-eJ
-fr
-fr
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-eJ
-eJ
-tp
-tp
-tp
-tp
-tp
-qi
-fr
-fr
-tp
-tp
-tp
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-wE
-wJ
-wN
-wL
-wP
-wZ
-xj
-xu
-xu
-xu
-xQ
-xQ
-xQ
-yE
-yQ
-wE
-eJ
-zJ
-zT
-yi
-zk
-fr
-fr
-fr
-fr
-fr
-rV
-rV
-rW
-fr
-sG
-rV
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-Ci
-Ci
-oZ
-oZ
-oZ
-oZ
-oY
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-fr
-Cl
-qi
-qi
-Cl
-fr
-eJ
-fr
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-rV
-so
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(207,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ow
-pd
-pD
-pD
-pE
-rg
-qH
-rZ
-ss
-ql
-ow
-ta
-th
-ow
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-tp
-tp
-tp
-tp
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oY
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-eJ
-eJ
-eL
-eJ
-eJ
-fr
-eJ
-eL
-eJ
-tp
-qi
-qi
-tp
-qi
-qi
-qi
-qi
-tp
-qi
-fr
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-wD
-wE
-wE
-wP
-wP
-wW
-wW
-wW
-wW
-wW
-wW
-ya
-ya
-ya
-wL
-xW
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-rV
-so
-rV
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-eJ
-qi
-qi
-Cl
-eJ
-eJ
-eJ
-eJ
-Cl
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-fr
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-fr
-oZ
-fr
-oZ
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(208,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-ox
-ox
-pE
-pE
-pE
-pE
-rC
-sa
-ss
-ql
-ox
-ow
-ox
-ow
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-tp
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tz
-tD
-tp
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eL
-eJ
-eL
-eL
-eL
-eL
-eJ
-tp
-fr
-qi
-tv
-qi
-tz
-tp
-qi
-tp
-qi
-tz
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-wE
-wP
-wD
-wP
-wP
-wP
-wD
-wD
-wE
-wE
-wE
-xW
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-Cl
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-qi
-oZ
-fr
-fr
-fr
-fr
-eL
-fr
-eJ
-oZ
-oZ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-oZ
-oZ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eJ
-fr
-fr
-eL
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(209,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ow
-pe
-pF
-pG
-qH
-rh
-qH
-sb
-ss
-rf
-pE
-tb
-ti
-ow
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-tp
-tw
-tw
-qi
-qi
-tp
-tp
-tp
-tp
-eJ
-gW
-tp
-qi
-qi
-tp
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-oZ
-oZ
-oZ
-oZ
-oY
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-tp
-qi
-qi
-tp
-qi
-fr
-tp
-qi
-tp
-qi
-tp
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eK
-eK
-eK
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-eL
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-Aq
-oZ
-oZ
-oZ
-qi
-oZ
-oZ
-fr
-fr
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-fr
-oZ
-oZ
-oZ
-fr
-eJ
-eL
-eL
-eL
-eJ
-eL
-eJ
-fr
-eL
-eL
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(210,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ox
-pf
-pG
-ql
-qH
-qH
-qH
-qH
-ss
-pG
-sR
-pG
-tj
-ox
-eJ
-tp
-tp
-tp
-tp
-tp
-tp
-tp
-qi
-tz
-qi
-tt
-qi
-qi
-qi
-tp
-tp
-tp
-tp
-tp
-tv
-tp
-tp
-tp
-tp
-tp
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tz
-qi
-tp
-qi
-qi
-tp
-qi
-fr
-qi
-tD
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eK
-eK
-eK
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-eJ
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-eL
-eJ
-fr
-eJ
-eJ
-eJ
-oZ
-ge
-ge
-oZ
-Cl
-eJ
-oZ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-qi
-qi
-Cl
-eJ
-eJ
-eJ
-Cl
-qi
-qi
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-fr
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-fr
-eJ
-eL
-fr
-fr
-fr
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(211,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ow
-pg
-pg
-qm
-qI
-ri
-qH
-qH
-st
-rf
-ow
-tc
-tk
-ox
-eJ
-tp
-ts
-tu
-tp
-tw
-tw
-tp
-qi
-qi
-qi
-qi
-tz
-qi
-qi
-qi
-qi
-qi
-qi
-qi
-qi
-qi
-qi
-qi
-qi
-tR
-tR
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-tv
-tp
-tp
-tp
-tp
-tp
-tp
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-rV
-sn
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-Ad
-Bp
-qh
-pA
-eL
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-fr
-fr
-fr
-eL
-fr
-eJ
-eJ
-eJ
-Cl
-qi
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-qi
-Cl
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-oZ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eL
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(212,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ow
-ox
-ox
-pE
-pE
-ow
-ow
-pE
-su
-ox
-ox
-ox
-ow
-ow
-eJ
-tp
-qi
-qi
-tp
-qi
-qi
-tp
-qi
-tp
-tp
-tp
-tp
-tp
-tp
-tp
-tp
-tp
-tp
-tv
-tp
-tp
-tp
-tv
-tp
-tp
-tp
-tp
-tp
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-tm
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-qi
-tD
-tp
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-pA
-rW
-fr
-sG
-rV
-rV
-rV
-rV
-rV
-rV
-rV
-rV
-rV
-rV
-rV
-Bi
-qi
-qi
-BH
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eL
-fr
-ge
-oZ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-fr
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eL
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(213,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-pE
-rD
-pG
-rz
-ox
-eJ
-eJ
-eJ
-eJ
-gW
-tp
-qi
-tt
-tp
-qi
-qi
-tp
-qi
-tp
-qi
-qi
-tw
-tp
-eJ
-eJ
-tp
-qi
-qi
-qi
-tp
-eJ
-tp
-qi
-qi
-qi
-tp
-gW
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-tp
-tz
-qi
-ts
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eL
-eL
-eL
-rV
-so
-rV
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-fr
-fr
-fr
-oZ
-Ae
-qi
-qi
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-sX
-oZ
-oZ
-eJ
-eJ
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eL
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(214,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ox
-rE
-sc
-sv
-ow
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tt
-qi
-tp
-tv
-tp
-tp
-qi
-tp
-qi
-qi
-tz
-tp
-eJ
-eJ
-tp
-qi
-qi
-qi
-tp
-gW
-tp
-qi
-qi
-qi
-tp
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-tp
-tp
-tp
-tp
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eL
-eL
-fr
-eL
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-eL
-eJ
-fr
-rV
-fr
-fr
-fr
-eL
-fr
-oZ
-eJ
-pA
-eJ
-eJ
-eJ
-eL
-eJ
-eL
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eJ
-eL
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-oZ
-eJ
-ge
-oZ
-eJ
-eJ
-Ci
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-fr
-oZ
-fr
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(215,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-ow
-rF
-sd
-ow
-ox
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-qi
-qi
-tv
-qi
-qi
-qi
-qi
-tv
-qi
-tp
-tp
-tp
-eJ
-eJ
-tp
-qi
-qi
-tp
-tp
-eJ
-tp
-tp
-qi
-qi
-tp
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eL
-eL
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-fr
-fr
-fr
-rV
-fr
-fr
-fr
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-fr
-eJ
-fr
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eJ
-oZ
-sX
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(216,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ox
-ox
-ox
-ow
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-tp
-qi
-qi
-tp
-qi
-tt
-qi
-tp
-tp
-tp
-tp
-eJ
-eJ
-gW
-eJ
-tp
-tz
-tD
-tp
-eJ
-eJ
-eJ
-tp
-tD
-tz
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eL
-eL
-eJ
-fr
-eJ
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eL
-eJ
-fr
-eL
-eJ
-fr
-fr
-fr
-eJ
-gW
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-fr
-eJ
-eJ
-eL
-fr
-eJ
-eL
-fr
-eJ
-fr
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-ge
-fr
-fr
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-oZ
-eJ
-ge
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-fr
-fr
-oZ
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eL
-eJ
-eJ
-oZ
-oZ
-oZ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(217,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-qi
-qi
-qi
-tp
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eJ
-eL
-eJ
-eJ
-fr
-eL
-fr
-fr
-fr
-eJ
-fr
-eL
-eJ
-fr
-fr
-eJ
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-fr
-fr
-eL
-fr
-eL
-fr
-fr
-fr
-eL
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eL
-eJ
-fr
-fr
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-Ci
-eJ
-eJ
-ge
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-oZ
-fr
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-Aq
-La
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(218,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-tp
-tp
-tp
-tp
-tp
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-gW
-eJ
-eJ
-gW
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-ge
-ge
-ge
-ge
-ge
-ge
-eJ
-eJ
-ge
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-fr
-eL
-eL
-eL
-eJ
-eJ
-fr
-eJ
-eJ
-fr
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eJ
-eJ
-fr
-eJ
-fr
-fr
-fr
-eJ
-eJ
-fr
-eJ
-fr
-eJ
-eL
-eJ
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-fr
-eJ
-eL
-eJ
-fr
-fr
-fr
-eJ
-eJ
-eL
-eL
-eL
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-oZ
-sX
-oZ
-oZ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(219,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eL
-eL
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-fr
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eL
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-ge
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-eJ
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(220,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(221,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(222,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(223,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(224,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(225,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(226,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-bh
-"}
-(227,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(228,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(229,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(230,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(231,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(232,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(233,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(234,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(235,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(236,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(237,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(238,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(239,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(240,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(241,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(242,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(243,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(244,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(245,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(246,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(247,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(248,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(249,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(250,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(251,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(252,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(253,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(254,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
-(255,1,1) = {"
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-ad
-"}
diff --git a/_maps/RandomZLevels/VR/syndicate_trainer.dmm b/_maps/RandomZLevels/VR/syndicate_trainer.dmm
deleted file mode 100644
index 7d167c64c21..00000000000
--- a/_maps/RandomZLevels/VR/syndicate_trainer.dmm
+++ /dev/null
@@ -1,19176 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/open/space,
-/area/space)
-"ab" = (
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/maint)
-"ac" = (
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/cafe)
-"ad" = (
-/turf/closed/indestructible/fakeglass,
-/area/awaymission/centcomAway/cafe)
-"ag" = (
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"ai" = (
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aj" = (
-/obj/machinery/vending/cigarette,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"al" = (
-/obj/machinery/vending/dinnerware,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"am" = (
-/obj/structure/closet/chefcloset,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"ao" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"ap" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aq" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"ar" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/kitchen/rollingpin,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"as" = (
-/obj/structure/table,
-/obj/item/reagent_containers/glass/beaker,
-/obj/item/reagent_containers/food/condiment/enzyme,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"at" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"au" = (
-/obj/machinery/hydroponics,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"av" = (
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"ay" = (
-/obj/structure/table,
-/obj/item/kitchen/knife/butcher,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"az" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aA" = (
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aB" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aE" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"aF" = (
-/obj/structure/table,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aG" = (
-/obj/effect/landmark/vr_spawn/syndicate,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aH" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aI" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aK" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aL" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/drinks/shaker,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aM" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aP" = (
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"aQ" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aR" = (
-/obj/machinery/door/airlock/maintenance,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"aS" = (
-/turf/closed/indestructible/fakeglass,
-/area/awaymission/centcomAway/maint)
-"aV" = (
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/hangar)
-"aW" = (
-/obj/structure/table/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aY" = (
-/obj/structure/sink,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"aZ" = (
-/obj/structure/table,
-/obj/machinery/processor{
- pixel_y = 10
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"ba" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bb" = (
-/obj/item/radio,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"bc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bd" = (
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"be" = (
-/obj/effect/decal/cleanable/oil,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bg" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/peppermill,
-/obj/item/reagent_containers/food/condiment/saltshaker,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bh" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"bj" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/fire,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"bk" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space/nearstation)
-"bl" = (
-/obj/machinery/door/poddoor{
- id = "XCCHangar1";
- name = "XCC Main Hangar"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bn" = (
-/turf/closed/wall/mineral/titanium/interior,
-/area/awaymission/centcomAway/hangar)
-"bo" = (
-/obj/structure/shuttle/engine/propulsion/right{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bp" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bq" = (
-/obj/structure/shuttle/engine/propulsion/left{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bs" = (
-/obj/structure/closet/crate,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bt" = (
-/obj/machinery/door/airlock/centcom,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bu" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bw" = (
-/obj/machinery/chem_master/condimaster{
- name = "CondiMaster Neo"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bx" = (
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bz" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bA" = (
-/obj/structure/rack,
-/obj/item/extinguisher/mini,
-/obj/item/clothing/head/hardhat/red,
-/obj/item/clothing/gloves/color/black,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"bB" = (
-/turf/closed/wall/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"bC" = (
-/obj/structure/window/reinforced,
-/obj/structure/shuttle/engine/heater{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bF" = (
-/obj/machinery/door/airlock/external{
- name = "Salvage Shuttle Dock"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bJ" = (
-/obj/structure/chair/comfy/brown,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bK" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bL" = (
-/obj/structure/kitchenspike,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bM" = (
-/obj/machinery/gibber,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"bN" = (
-/obj/machinery/autolathe,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"bQ" = (
-/obj/structure/table,
-/obj/item/clothing/glasses/welding,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"bU" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"bV" = (
-/turf/open/floor/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"bW" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/toxin{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/item/storage/firstaid/toxin,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"bX" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/fire,
-/obj/item/storage/firstaid/fire{
- pixel_x = -2;
- pixel_y = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"bY" = (
-/obj/structure/table,
-/obj/item/storage/firstaid/regular{
- pixel_x = 2
- },
-/obj/item/storage/firstaid/regular{
- pixel_x = -2;
- pixel_y = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"cb" = (
-/obj/item/paper_bin,
-/obj/structure/table,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cc" = (
-/obj/item/clipboard,
-/obj/structure/table,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cd" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"ce" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cg" = (
-/obj/structure/sign/departments/botany,
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/cafe)
-"ch" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_y = 3
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cj" = (
-/obj/machinery/door/airlock/external,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"ck" = (
-/obj/machinery/door/airlock/external,
-/obj/structure/fans/tiny/invisible,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"cl" = (
-/turf/open/floor/plating/airless,
-/area/awaymission/centcomAway/maint)
-"cm" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/awaymission/centcomAway/hangar)
-"cn" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"co" = (
-/obj/item/pen,
-/obj/structure/table,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cq" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cv" = (
-/obj/structure/sign/warning/vacuum,
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/maint)
-"cx" = (
-/obj/machinery/door/airlock/maintenance,
-/turf/open/floor/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"cB" = (
-/obj/machinery/door/window/westleft,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cE" = (
-/obj/machinery/seed_extractor,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cF" = (
-/obj/machinery/vending/hydroseeds{
- slogan_delay = 700
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cG" = (
-/obj/machinery/vending/hydronutrients,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cH" = (
-/obj/machinery/biogenerator,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cJ" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"cK" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/fancy/donut_box,
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"cL" = (
-/obj/structure/table/reinforced,
-/obj/item/pen,
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"cM" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"cN" = (
-/obj/machinery/sleeper{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"cO" = (
-/obj/machinery/sleep_console{
- icon_state = "console";
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"cP" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"cS" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"cT" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/neck/stethoscope,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"cU" = (
-/obj/machinery/modular_computer/console{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"cV" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"cW" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"cX" = (
-/obj/structure/table/reinforced,
-/obj/item/clipboard,
-/obj/item/stamp,
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"da" = (
-/obj/structure/table,
-/obj/item/assembly/flash/handheld,
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"db" = (
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"dc" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"dd" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"dl" = (
-/obj/structure/table,
-/obj/item/storage/box/handcuffs,
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"dm" = (
-/obj/machinery/door/window/northright{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Security Desk";
- req_access_txt = "103"
- },
-/turf/open/floor/mineral/titanium/yellow,
-/area/awaymission/centcomAway/hangar)
-"dn" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"do" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"dp" = (
-/obj/structure/closet/crate/large,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"dq" = (
-/obj/structure/dresser,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"dr" = (
-/obj/structure/table/reinforced,
-/obj/item/t_scanner,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"ds" = (
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal/bin,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"dv" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"dw" = (
-/obj/structure/tank_dispenser,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"dy" = (
-/obj/structure/closet/firecloset/full,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"dz" = (
-/obj/structure/bed,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"dA" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"dB" = (
-/obj/structure/ore_box,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"dC" = (
-/obj/structure/table,
-/obj/item/storage/fancy/donut_box,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"dE" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"dG" = (
-/obj/structure/bed,
-/turf/open/floor/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"dL" = (
-/obj/machinery/door/airlock/hatch{
- name = "Rest Room"
- },
-/turf/open/floor/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"dM" = (
-/obj/structure/closet/crate/large,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"dN" = (
-/obj/structure/closet/crate,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"dO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"dQ" = (
-/obj/machinery/door/airlock/maintenance,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"dY" = (
-/obj/machinery/door/airlock/centcom,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"dZ" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"ea" = (
-/obj/structure/table,
-/obj/item/hand_labeler,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"eb" = (
-/obj/structure/table,
-/obj/item/storage/box/donkpockets,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"ec" = (
-/obj/structure/flora/ausbushes,
-/turf/open/floor/plasteel{
- icon_state = "asteroid6";
- name = "sand"
- },
-/area/awaymission/centcomAway/cafe)
-"el" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"et" = (
-/obj/machinery/door/airlock/hatch{
- name = "Cockpit";
- req_access_txt = "109"
- },
-/turf/open/floor/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"eu" = (
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/general)
-"ew" = (
-/obj/machinery/space_heater,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"ex" = (
-/obj/structure/closet/emcloset,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"ey" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/directional{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"ez" = (
-/obj/structure/table,
-/obj/item/radio/off,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"eA" = (
-/obj/structure/chair{
- dir = 4;
- name = "Prosecution"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"eB" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"eG" = (
-/obj/effect/vr_clean_master,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"eH" = (
-/obj/machinery/sleeper{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eI" = (
-/obj/machinery/sleep_console{
- icon_state = "console";
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eJ" = (
-/obj/effect/landmark/vr_spawn/syndicate,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eK" = (
-/obj/structure/table/reinforced,
-/obj/item/tank/internals/anesthetic,
-/obj/item/clothing/mask/breath/medical,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eL" = (
-/obj/machinery/implantchair,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eM" = (
-/obj/structure/table/reinforced,
-/obj/item/extinguisher/mini,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eN" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"eP" = (
-/obj/machinery/computer/cloning,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eQ" = (
-/obj/machinery/dna_scannernew,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eR" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"eS" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/telecomms/allinone/indestructable,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eT" = (
-/obj/machinery/door/airlock/engineering{
- name = "Engineering Access";
- req_access_txt = "10"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eU" = (
-/obj/machinery/door/window/northleft,
-/obj/structure/chair,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"eV" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eW" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"eY" = (
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/courtroom)
-"eZ" = (
-/obj/structure/table,
-/obj/item/storage/lockbox,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"fa" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"fb" = (
-/obj/structure/frame/computer{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"fc" = (
-/obj/structure/table,
-/obj/item/clipboard,
-/obj/item/pen,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"fd" = (
-/obj/structure/table,
-/obj/item/paper_bin,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"fh" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fj" = (
-/obj/structure/bed,
-/obj/item/bedsheet,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fk" = (
-/obj/structure/table,
-/obj/item/storage/box/prisoner,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fl" = (
-/obj/structure/closet/secure_closet/security,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fm" = (
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fn" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"fo" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"fp" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"fq" = (
-/obj/machinery/power/terminal,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"ft" = (
-/obj/structure/sign/warning/electricshock,
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/general)
-"fu" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fv" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fw" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fy" = (
-/obj/structure/sign/departments/medbay/alt,
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/general)
-"fA" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/storage/box/monkeycubes/syndicate,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fB" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fC" = (
-/obj/machinery/computer/scan_consolenew,
-/obj/item/dnainjector/telemut/darkbundle,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fF" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fG" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering";
- req_access_txt = "32"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fH" = (
-/obj/structure/table/wood,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fJ" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fK" = (
-/obj/machinery/door/window/northleft,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fL" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fM" = (
-/obj/machinery/power/smes,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fN" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fO" = (
-/obj/machinery/power/smes,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fQ" = (
-/obj/structure/sign/departments/science,
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/general)
-"fR" = (
-/obj/machinery/door/window/eastright,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fT" = (
-/obj/machinery/door/airlock/centcom,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"fU" = (
-/obj/machinery/door/airlock/public/glass{
- name = "Med-Sci";
- req_access_txt = "9"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fV" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"fZ" = (
-/obj/structure/table,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"ga" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"gb" = (
-/obj/structure/grille,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"gd" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/directional{
- dir = 9
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gf" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gh" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/directional{
- dir = 5
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gj" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"gl" = (
-/obj/item/xenos_claw,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gn" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"go" = (
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"gp" = (
-/obj/machinery/shieldgen,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"gr" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gs" = (
-/obj/machinery/pdapainter,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gt" = (
-/obj/machinery/photocopier,
-/obj/item/paper/fluff/awaymissions/centcom/gateway_memo,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gu" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gw" = (
-/obj/structure/table/reinforced,
-/obj/item/paper_bin,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gx" = (
-/obj/structure/filingcabinet,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gy" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gB" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"gE" = (
-/obj/structure/closet/secure_closet/engineering_welding,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"gF" = (
-/obj/machinery/door/airlock/command/glass{
- name = "Bridge";
- req_access_txt = "19"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gG" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair_beige"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gH" = (
-/obj/structure/chair,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"gI" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/maint)
-"gJ" = (
-/obj/structure/bodycontainer/morgue,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gM" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gN" = (
-/obj/machinery/modular_computer/console{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gO" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gP" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gQ" = (
-/obj/machinery/modular_computer/console{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gS" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- dir = 8
- },
-/turf/closed/wall/mineral/titanium/interior,
-/area/awaymission/centcomAway/hangar)
-"gU" = (
-/obj/structure/table,
-/obj/item/paper/fluff/awaymissions/centcom/gateway_memo,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"gW" = (
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gX" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"gZ" = (
-/obj/structure/chair/office/dark,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hb" = (
-/obj/machinery/vending/cigarette,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"hc" = (
-/obj/machinery/door/airlock/shuttle,
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"hd" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_y = 25
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/awaymission/centcomAway/hangar)
-"he" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/turf/open/floor/mineral/titanium,
-/area/awaymission/centcomAway/hangar)
-"hg" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"hh" = (
-/obj/structure/closet/body_bag,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hi" = (
-/obj/structure/sign/warning/biohazard,
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/general)
-"hj" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/PDAs,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hk" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/red,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hl" = (
-/obj/machinery/modular_computer/console{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"ho" = (
-/obj/structure/table/reinforced,
-/obj/item/folder/blue,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hq" = (
-/turf/closed/indestructible/fakeglass,
-/area/awaymission/centcomAway/courtroom)
-"hx" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/storage/toolbox/electrical{
- pixel_y = 5
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"hy" = (
-/obj/structure/sign/warning/securearea,
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/general)
-"hA" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hG" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"hH" = (
-/obj/structure/table/reinforced,
-/obj/item/storage/box/bodybags,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hJ" = (
-/obj/structure/toilet{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hK" = (
-/obj/machinery/button/door/indestructible{
- id = "XCCHangar1";
- name = "Hangar Bay Blast Doors";
- pixel_x = -28;
- pixel_y = 7;
- req_access_txt = "2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"hL" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"hM" = (
-/obj/structure/rack,
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"hN" = (
-/obj/structure/rack,
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"hO" = (
-/obj/structure/closet,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"hP" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"hQ" = (
-/obj/machinery/power/solar/fake,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/awaymission/centcomAway/maint)
-"hR" = (
-/obj/structure/closet/secure_closet/medical2,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"hS" = (
-/obj/structure/table/wood,
-/obj/item/paper_bin,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"hU" = (
-/obj/structure/sign/warning/vacuum,
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/hangar)
-"hV" = (
-/obj/structure/bodycontainer/crematorium,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hW" = (
-/obj/item/twohanded/required/kirbyplants,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hX" = (
-/obj/machinery/button/crematorium/indestructible{
- pixel_y = 25
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"hY" = (
-/obj/structure/closet/secure_closet/injection,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"hZ" = (
-/obj/structure/bed,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"ia" = (
-/obj/structure/closet/secure_closet/courtroom,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"ib" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"ie" = (
-/obj/machinery/vending/snack,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"ig" = (
-/obj/machinery/vending/coffee,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"ih" = (
-/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"ii" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/awaymission/centcomAway/hangar)
-"ij" = (
-/obj/machinery/computer/mech_bay_power_console,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"il" = (
-/obj/structure/mecha_wreckage/ripley,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"im" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"in" = (
-/obj/structure/rack,
-/obj/item/clothing/glasses/night,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"io" = (
-/obj/structure/closet/emcloset,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"ip" = (
-/obj/structure/bookcase,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"iq" = (
-/obj/structure/closet/secure_closet/hos,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"ir" = (
-/obj/structure/closet/crate/trashcart,
-/obj/item/reagent_containers/spray/cleaner,
-/obj/item/reagent_containers/glass/bucket,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"is" = (
-/obj/structure/bookcase,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"it" = (
-/obj/machinery/door/poddoor/shutters{
- id = "XCCsec3";
- name = "XCC Main Access Shutters"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"iu" = (
-/obj/structure/flora/ausbushes,
-/turf/open/floor/plasteel{
- icon_state = "asteroid6";
- name = "sand"
- },
-/area/awaymission/centcomAway/general)
-"iv" = (
-/turf/closed/indestructible/fakeglass,
-/area/space/nearstation)
-"iy" = (
-/obj/machinery/door/poddoor{
- id = "XCCMechs";
- name = "XCC Mech Bay"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"iz" = (
-/obj/effect/turf_decal/bot,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"iA" = (
-/obj/machinery/mass_driver{
- dir = 8;
- id = "XCCMechs";
- name = "gravpult"
- },
-/obj/effect/turf_decal/bot,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"iB" = (
-/obj/effect/turf_decal/loading_area{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"iF" = (
-/obj/machinery/recharge_station,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"iM" = (
-/obj/structure/closet/wardrobe/red,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"iN" = (
-/obj/structure/mecha_wreckage/seraph,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"iQ" = (
-/obj/structure/table/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"iR" = (
-/obj/structure/closet/secure_closet/security,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"iT" = (
-/obj/structure/table/wood{
- dir = 9
- },
-/obj/item/clothing/mask/cigarette/cigar/havana,
-/obj/item/reagent_containers/food/drinks/sillycup,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"iU" = (
-/obj/structure/table/wood{
- dir = 5
- },
-/obj/item/lighter,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"iV" = (
-/obj/structure/table/wood{
- dir = 5
- },
-/obj/item/storage/backpack/satchel/fireproof,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"iW" = (
-/obj/machinery/modular_computer/console,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"iY" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door/indestructible{
- id = "XCCsec3";
- name = "XCC Shutter 3 Control"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"ja" = (
-/obj/machinery/button/massdriver/indestructible{
- id = "XCCMechs";
- name = "XCC Mechbay Mass Driver";
- pixel_x = 25
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"jb" = (
-/obj/machinery/mecha_part_fabricator,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"jd" = (
-/obj/structure/table/wood{
- dir = 10
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jg" = (
-/obj/structure/table/reinforced,
-/obj/item/pen,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jh" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jk" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jq" = (
-/obj/item/stamp,
-/obj/structure/table/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jr" = (
-/obj/structure/table,
-/obj/item/bot_assembly/medbot,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"js" = (
-/obj/structure/table,
-/obj/item/assembly/flash/handheld,
-/obj/item/assembly/flash/handheld,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"jt" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"ju" = (
-/obj/structure/table,
-/obj/item/mmi,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"jw" = (
-/obj/machinery/door/airlock/maintenance,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jx" = (
-/obj/machinery/door/window,
-/obj/machinery/door/window/northright,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jy" = (
-/obj/structure/sink/puddle,
-/turf/open/floor/plasteel{
- icon_state = "asteroid6";
- name = "sand"
- },
-/area/awaymission/centcomAway/general)
-"jB" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jC" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/vr_spawn/syndicate,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jK" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/middle{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jL" = (
-/obj/machinery/door/poddoor/shutters{
- id = "XCCFerry";
- name = "XCC Ferry Hangar"
- },
-/obj/effect/turf_decal/delivery,
-/obj/structure/fans/tiny/invisible,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"jM" = (
-/obj/structure/chair,
-/obj/effect/landmark/vr_spawn/syndicate,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jN" = (
-/obj/machinery/vending/coffee,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jO" = (
-/obj/machinery/vending/cigarette,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jP" = (
-/obj/machinery/door/airlock/external{
- name = "Arrival Airlock"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jQ" = (
-/obj/structure/table,
-/obj/item/paper/pamphlet/centcom/visitor_info,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jR" = (
-/obj/machinery/door/poddoor/shutters{
- id = "XCCsec1";
- name = "XCC Checkpoint 1 Shutters"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jS" = (
-/obj/machinery/door/poddoor/shutters{
- id = "XCCsec2";
- name = "XCC Checkpoint 2 Shutters"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"jU" = (
-/obj/structure/sign/warning/vacuum,
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/general)
-"jX" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/landmark/vr_spawn/syndicate,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kf" = (
-/obj/machinery/button/door/indestructible{
- id = "XCCFerry";
- name = "Hangar Bay Shutters";
- pixel_x = -28;
- pixel_y = 7;
- req_access_txt = "2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"kj" = (
-/obj/effect/turf_decal/delivery{
- dir = 6
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kl" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/end{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kn" = (
-/obj/structure/table,
-/obj/item/flashlight/flare,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"kp" = (
-/obj/structure/table,
-/obj/item/multitool,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"kq" = (
-/obj/structure/table/reinforced,
-/obj/item/paper/pamphlet/centcom/visitor_info,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kr" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door/indestructible{
- id = "XCCsec1";
- name = "XCC Shutter 1 Control"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"ku" = (
-/obj/item/paper_bin,
-/obj/structure/table/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kv" = (
-/obj/effect/spawner/structure/window/hollow/reinforced/directional{
- dir = 10
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kB" = (
-/obj/machinery/photocopier,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kC" = (
-/obj/item/clipboard,
-/obj/structure/table,
-/obj/item/taperecorder,
-/obj/item/stamp,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kD" = (
-/obj/machinery/door/window/northright{
- icon_state = "right";
- dir = 2
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kE" = (
-/obj/structure/table/reinforced,
-/obj/machinery/button/door/indestructible{
- id = "XCCsec2";
- name = "XCC Shutter 2 Control"
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kJ" = (
-/obj/structure/table,
-/obj/item/storage/box/handcuffs,
-/obj/item/stamp,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kK" = (
-/obj/machinery/door/airlock/external,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kN" = (
-/obj/structure/table/wood,
-/obj/item/clothing/accessory/medal,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kO" = (
-/obj/structure/table/wood,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kP" = (
-/obj/structure/table/wood,
-/obj/item/reagent_containers/food/drinks/trophy/gold_cup,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kQ" = (
-/obj/structure/table/wood,
-/obj/item/clothing/accessory/medal/gold,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"kS" = (
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/thunderdome)
-"kT" = (
-/obj/structure/shuttle/engine/propulsion/right{
- dir = 1
- },
-/turf/open/space,
-/area/space/nearstation)
-"kU" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 1
- },
-/turf/open/space,
-/area/space/nearstation)
-"kV" = (
-/obj/structure/shuttle/engine/propulsion/left{
- dir = 1
- },
-/turf/open/space,
-/area/space/nearstation)
-"kW" = (
-/obj/structure/table,
-/obj/item/paicard,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"kX" = (
-/obj/structure/table,
-/obj/item/camera,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"kY" = (
-/obj/machinery/door/airlock/external,
-/obj/structure/fans/tiny/invisible,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"kZ" = (
-/obj/machinery/vending/coffee,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"la" = (
-/obj/structure/table,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lb" = (
-/obj/machinery/vending/cigarette,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lc" = (
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"le" = (
-/obj/machinery/door/window/southleft,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lf" = (
-/obj/effect/spawner/structure/window/hollow/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lg" = (
-/obj/machinery/door/window/southright,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lh" = (
-/obj/structure/chair,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lj" = (
-/obj/structure/chair/comfy/black{
- dir = 1
- },
-/obj/effect/landmark/vr_spawn/syndicate,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"ll" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lm" = (
-/obj/structure/closet/crate/trashcart,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"ln" = (
-/obj/structure/reagent_dispensers/water_cooler,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lo" = (
-/obj/machinery/vending/snack,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lp" = (
-/obj/structure/table,
-/obj/item/lipstick,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lq" = (
-/obj/structure/table/wood,
-/obj/item/radio/off,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lr" = (
-/obj/machinery/icecream_vat,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"ls" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lu" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"lv" = (
-/obj/structure/rack,
-/obj/item/restraints/legcuffs/beartrap,
-/obj/item/twohanded/fireaxe,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lw" = (
-/turf/closed/indestructible/fakeglass,
-/area/awaymission/centcomAway/thunderdome)
-"lz" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"lA" = (
-/obj/machinery/door/poddoor{
- id = "XCCtdomemelee";
- name = "XCC Thunderdome Melee"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lB" = (
-/obj/item/reagent_containers/glass/rag,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"lD" = (
-/obj/structure/sink{
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- pixel_x = -28
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lF" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lG" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/red,
-/obj/item/clothing/shoes/sneakers/brown,
-/obj/item/clothing/suit/armor/tdome/red,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/hatchet,
-/obj/item/shield/riot,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lI" = (
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lJ" = (
-/obj/machinery/door/poddoor{
- id = "XCCtdome";
- name = "XCC Thunderdome"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lK" = (
-/obj/machinery/igniter/on,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lL" = (
-/obj/structure/rack,
-/obj/item/clothing/under/color/green,
-/obj/item/clothing/shoes/sneakers/brown,
-/obj/item/clothing/suit/armor/tdome/green,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/hatchet,
-/obj/item/shield/riot,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lM" = (
-/obj/structure/table/reinforced,
-/obj/item/taperecorder,
-/obj/item/tape/random,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"lN" = (
-/obj/structure/mirror{
- pixel_x = 28
- },
-/obj/structure/sink{
- dir = 4;
- pixel_x = 11
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lS" = (
-/obj/machinery/chem_master,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"lU" = (
-/obj/structure/urinal{
- pixel_y = 32
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lV" = (
-/obj/machinery/shower{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"lX" = (
-/obj/machinery/chem_dispenser,
-/obj/item/storage/box/beakers,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"lZ" = (
-/obj/machinery/shower{
- dir = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"ma" = (
-/obj/machinery/door/airlock/freezer,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mb" = (
-/obj/machinery/door/poddoor{
- id = "XCCtdomeguns";
- name = "XCC Thunderdome Guns"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mc" = (
-/obj/item/soap/nanotrasen,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"md" = (
-/obj/structure/rack,
-/obj/item/gun/energy/laser/retro,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"me" = (
-/obj/machinery/vending/boozeomat{
- req_access_txt = ""
- },
-/turf/closed/indestructible/riveted,
-/area/awaymission/centcomAway/cafe)
-"mg" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mh" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/snacks/popcorn,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mi" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mj" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/window/southright,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mk" = (
-/obj/structure/table/reinforced,
-/obj/item/reagent_containers/food/snacks/popcorn,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"ml" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mm" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mo" = (
-/obj/machinery/modular_computer/console{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mp" = (
-/obj/structure/closet/secure_closet/bar,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mq" = (
-/obj/structure/table,
-/obj/item/storage/box/handcuffs,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mr" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/electrical,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"ms" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mt" = (
-/obj/machinery/button/door/indestructible{
- id = "XCCtdomemelee";
- name = "XCC Thunderdome Melee!"
- },
-/obj/structure/table/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mu" = (
-/obj/structure/chair/comfy/teal,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mv" = (
-/obj/machinery/button/door/indestructible{
- id = "XCCtdomeguns";
- name = "XCC Thunderdome Guns!"
- },
-/obj/structure/table/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mw" = (
-/obj/structure/table/reinforced,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"my" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mz" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/window/northright,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mF" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mG" = (
-/obj/machinery/shieldgen,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mH" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mI" = (
-/obj/machinery/portable_atmospherics/pump,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mJ" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"mN" = (
-/obj/machinery/door/airlock/centcom,
-/obj/structure/fans/tiny/invisible,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"mQ" = (
-/obj/structure/safe/floor,
-/obj/item/clothing/under/rank/centcom_officer,
-/obj/item/clothing/suit/det_suit,
-/obj/item/gun/ballistic/revolver/mateba,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"mR" = (
-/obj/machinery/door/airlock/centcom,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"mS" = (
-/obj/machinery/door/airlock/external,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"mT" = (
-/obj/machinery/door/airlock/external,
-/obj/structure/fans/tiny/invisible,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"mU" = (
-/obj/structure/rack,
-/obj/item/storage/secure/briefcase,
-/obj/item/storage/belt/utility/full,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"mW" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"mX" = (
-/obj/machinery/door/airlock/centcom,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"mZ" = (
-/obj/machinery/door/airlock/centcom,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/turf/open/floor/plasteel/cafeteria{
- heat_capacity = 1
- },
-/area/awaymission/centcomAway/thunderdome)
-"na" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nb" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nc" = (
-/obj/effect/turf_decal/tile/green{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nd" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"ne" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nf" = (
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"ng" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nh" = (
-/obj/machinery/door/airlock/centcom,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"nj" = (
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nk" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nl" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nm" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nn" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"no" = (
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"np" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nq" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nr" = (
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"ns" = (
-/obj/machinery/portable_atmospherics/scrubber/huge,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nt" = (
-/obj/effect/turf_decal/tile/red{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nu" = (
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nv" = (
-/obj/machinery/door/airlock/centcom,
-/turf/open/floor/plasteel/white,
-/area/awaymission/centcomAway/thunderdome)
-"nw" = (
-/obj/effect/vr_clean_master,
-/turf/open/floor/goonplaque,
-/area/awaymission/centcomAway/thunderdome)
-"nx" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"ny" = (
-/obj/effect/turf_decal/tile/green{
- dir = 1
- },
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/awaymission/centcomAway/thunderdome)
-"nz" = (
-/obj/structure/table,
-/obj/item/reagent_containers/food/condiment/sugar,
-/obj/item/reagent_containers/food/condiment/milk,
-/obj/item/reagent_containers/food/drinks/ice,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/thunderdome)
-"sL" = (
-/obj/machinery/door/airlock/external{
- name = "Arrival Airlock"
- },
-/obj/structure/fans/tiny/invisible,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"zk" = (
-/turf/closed/indestructible/fakeglass,
-/area/awaymission/centcomAway/general)
-"GJ" = (
-/obj/structure/chair,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"KX" = (
-/obj/effect/vr_clean_master,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/general)
-"Tc" = (
-/obj/effect/vr_clean_master,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-"TG" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/vr_clean_master,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/courtroom)
-"TP" = (
-/turf/open/space/basic,
-/area/space)
-"Um" = (
-/obj/effect/vr_clean_master,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/cafe)
-"VC" = (
-/obj/effect/landmark/vr_spawn/syndicate,
-/turf/open/indestructible,
-/area/awaymission/centcomAway/hangar)
-
-(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(3,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(6,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(8,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(9,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(12,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(13,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(19,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(20,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(21,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(22,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(23,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(24,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(25,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(26,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(27,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(28,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(29,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(30,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(31,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-aV
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-aV
-aV
-aV
-iy
-aV
-iy
-aV
-iy
-aV
-iy
-aV
-aV
-jL
-jL
-jL
-jL
-jL
-jL
-jL
-aV
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(32,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bc
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-hK
-hU
-aV
-iz
-aV
-iz
-aV
-iz
-aV
-iz
-aV
-bc
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-kf
-hU
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(33,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-ih
-iA
-ih
-iA
-ih
-iA
-ih
-iA
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(34,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bn
-bB
-bB
-bB
-bn
-bd
-be
-be
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-gS
-hc
-gS
-bd
-aV
-ii
-iB
-ii
-iB
-ii
-iB
-ii
-iB
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(35,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bo
-bC
-bV
-bV
-bn
-bn
-bd
-bd
-bd
-be
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bB
-hd
-bB
-bd
-aV
-ij
-bd
-ij
-bd
-ij
-bd
-ij
-bd
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(36,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bp
-bC
-bV
-bV
-bV
-bB
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-be
-bd
-bd
-bd
-bd
-bd
-bB
-dc
-bB
-bd
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(37,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bq
-bC
-bn
-cm
-cx
-cm
-bB
-bB
-bB
-bB
-bB
-bB
-bB
-bB
-bB
-bn
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bn
-he
-bn
-bd
-aV
-il
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(38,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bn
-bB
-bn
-cn
-cn
-cJ
-cU
-da
-dl
-bB
-dz
-dz
-dz
-dz
-dz
-bB
-bn
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-be
-bd
-bd
-bd
-bd
-aV
-im
-im
-bd
-bd
-bd
-ja
-im
-im
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(39,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bd
-bB
-bU
-cn
-bV
-cK
-cV
-db
-db
-bB
-bV
-bV
-bV
-bV
-bV
-bB
-bB
-bB
-bB
-bn
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aV
-aV
-aV
-mS
-mS
-aV
-aV
-aV
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(40,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bd
-bF
-bV
-bV
-bV
-cL
-cW
-db
-db
-bB
-dz
-dG
-bV
-dz
-dz
-bB
-ez
-eb
-eZ
-fn
-bd
-bd
-bd
-bd
-bd
-bd
-gS
-hc
-gS
-bd
-bd
-aV
-in
-aV
-iF
-bd
-bd
-bd
-bd
-jr
-aV
-bd
-bd
-bd
-be
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(41,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-be
-bd
-bB
-bW
-cn
-bV
-cM
-cX
-cM
-dm
-cm
-bB
-bB
-dL
-bB
-bB
-cm
-cP
-cn
-fa
-fo
-bd
-bd
-bd
-bd
-bd
-bd
-bB
-hd
-bB
-bd
-bd
-aV
-bd
-aV
-bd
-iN
-bd
-jb
-bd
-js
-aV
-bd
-bd
-bd
-be
-Tc
-bd
-bd
-bd
-VC
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(42,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bd
-bB
-bX
-cn
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-et
-bV
-eR
-fb
-fo
-bd
-bd
-bd
-bd
-bd
-bd
-bB
-dc
-bB
-bd
-bd
-mT
-bd
-mS
-bd
-bd
-VC
-bd
-bd
-jt
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(43,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bd
-bB
-bY
-cn
-bV
-cN
-cn
-cP
-cP
-cn
-cP
-cP
-bV
-cn
-dZ
-bB
-eA
-cn
-fc
-fo
-bd
-bd
-bd
-bd
-bd
-bd
-bn
-he
-bn
-bd
-bd
-aV
-bd
-aV
-bd
-bd
-bd
-jb
-bd
-ju
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(44,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bd
-bF
-bV
-bV
-bV
-cO
-cn
-dc
-dc
-cn
-dc
-dc
-bV
-cn
-ea
-bB
-eB
-ez
-fd
-fp
-bd
-be
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-hL
-aV
-io
-aV
-iF
-bd
-bd
-bd
-bd
-hG
-aV
-bd
-be
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(45,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bd
-bB
-bU
-cn
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-bV
-cn
-eb
-bB
-bB
-bB
-bB
-bn
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aV
-aV
-aV
-mR
-mR
-aV
-aV
-aV
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(46,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bn
-bB
-bn
-cn
-cn
-cP
-cP
-cP
-bV
-cP
-cP
-cP
-bV
-cn
-bU
-bB
-bn
-bd
-bd
-bd
-bd
-bd
-bd
-gn
-bc
-bc
-bc
-bc
-bc
-bc
-hM
-aV
-aa
-zk
-gW
-gW
-gW
-gW
-zk
-aa
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-kn
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(47,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bo
-bC
-bn
-cm
-cx
-cm
-bB
-bB
-bF
-bB
-dA
-bB
-bF
-bB
-bB
-bn
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-do
-bd
-bd
-bd
-bd
-bd
-bd
-hN
-aV
-aa
-zk
-gW
-gW
-gW
-gW
-zk
-aa
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-kn
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-lD
-lc
-lc
-lc
-lc
-lc
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(48,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bp
-bC
-bV
-bV
-bV
-bB
-bd
-dd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-do
-bd
-bd
-bd
-bd
-bd
-bd
-hO
-aV
-aa
-zk
-gW
-gW
-gW
-gW
-zk
-aa
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-kp
-aV
-aa
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-lc
-lc
-lF
-kS
-lU
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(49,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bq
-bC
-bV
-bV
-bn
-bn
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-be
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-do
-bd
-bd
-bd
-bd
-bd
-bd
-hP
-aV
-aa
-zk
-gW
-gW
-gW
-gW
-zk
-aa
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-hG
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-lc
-lc
-lF
-kS
-lc
-lc
-mc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(50,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bn
-bB
-bB
-bB
-bn
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-do
-bd
-bd
-bd
-dd
-bd
-bd
-bQ
-aV
-aa
-zk
-gW
-gW
-gW
-gW
-zk
-aa
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-lF
-lc
-lF
-kS
-lV
-lV
-lV
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(51,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-aV
-bs
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-go
-gE
-gE
-gU
-hg
-hx
-hG
-hG
-aV
-aa
-zk
-gW
-gW
-gW
-gW
-zk
-aa
-aV
-aV
-aV
-mN
-aV
-aV
-aV
-mN
-aV
-aV
-aV
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-kS
-kS
-nv
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(52,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aV
-bd
-be
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-dn
-bc
-bc
-bc
-dM
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-eu
-eu
-gW
-gW
-gW
-gW
-eu
-eu
-eu
-eu
-gW
-gW
-zk
-iu
-zk
-gW
-gW
-eu
-bk
-bk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(53,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-aV
-bd
-bs
-bd
-bd
-bd
-aV
-bd
-bd
-aV
-do
-bd
-bd
-bd
-dN
-aV
-bb
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-dy
-eu
-hV
-gW
-gJ
-gJ
-gJ
-eu
-hW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-hW
-eu
-gW
-gW
-zk
-iu
-zk
-gW
-gW
-zk
-aa
-bk
-bk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(54,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-aE
-aP
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-ck
-ck
-aV
-dp
-dv
-dB
-dB
-dO
-aV
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-bj
-eu
-hX
-gl
-gW
-gW
-gW
-eu
-gW
-gW
-zk
-zk
-zk
-zk
-zk
-zk
-gW
-gW
-eu
-gW
-gW
-zk
-iu
-zk
-gW
-gW
-zk
-aa
-aa
-bk
-bk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-lc
-lc
-lc
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(55,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ab
-ag
-ag
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-ag
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-ag
-ew
-eu
-gW
-gW
-gW
-gW
-gW
-eu
-gW
-gW
-zk
-iu
-iu
-iu
-iu
-zk
-gW
-gW
-eu
-gW
-gW
-zk
-iu
-zk
-gW
-gW
-zk
-aa
-aa
-aa
-bk
-bk
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kW
-lc
-lc
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-lG
-lG
-lG
-lG
-lc
-nh
-lc
-lc
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(56,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ag
-ag
-ag
-ag
-ag
-eG
-ag
-ag
-ag
-aR
-ag
-ag
-aR
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-eu
-gW
-gW
-gW
-gW
-gW
-eu
-ag
-ag
-eu
-gW
-gW
-hh
-hh
-hH
-eu
-gW
-gW
-zk
-zk
-zk
-zk
-zk
-zk
-gW
-gW
-eu
-gW
-gW
-zk
-iu
-zk
-gW
-gW
-zk
-aa
-aa
-aa
-aa
-bk
-bk
-aa
-aa
-aa
-aa
-aa
-kS
-kX
-lc
-lc
-mZ
-lc
-lc
-nz
-kS
-kS
-kS
-lc
-lc
-lc
-lc
-lc
-kS
-kS
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(57,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ag
-ag
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-eu
-gW
-gW
-gW
-fq
-fM
-eu
-ag
-ey
-eu
-eu
-dY
-hi
-hy
-eu
-eu
-hW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-hW
-eu
-gW
-gW
-zk
-iu
-zk
-gW
-gW
-eu
-aa
-aa
-aa
-aa
-aa
-bk
-bk
-aa
-aa
-aa
-aa
-kS
-kX
-lc
-lc
-kS
-lc
-lc
-nz
-kS
-lv
-lA
-lI
-lI
-lc
-lI
-lI
-mb
-md
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(58,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ac
-aF
-aQ
-ac
-aF
-aQ
-ac
-aF
-aQ
-ac
-cj
-cj
-ac
-aF
-aQ
-ac
-aF
-aQ
-ac
-ec
-eu
-gW
-eS
-gW
-gW
-fN
-eu
-ag
-ag
-eu
-gW
-gW
-gW
-gW
-gW
-eu
-eu
-eu
-gW
-gW
-gW
-gW
-gW
-gW
-eu
-eu
-eu
-eu
-dY
-eu
-eu
-eu
-dY
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-aa
-aa
-aa
-aa
-kS
-kS
-lc
-lc
-kS
-lc
-lc
-lr
-kS
-lv
-lA
-lc
-lc
-lc
-lc
-lc
-mb
-md
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(59,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ac
-ai
-aG
-ac
-ai
-aG
-ac
-ai
-aG
-ac
-ai
-ai
-ac
-dq
-aG
-ac
-dq
-aG
-ad
-ec
-eu
-gW
-gW
-gW
-fq
-fO
-eu
-ag
-gp
-eu
-lB
-gW
-eJ
-gW
-gW
-dY
-gW
-dY
-gW
-gW
-gW
-eJ
-gW
-gW
-jw
-gW
-jw
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-kj
-kq
-gW
-gW
-kB
-gW
-iR
-eu
-aa
-aa
-aa
-aa
-kT
-kS
-lc
-lc
-kS
-lc
-lc
-lr
-kS
-lv
-lA
-lc
-lc
-lc
-lc
-lc
-mb
-md
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(60,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ac
-aH
-ai
-ac
-aH
-ai
-ac
-aH
-ai
-ac
-ai
-ai
-ac
-aH
-ai
-ac
-aH
-ai
-ad
-ec
-eu
-gW
-gW
-gW
-gW
-gW
-eu
-ag
-gp
-eu
-ir
-gW
-gW
-gW
-gW
-eu
-eu
-eu
-eu
-dY
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-kj
-iQ
-gW
-gW
-gW
-gW
-iM
-eu
-aa
-aa
-aa
-aa
-kU
-kS
-lc
-lc
-kS
-lc
-lc
-lc
-kS
-lv
-lA
-lc
-lc
-lc
-lc
-lc
-mb
-md
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(61,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aR
-ac
-ac
-bt
-ac
-ac
-bt
-ac
-ac
-bt
-ac
-ai
-ai
-ac
-ac
-bt
-ac
-ac
-bt
-ac
-ec
-eu
-eu
-eT
-eu
-eu
-eu
-eu
-aR
-eu
-eu
-eu
-dY
-eu
-eu
-eu
-eu
-eu
-ip
-gW
-gW
-gW
-gW
-gW
-gW
-eu
-iu
-zk
-jM
-jQ
-jQ
-jX
-gW
-gW
-gW
-kj
-hk
-kr
-gW
-eJ
-gW
-gW
-eu
-aa
-aa
-aa
-aa
-kV
-kS
-lc
-lc
-kS
-mk
-mk
-mk
-kS
-kS
-kS
-lJ
-lJ
-lJ
-lJ
-lJ
-kS
-kS
-kS
-kS
-mX
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(62,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ac
-ec
-eu
-gW
-gW
-gW
-fG
-gW
-gW
-fV
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-eu
-iq
-gW
-gW
-gW
-iT
-jd
-jk
-eu
-jy
-zk
-jM
-jQ
-jQ
-jX
-gW
-gW
-gW
-kj
-jg
-eW
-gW
-gW
-gW
-gW
-eu
-aa
-aa
-TP
-aa
-kS
-kS
-lc
-lc
-kS
-lc
-lc
-lc
-lh
-lw
-ns
-lu
-lu
-lu
-lu
-lu
-nf
-lw
-lc
-lc
-lc
-mm
-kS
-aa
-aa
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(63,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ac
-ec
-eu
-cd
-gW
-gW
-ft
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-eu
-gW
-gW
-gW
-gW
-iU
-eW
-mQ
-eu
-iu
-zk
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-kj
-gw
-gQ
-gQ
-kC
-gW
-gW
-eu
-aa
-aa
-aa
-aa
-aa
-kS
-lc
-lc
-kS
-lc
-lc
-lc
-lh
-lw
-nm
-lc
-lc
-lc
-lc
-lc
-ng
-lw
-lc
-lc
-lc
-la
-kS
-aa
-aa
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(64,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ai
-ai
-aI
-aI
-ai
-ai
-ai
-ai
-aI
-aI
-aI
-aI
-aI
-ai
-ai
-ai
-aI
-aI
-ai
-ad
-ec
-eu
-bN
-gW
-dr
-fu
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-eu
-mU
-gW
-gW
-gW
-iV
-iW
-gW
-eu
-eu
-eu
-eu
-dY
-eu
-eV
-eu
-dY
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-dY
-eu
-bk
-bk
-bk
-bk
-aa
-kS
-lc
-lc
-kS
-lc
-lc
-lc
-lh
-lw
-nn
-lc
-nt
-nx
-nb
-lc
-nl
-lw
-mg
-lc
-lc
-mo
-kS
-aa
-aa
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(65,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ai
-ai
-aF
-aF
-ai
-ai
-ai
-bJ
-cb
-co
-aF
-aF
-aF
-ai
-ai
-ai
-aF
-aF
-ai
-ad
-ec
-eu
-cd
-gW
-dr
-fv
-gW
-gW
-gd
-gr
-gF
-gM
-gX
-gr
-eu
-gW
-gW
-eu
-is
-gW
-gW
-gW
-iW
-eW
-gW
-eu
-iu
-iu
-eu
-jR
-jR
-jR
-jR
-jR
-jR
-jR
-eu
-iQ
-gW
-eV
-gW
-gW
-eu
-zk
-zk
-zk
-eu
-aa
-kS
-lc
-lc
-kS
-lc
-lc
-lc
-lh
-lw
-nm
-lc
-lc
-lc
-lc
-lc
-ng
-lw
-mg
-lc
-mW
-mo
-kS
-aa
-aa
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(66,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ai
-ai
-aF
-aF
-ai
-ai
-ai
-bJ
-cc
-aF
-aF
-aF
-aF
-ai
-ai
-ai
-dC
-aF
-ai
-ad
-ec
-eu
-gW
-gW
-dw
-fw
-gW
-gW
-fw
-gs
-gW
-gN
-gN
-hj
-fu
-gW
-gW
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-zk
-zk
-eu
-dY
-eu
-eV
-eu
-dY
-eu
-eV
-eu
-ku
-jB
-kD
-gW
-gW
-eu
-kN
-kP
-kP
-eu
-aa
-kS
-lc
-lc
-kS
-ll
-lc
-lc
-lh
-lw
-nn
-lc
-lc
-lK
-lc
-lc
-nl
-lw
-mg
-lc
-lc
-lc
-kS
-aa
-aa
-TP
-TP
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(67,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ac
-ac
-eu
-eu
-eu
-eu
-eu
-gW
-gW
-eu
-gt
-gW
-gO
-gW
-hk
-fv
-gW
-gW
-eu
-eu
-eu
-gW
-gW
-gW
-gW
-gW
-fv
-jB
-jB
-jN
-gW
-jB
-gW
-jB
-gW
-jB
-gW
-gd
-kv
-iQ
-eV
-gW
-gW
-eu
-zk
-zk
-zk
-zk
-zk
-kS
-kS
-kY
-kS
-lc
-lc
-lc
-lh
-lw
-nm
-lK
-lc
-lc
-lc
-lK
-ng
-lw
-mg
-lc
-lc
-lc
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(68,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-bt
-gW
-gW
-dY
-gW
-gW
-gW
-gW
-gf
-gu
-gW
-gW
-gZ
-hl
-fv
-gW
-gW
-eu
-it
-eV
-gW
-gW
-gW
-gW
-gW
-fw
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-fw
-gW
-gW
-gW
-gW
-gW
-kK
-gW
-gW
-gW
-kK
-gW
-kY
-lc
-lc
-le
-lc
-lc
-lc
-lh
-lw
-np
-lc
-np
-nx
-ne
-lc
-ne
-lw
-lc
-lc
-lc
-lc
-mt
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(69,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-aK
-gW
-gW
-eV
-gW
-gW
-gW
-gW
-fv
-iW
-gG
-KX
-gW
-hl
-fv
-gW
-gW
-dY
-it
-dY
-gW
-gW
-eJ
-gW
-gW
-jx
-gW
-gW
-gW
-gW
-gW
-KX
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gM
-jK
-eu
-gW
-eJ
-gW
-zk
-zk
-kS
-lc
-lc
-lf
-lc
-lc
-lc
-lh
-lw
-lc
-lc
-ng
-nw
-nd
-lc
-lc
-lw
-lq
-lj
-lc
-lc
-mu
-mw
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(70,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aj
-ai
-ai
-ai
-ai
-aI
-aI
-aI
-ai
-ai
-Um
-ai
-ai
-aI
-aI
-aI
-ai
-ai
-ai
-ai
-bt
-gW
-gW
-dY
-gW
-gW
-gW
-gW
-fw
-gw
-gW
-gW
-gZ
-hl
-fv
-gW
-gW
-eu
-it
-eV
-gW
-gW
-gW
-gW
-gW
-fu
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-fu
-gW
-gW
-gW
-gW
-gW
-kK
-gW
-gW
-gW
-kK
-gW
-kY
-lc
-lc
-lg
-lc
-lc
-lc
-lh
-lw
-no
-lc
-no
-ny
-nc
-lc
-nc
-lw
-lc
-lc
-lc
-lc
-mv
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(71,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-aK
-bt
-aK
-aW
-aW
-aW
-ac
-aK
-cB
-aK
-ac
-aW
-aW
-aW
-aK
-bt
-aK
-ac
-ac
-eu
-eu
-eu
-eu
-eu
-gW
-gW
-eu
-gx
-gW
-gP
-gW
-ho
-fv
-gW
-gW
-eu
-eu
-eu
-gW
-gW
-gW
-gW
-gW
-fv
-jh
-jh
-jO
-gW
-jC
-gW
-jh
-gW
-jh
-gW
-gh
-gr
-iQ
-eV
-gW
-gW
-eu
-zk
-zk
-zk
-zk
-zk
-kS
-kS
-kY
-kS
-lc
-lc
-lc
-lh
-lw
-nd
-lK
-lc
-lc
-lc
-lK
-nj
-lw
-mg
-lc
-lc
-lc
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(72,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-al
-ai
-ai
-ai
-aW
-ai
-ai
-ai
-ac
-ai
-ai
-ai
-ac
-ai
-ai
-ai
-aW
-ai
-ai
-ai
-al
-eu
-eH
-gW
-eH
-fu
-gW
-gW
-gf
-gy
-gW
-gQ
-gQ
-lM
-fw
-gW
-gW
-eu
-iu
-eu
-eu
-iQ
-hk
-jg
-gw
-eu
-zk
-zk
-eu
-dY
-eu
-eV
-eu
-dY
-eu
-kl
-eu
-ku
-jh
-kD
-gW
-gW
-eu
-kO
-kP
-kQ
-eu
-aa
-kS
-lc
-lc
-kS
-ll
-lc
-lc
-lh
-lw
-nq
-lc
-lc
-lK
-lc
-lc
-nk
-lw
-mg
-lc
-lc
-mp
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(73,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-am
-ai
-ai
-ai
-ai
-ai
-ai
-bK
-ac
-ai
-ai
-ai
-ac
-bK
-ai
-ai
-ai
-ai
-ai
-ai
-am
-eu
-eI
-eJ
-eI
-fv
-gW
-gW
-gh
-gr
-gF
-gM
-gX
-gr
-eu
-gW
-gW
-eu
-zk
-eu
-gW
-gW
-iY
-jh
-hl
-eu
-iu
-iu
-eu
-jS
-jS
-jS
-jS
-jS
-jS
-jS
-eu
-iQ
-gW
-eV
-gW
-gW
-eu
-zk
-zk
-zk
-eu
-aa
-kS
-lc
-lc
-kS
-lm
-lc
-lc
-lh
-lw
-nd
-lc
-lc
-lc
-lc
-lc
-nj
-lw
-mg
-lc
-lc
-mq
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(74,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-bg
-ay
-aL
-ai
-ai
-ai
-ai
-aF
-aK
-ai
-aW
-ai
-aK
-aF
-ai
-ai
-ai
-ai
-aL
-ay
-bg
-eu
-gW
-gW
-gW
-fw
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-dY
-gW
-dY
-gW
-gW
-eJ
-gW
-hl
-eu
-eu
-eu
-eu
-dY
-eu
-eV
-eu
-dY
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-dY
-eu
-bk
-bk
-bk
-bk
-aa
-kS
-lc
-lc
-kS
-ll
-lc
-lc
-lh
-lw
-nq
-lc
-nu
-ny
-na
-lc
-nk
-lw
-mg
-lc
-lc
-mh
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(75,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ao
-az
-az
-az
-az
-az
-az
-az
-mj
-cq
-aW
-cS
-mz
-az
-az
-az
-az
-az
-az
-az
-el
-eu
-eK
-gW
-gW
-fy
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-eu
-iv
-eu
-iM
-iR
-gW
-gW
-jq
-eu
-iu
-zk
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-kj
-iQ
-gW
-gW
-gW
-eu
-aa
-aa
-aa
-aa
-aa
-kS
-lc
-lc
-kS
-ln
-lc
-lc
-lh
-lw
-nd
-lc
-lc
-lc
-lc
-lc
-nj
-lw
-lc
-lc
-lc
-mr
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(76,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ap
-ai
-ai
-ai
-ai
-ac
-me
-ac
-ac
-cr
-aW
-cr
-ac
-ac
-me
-ac
-ai
-ai
-ai
-ai
-ap
-eu
-eL
-eW
-gW
-fU
-gW
-gW
-fW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-eu
-aa
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-iu
-zk
-GJ
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-kj
-hk
-kE
-eJ
-gW
-eu
-aa
-aa
-aa
-aa
-kS
-kS
-lc
-lc
-kS
-lo
-lc
-lc
-lh
-lw
-nr
-lz
-lz
-lz
-lz
-lz
-nf
-lw
-lc
-lc
-lc
-ms
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(77,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-aq
-ai
-ai
-ai
-aY
-ac
-bu
-bL
-ac
-cr
-ai
-cr
-ac
-bL
-bu
-ac
-dE
-ai
-ai
-ai
-aq
-eu
-eu
-gW
-gW
-eu
-fQ
-eu
-aR
-eY
-eY
-eY
-fT
-eY
-eu
-dY
-eu
-eu
-bk
-bk
-bk
-bk
-bk
-bk
-bk
-eu
-iu
-zk
-GJ
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-kj
-jg
-eW
-gW
-gW
-eu
-aa
-aa
-aa
-aa
-kT
-kS
-lc
-lc
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-lJ
-lJ
-lJ
-lJ
-lJ
-kS
-kS
-kS
-kS
-mX
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(78,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ar
-ai
-ai
-ai
-ai
-ma
-ai
-ai
-ac
-cr
-ai
-cr
-ac
-ai
-ai
-ma
-ai
-ai
-ai
-ai
-ar
-eu
-eM
-gW
-gW
-fA
-gW
-eu
-ag
-eY
-gH
-fm
-fm
-eY
-hA
-gW
-gW
-eu
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-eu
-iu
-zk
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-gW
-kj
-gw
-gQ
-gQ
-kJ
-eu
-aa
-aa
-aa
-aa
-kU
-kS
-lc
-lc
-lc
-lc
-lc
-lc
-kS
-lv
-lA
-lc
-lc
-lc
-lc
-lc
-mb
-md
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(79,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-as
-aA
-aM
-aM
-aZ
-ac
-bw
-bM
-ac
-cr
-ai
-cr
-ac
-bM
-bw
-ac
-aZ
-aM
-aM
-aA
-as
-eu
-cT
-gW
-gW
-fB
-fR
-eu
-ag
-eY
-gH
-fm
-fm
-eY
-gW
-hJ
-gW
-eu
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-eu
-eu
-eu
-jP
-zk
-jU
-eu
-jU
-zk
-jP
-zk
-jP
-zk
-eu
-eu
-eu
-eu
-eu
-aa
-aa
-aa
-aa
-kV
-kS
-lc
-lc
-lh
-la
-lp
-ls
-kS
-lv
-lA
-lc
-lc
-lc
-lc
-lc
-mb
-md
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(80,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-at
-aB
-aB
-aB
-ba
-ac
-ac
-ac
-ac
-cr
-ai
-cr
-ac
-ac
-ac
-ac
-at
-aB
-aB
-aB
-ba
-eu
-gW
-gW
-gW
-gW
-gW
-eu
-ag
-eY
-gH
-fm
-fm
-eY
-eu
-eu
-eu
-eu
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-zk
-gW
-zk
-aa
-aa
-aa
-zk
-gW
-zk
-gW
-zk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-lc
-lc
-lh
-la
-la
-ls
-kS
-lv
-lA
-lc
-lc
-lc
-lc
-lc
-mb
-md
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(81,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-au
-au
-au
-au
-au
-lX
-bx
-mi
-ce
-ml
-ai
-my
-ce
-mi
-ds
-lX
-au
-au
-au
-au
-au
-eu
-eP
-eW
-gW
-fC
-eW
-eu
-ag
-eY
-gH
-fm
-fm
-hq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-zk
-sL
-zk
-aa
-aa
-aa
-zk
-sL
-zk
-sL
-zk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kZ
-lc
-lc
-lh
-la
-la
-ls
-kS
-lv
-lA
-lI
-lI
-lc
-lI
-lI
-mb
-md
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(82,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-av
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-av
-eu
-eQ
-gW
-gW
-eQ
-gW
-eu
-ag
-eY
-gH
-fm
-fm
-hq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-la
-lc
-lc
-lc
-lc
-lc
-lc
-kS
-kS
-kS
-lc
-lc
-lc
-lc
-lc
-kS
-kS
-kS
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(83,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-av
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-cE
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-av
-eu
-eu
-eu
-eu
-eu
-eu
-eu
-ag
-eY
-eY
-fm
-fm
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-lb
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-kS
-lL
-lL
-lL
-lL
-lc
-nh
-lc
-lc
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(84,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-au
-au
-au
-au
-au
-lS
-bz
-bz
-aK
-ai
-cF
-ai
-aK
-bz
-bz
-lS
-au
-au
-au
-au
-au
-ac
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-gB
-eY
-fT
-fT
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-lc
-lc
-lc
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(85,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-cg
-ai
-cG
-ai
-cg
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ag
-eY
-eY
-eY
-eY
-eY
-eY
-eY
-eY
-fm
-fm
-eY
-eY
-eY
-eY
-eY
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(86,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-bj
-bA
-ac
-ch
-ai
-cH
-ai
-ch
-ac
-bA
-dy
-ac
-mF
-mH
-mJ
-ac
-ew
-ag
-eY
-fj
-fm
-eY
-gj
-gj
-ia
-eY
-fm
-fm
-eY
-gj
-gj
-hR
-hY
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(87,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-ag
-ag
-ag
-ac
-ch
-ai
-ai
-ai
-ch
-ac
-ag
-ag
-ac
-mG
-ai
-mK
-ac
-ex
-ag
-eY
-fk
-fm
-eY
-fm
-fm
-fm
-fT
-fm
-fm
-fT
-fm
-fm
-fm
-hZ
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-kS
-kS
-nv
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(88,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-bh
-ag
-ag
-ac
-ad
-ad
-ad
-ad
-ad
-ac
-ag
-ag
-ac
-mE
-ai
-mI
-ac
-bb
-ag
-eY
-fl
-fm
-eY
-fj
-fZ
-fZ
-eY
-fm
-fm
-eY
-eY
-eY
-eY
-eY
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-lF
-lc
-lF
-kS
-lZ
-lZ
-lZ
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(89,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-bh
-ag
-ag
-ab
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ag
-ac
-ac
-dQ
-ac
-ac
-ag
-ag
-eY
-eY
-fT
-eY
-eY
-eY
-eY
-eY
-fm
-fm
-eY
-fm
-fm
-hS
-ia
-hq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-lc
-lc
-lF
-kS
-lc
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(90,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aS
-ag
-ag
-ag
-ab
-aS
-aS
-aS
-aS
-aS
-ab
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-eY
-fm
-fm
-fm
-fm
-fm
-fm
-eY
-fm
-fm
-eY
-fm
-gH
-fH
-ib
-hq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-lc
-lc
-lF
-kS
-lU
-lc
-lc
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(91,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-bb
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-eY
-fm
-fm
-fm
-fm
-fm
-fm
-fT
-fm
-fm
-fT
-fm
-fm
-fH
-fm
-hq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-lc
-lN
-lc
-lc
-lc
-lc
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(92,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ab
-ab
-ab
-ab
-ag
-ag
-eY
-fm
-fm
-fm
-fm
-fm
-fm
-eY
-fm
-fm
-eY
-fm
-fm
-fm
-fm
-hq
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-kS
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(93,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-cj
-cv
-ab
-ab
-cv
-cj
-ab
-ab
-ab
-ab
-aa
-aa
-ab
-ag
-ag
-eY
-eY
-fT
-eY
-eY
-eY
-eY
-eY
-fT
-fT
-eY
-eY
-eY
-eY
-eY
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(94,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ab
-aa
-aa
-ab
-ag
-ab
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ag
-eY
-fm
-fm
-eU
-ga
-fH
-ib
-fm
-fm
-fm
-fm
-fm
-eY
-aa
-aa
-bk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(95,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bk
-bk
-ab
-ck
-ab
-bk
-bk
-ab
-ck
-ab
-bk
-bk
-bk
-bk
-bk
-ab
-ag
-ag
-eY
-fm
-fH
-fF
-ga
-fH
-ib
-fm
-ib
-ib
-ib
-fm
-eY
-aa
-aa
-bk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(96,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-bk
-cl
-bk
-aa
-aa
-bk
-cl
-bk
-bk
-bk
-bk
-bk
-bk
-ab
-ag
-ag
-eY
-fm
-gH
-fH
-TG
-fm
-fm
-fm
-ib
-ib
-ib
-fm
-eY
-aa
-aa
-bk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(97,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ag
-eY
-fm
-fH
-fh
-ga
-fH
-ib
-fm
-ib
-ib
-ib
-fm
-eY
-aa
-aa
-bk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(98,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-aS
-ag
-ag
-eY
-fm
-fm
-eU
-ga
-fH
-ib
-fm
-fm
-fm
-fm
-fm
-eY
-aa
-aa
-bk
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(99,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-aS
-ag
-ag
-eY
-fm
-fL
-fF
-fF
-fF
-fF
-fF
-eY
-eY
-eY
-eY
-eY
-hq
-hq
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(100,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-aS
-ag
-ag
-eY
-fm
-fJ
-eN
-eN
-eN
-eN
-eN
-eY
-fm
-fm
-fm
-fm
-fm
-ie
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(101,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-aS
-ag
-ag
-eY
-fm
-fK
-eN
-eN
-eN
-eN
-eN
-fT
-fm
-fm
-gj
-gj
-gj
-fm
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(102,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-ab
-ag
-ag
-eY
-eY
-eY
-eY
-eY
-eY
-eY
-eY
-eY
-fm
-gH
-fH
-fH
-fH
-ib
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(103,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-ag
-aR
-fm
-gH
-fH
-fH
-fH
-ib
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(104,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ex
-bb
-ag
-ag
-ag
-gb
-ag
-aE
-gI
-eY
-fm
-fm
-eN
-eN
-eN
-fm
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(105,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-eY
-hb
-fm
-fm
-fm
-fm
-ig
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(106,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-eY
-eY
-hq
-hq
-hq
-hq
-hq
-eY
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(107,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(108,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-hQ
-cl
-hQ
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(109,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(110,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(111,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(112,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(113,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(114,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(115,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(116,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(117,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(118,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(119,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(120,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(121,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(122,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(123,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(124,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(125,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(126,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(127,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(128,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
diff --git a/_maps/RandomZLevels/beach.dmm b/_maps/RandomZLevels/beach.dmm
index 393fda3d599..c6584d225ba 100644
--- a/_maps/RandomZLevels/beach.dmm
+++ b/_maps/RandomZLevels/beach.dmm
@@ -219,7 +219,7 @@
/turf/open/floor/plating/beach/sand,
/area/awaymission/beach)
"aO" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/turf/open/floor/wood,
/area/awaymission/beach)
"aP" = (
diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm
index 8516a7bd4b4..8182c457e74 100644
--- a/_maps/RandomZLevels/moonoutpost19.dmm
+++ b/_maps/RandomZLevels/moonoutpost19.dmm
@@ -1410,7 +1410,7 @@
dir = 2;
locked = 1;
name = "Worn-out APC";
- pixel_y = -25;
+ pixel_y = -23;
req_access = null;
req_access_txt = "150";
start_charge = 0
@@ -3413,7 +3413,7 @@
dir = 4;
locked = 0;
name = "Worn-out APC";
- pixel_x = 25;
+ pixel_x = 24;
req_access = null;
start_charge = 100
},
@@ -3528,7 +3528,7 @@
},
/area/awaymission/moonoutpost19/research)
"gP" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel{
heat_capacity = 1e+006
},
@@ -4980,7 +4980,7 @@
dir = 1;
locked = 0;
name = "Worn-out APC";
- pixel_y = 25;
+ pixel_y = 23;
req_access = null;
start_charge = 100
},
@@ -6196,8 +6196,7 @@
},
/area/awaymission/moonoutpost19/arrivals)
"mn" = (
-/obj/structure/closet/secure_closet{
- icon_state = "freezer";
+/obj/structure/closet/secure_closet/freezer{
locked = 0;
name = "meat fridge";
req_access_txt = "201"
@@ -6212,8 +6211,7 @@
},
/area/awaymission/moonoutpost19/arrivals)
"mo" = (
-/obj/structure/closet/secure_closet{
- icon_state = "freezer";
+/obj/structure/closet/secure_closet/freezer{
locked = 0;
name = "refrigerator";
req_access_txt = "201"
diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm
index 1b51f2e06cd..38436a719a4 100644
--- a/_maps/RandomZLevels/research.dmm
+++ b/_maps/RandomZLevels/research.dmm
@@ -412,7 +412,7 @@
auto_name = 1;
dir = 4;
name = "Engineering APC";
- pixel_x = 27;
+ pixel_x = 24;
pixel_y = 2
},
/turf/open/floor/plating,
@@ -1238,7 +1238,7 @@
/turf/open/floor/plasteel,
/area/awaymission/research/interior/genetics)
"cV" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/turf_decal/tile/purple{
@@ -4391,7 +4391,7 @@
/turf/open/floor/plasteel,
/area/awaymission/research/interior/genetics)
"iy" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/decal/cleanable/blood,
/obj/effect/turf_decal/tile/purple{
dir = 1
@@ -4457,7 +4457,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Security APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-8"
@@ -5903,7 +5903,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Medbay APC";
- pixel_y = 24
+ pixel_y = 23
},
/turf/open/floor/plating,
/area/awaymission/research/interior/medbay)
@@ -5925,7 +5925,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Escape APC";
- pixel_y = -24
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-8"
diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm
index 1f6074657bf..480568bfeee 100644
--- a/_maps/RandomZLevels/snowdin.dmm
+++ b/_maps/RandomZLevels/snowdin.dmm
@@ -130,7 +130,7 @@
/turf/open/floor/plasteel/dark,
/area/awaymission/snowdin/post/research)
"aF" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/dark,
@@ -141,13 +141,13 @@
/turf/open/floor/plasteel/dark,
/area/awaymission/snowdin/post/research)
"aH" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/dark,
/area/awaymission/snowdin/post/research)
"aI" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/dark,
@@ -641,7 +641,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Dorms APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -804,7 +804,7 @@
dir = 1;
name = "Kitchen APC";
pixel_x = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -1481,11 +1481,11 @@
/turf/open/floor/plasteel,
/area/awaymission/snowdin/post/research)
"dn" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/turf/open/floor/plasteel/freezer,
/area/awaymission/snowdin/post/kitchen)
"do" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/obj/structure/spider/stickyweb,
/turf/open/floor/plasteel/freezer,
/area/awaymission/snowdin/post/kitchen)
@@ -1672,7 +1672,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/awaymission/snowdin/post/kitchen)
@@ -1853,7 +1853,7 @@
/obj/machinery/power/apc{
dir = 2;
name = "Gateway APC";
- pixel_y = -24;
+ pixel_y = -23;
req_access = 150
},
/obj/structure/cable/yellow{
@@ -1870,7 +1870,7 @@
dir = 1;
name = "Research Center APC";
pixel_x = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -1899,7 +1899,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Mess Hall APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -2503,7 +2503,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Outpost Hallway APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -3058,7 +3058,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Garage APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -4840,7 +4840,7 @@
dir = 1;
name = "Custodials APC";
pixel_x = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -6300,7 +6300,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Engineering APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -6603,7 +6603,7 @@
dir = 1;
name = "Security Outpost APC";
pixel_x = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -6645,7 +6645,7 @@
/turf/open/floor/plasteel,
/area/awaymission/snowdin/post/secpost)
"oh" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/item/shard,
@@ -6800,7 +6800,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Hydroponics APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -7695,7 +7695,7 @@
/turf/open/floor/engine/cult,
/area/awaymission/snowdin/post/cavern2)
"qI" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/turf/open/floor/plasteel/cafeteria,
/area/awaymission/snowdin/post/cavern2)
"qJ" = (
@@ -8333,7 +8333,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Main Outpost APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
@@ -9032,7 +9032,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Main Outpost APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -10048,7 +10048,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Main Outpost APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow,
/turf/open/floor/plating,
@@ -11509,7 +11509,7 @@
},
/area/awaymission/snowdin/post/minipost)
"Ax" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plating,
@@ -11832,7 +11832,7 @@
dir = 1;
name = "Recon Post APC";
pixel_x = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -14226,7 +14226,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Robotics APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -14740,7 +14740,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Main Outpost APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -14754,7 +14754,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Mechbay APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -15510,7 +15510,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Mining Post APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
diff --git a/_maps/RandomZLevels/spacebattle.dmm b/_maps/RandomZLevels/spacebattle.dmm
index 93affc2dcb9..d335f4f79c2 100644
--- a/_maps/RandomZLevels/spacebattle.dmm
+++ b/_maps/RandomZLevels/spacebattle.dmm
@@ -570,7 +570,7 @@
},
/area/awaymission/spacebattle/cruiser)
"cH" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/turf/open/floor/plasteel/cafeteria{
dir = 2
},
@@ -2472,7 +2472,7 @@
/area/awaymission/spacebattle/cruiser)
"jt" = (
/obj/structure/rack,
-/obj/item/gun/energy/e_gun/advtaser,
+/obj/item/gun/energy/disabler,
/turf/open/floor/engine,
/area/awaymission/spacebattle/cruiser)
"ju" = (
@@ -2543,7 +2543,7 @@
"jB" = (
/obj/structure/rack,
/obj/structure/window/reinforced,
-/obj/item/gun/energy/e_gun/advtaser,
+/obj/item/gun/energy/disabler,
/turf/open/floor/engine,
/area/awaymission/spacebattle/cruiser)
"jC" = (
diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm
index 5d6a04821dd..ed9c6da3f04 100644
--- a/_maps/RandomZLevels/undergroundoutpost45.dmm
+++ b/_maps/RandomZLevels/undergroundoutpost45.dmm
@@ -1760,8 +1760,7 @@
/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
-/obj/structure/closet/secure_closet{
- icon_state = "freezer";
+/obj/structure/closet/secure_closet/freezer{
locked = 0;
name = "meat fridge";
req_access_txt = "201"
@@ -1784,8 +1783,7 @@
/obj/item/reagent_containers/food/condiment/milk,
/obj/item/storage/fancy/egg_box,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/secure_closet{
- icon_state = "freezer";
+/obj/structure/closet/secure_closet/freezer{
locked = 0;
name = "refrigerator";
req_access_txt = "201"
@@ -2168,7 +2166,7 @@
},
/area/awaymission/undergroundoutpost45/central)
"ez" = (
-/obj/structure/chair/office{
+/obj/structure/chair{
dir = 4
},
/obj/effect/turf_decal/tile/neutral,
@@ -2192,7 +2190,7 @@
},
/area/awaymission/undergroundoutpost45/central)
"eC" = (
-/obj/structure/chair/office{
+/obj/structure/chair{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
@@ -2292,7 +2290,7 @@
},
/area/awaymission/undergroundoutpost45/central)
"eL" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/red,
@@ -2319,7 +2317,7 @@
},
/area/awaymission/undergroundoutpost45/central)
"eN" = (
-/obj/structure/chair/office{
+/obj/structure/chair{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -2551,7 +2549,7 @@
dir = 2;
locked = 0;
name = "Hydroponics APC";
- pixel_y = -25;
+ pixel_y = -23;
req_access = null;
start_charge = 100
},
@@ -5015,7 +5013,7 @@
dir = 1;
locked = 0;
name = "UO45 Bar APC";
- pixel_y = 25;
+ pixel_y = 23;
req_access = null;
start_charge = 100
},
@@ -6163,7 +6161,7 @@
dir = 2;
locked = 0;
name = "UO45 Research Division APC";
- pixel_y = -25;
+ pixel_y = -23;
req_access = null;
start_charge = 100
},
@@ -6721,7 +6719,7 @@
dir = 2;
locked = 0;
name = "UO45 Gateway APC";
- pixel_y = -25;
+ pixel_y = -23;
req_access = null;
start_charge = 100
},
@@ -7123,7 +7121,7 @@
},
/area/awaymission/undergroundoutpost45/research)
"np" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel{
@@ -10229,7 +10227,7 @@
dir = 2;
locked = 0;
name = "UO45 Mining APC";
- pixel_y = -25;
+ pixel_y = -23;
req_access = null;
start_charge = 100
},
@@ -10603,7 +10601,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -11782,7 +11780,7 @@
dir = 5;
level = 1
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel{
@@ -12774,7 +12772,7 @@
},
/area/awaymission/undergroundoutpost45/engineering)
"wH" = (
-/obj/structure/chair/office,
+/obj/structure/chair,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral{
dir = 1
diff --git a/_maps/RandomZLevels/wildwest.dmm b/_maps/RandomZLevels/wildwest.dmm
index d3636c9558f..dfb369db696 100644
--- a/_maps/RandomZLevels/wildwest.dmm
+++ b/_maps/RandomZLevels/wildwest.dmm
@@ -317,7 +317,7 @@
/turf/open/space,
/area/space/nearstation)
"bx" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
@@ -400,7 +400,7 @@
},
/area/awaymission/wildwest/mines)
"bN" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/obj/item/reagent_containers/food/snacks/meat/slab/synthmeat,
/obj/item/reagent_containers/food/snacks/meat/slab/synthmeat,
/obj/item/reagent_containers/food/snacks/meat/slab/synthmeat,
@@ -621,7 +621,7 @@
},
/area/awaymission/wildwest/gov)
"cs" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/turf/open/floor/plasteel/cafeteria{
dir = 5
},
@@ -1674,13 +1674,13 @@
},
/area/awaymission/wildwest/mines)
"fE" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/wood,
/area/awaymission/wildwest/mines)
"fF" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/wood,
diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm
index f3940f0834e..cc995c423bd 100644
--- a/_maps/map_files/BoxStation/BoxStation.dmm
+++ b/_maps/map_files/BoxStation/BoxStation.dmm
@@ -70,33 +70,33 @@
/turf/closed/wall/r_wall,
/area/security/prison)
"aaj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall/r_wall,
/area/security/prison)
"aak" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/prison)
"aal" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/prison)
"aam" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -179,7 +179,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aav" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -291,7 +291,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/security/prison)
"aaL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/window/reinforced{
@@ -336,7 +336,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/security/prison)
"aaQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -396,7 +396,7 @@
/area/security/prison)
"aaY" = (
/obj/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -530,7 +530,7 @@
/area/crew_quarters/heads/hos)
"abr" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -540,10 +540,10 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
"abs" = (
+/obj/machinery/power/tracker,
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/power/tracker,
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port/fore)
"abt" = (
@@ -631,7 +631,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"abE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -870,7 +870,7 @@
/area/crew_quarters/heads/hos)
"abU" = (
/obj/machinery/computer/card/minor/hos,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -893,10 +893,10 @@
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
"abX" = (
+/obj/machinery/power/tracker,
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/power/tracker,
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/starboard/fore)
"abY" = (
@@ -904,10 +904,10 @@
/turf/open/space,
/area/space/nearstation)
"abZ" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/fore)
"aca" = (
@@ -962,7 +962,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"acg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -1014,7 +1014,7 @@
name = "Armory APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -1062,7 +1062,7 @@
/area/crew_quarters/heads/hos)
"act" = (
/obj/machinery/holopad,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -1084,10 +1084,10 @@
/turf/open/space,
/area/space/nearstation)
"acx" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/fore)
"acy" = (
@@ -1214,7 +1214,7 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
"acJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1326,7 +1326,7 @@
/turf/open/floor/plating,
/area/security/main)
"acV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/solar{
@@ -1404,7 +1404,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"ade" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -1420,7 +1420,7 @@
/turf/open/floor/plasteel/freezer,
/area/security/prison)
"adg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/button/door{
@@ -1435,7 +1435,7 @@
"adh" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/carpet,
@@ -1456,12 +1456,12 @@
/area/ai_monitored/security/armory)
"adj" = (
/obj/structure/rack,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler{
pixel_x = -3;
pixel_y = 3
},
-/obj/item/gun/energy/e_gun/advtaser,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler,
+/obj/item/gun/energy/disabler{
pixel_x = 3;
pixel_y = -3
},
@@ -1522,24 +1522,24 @@
/obj/structure/chair{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
"ado" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
"adp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/carpet,
@@ -1561,7 +1561,7 @@
/turf/open/floor/plating,
/area/security/main)
"ads" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/solar{
@@ -1576,40 +1576,40 @@
/turf/open/space,
/area/solar/starboard/fore)
"adu" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/space/basic,
/area/solar/port/fore)
"adv" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/space/basic,
/area/solar/port/fore)
"adw" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/turf/open/space/basic,
/area/solar/port/fore)
"adx" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-4"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/fore)
"ady" = (
@@ -1617,6 +1617,7 @@
/turf/open/space,
/area/solar/port/fore)
"adz" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "4-8"
},
@@ -1626,17 +1627,16 @@
/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/fore)
"adA" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "2-8"
},
/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/fore)
"adB" = (
@@ -1716,7 +1716,7 @@
name = "Long-Term Cell 1";
req_access_txt = "2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1747,7 +1747,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"adM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/carpet,
@@ -1757,13 +1757,13 @@
dir = 8;
areastring = "/area/crew_quarters/heads/hos";
name = "Head of Security's Office APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/carpet,
@@ -1775,14 +1775,14 @@
/turf/open/floor/plasteel,
/area/security/prison)
"adP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/carpet,
@@ -1797,67 +1797,67 @@
/turf/closed/wall/r_wall,
/area/security/main)
"adS" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/space/basic,
/area/solar/starboard/fore)
"adT" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/space/basic,
/area/solar/starboard/fore)
"adU" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/fore)
"adV" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/turf/open/space/basic,
/area/solar/starboard/fore)
"adW" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable{
- icon_state = "1-8"
- },
/obj/structure/cable{
icon_state = "2-8"
},
-/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
/turf/open/space,
/area/solar/starboard/fore)
"adX" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-4"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/fore)
"adY" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "2-8"
},
-/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
/turf/open/space,
/area/solar/starboard/fore)
"adZ" = (
@@ -2043,7 +2043,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aep" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -2082,7 +2082,7 @@
areastring = "/area/security/prison";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/red{
@@ -2095,7 +2095,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aes" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/suit_storage_unit/security,
@@ -2112,7 +2112,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"aeu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/suit_storage_unit/security,
@@ -2139,7 +2139,7 @@
"aex" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
"aey" = (
@@ -2147,7 +2147,7 @@
name = "Head of Security";
req_access_txt = "58"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -2190,7 +2190,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -2199,7 +2199,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -2209,13 +2209,13 @@
dir = 8;
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -2283,7 +2283,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
@@ -2296,7 +2296,7 @@
/area/security/execution/transfer)
"aeM" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -2311,7 +2311,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -2326,7 +2326,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -2338,7 +2338,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -2354,7 +2354,7 @@
/area/security/prison)
"aeQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -2366,7 +2366,7 @@
/turf/open/floor/plating,
/area/hallway/secondary/exit)
"aeS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2375,24 +2375,24 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aeT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/security/prison)
"aeU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/security/prison)
"aeV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2429,7 +2429,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"aeX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -2439,7 +2439,7 @@
/turf/open/floor/plating,
/area/ai_monitored/security/armory)
"aeY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/window/southleft{
@@ -2453,10 +2453,10 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"aeZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -2546,7 +2546,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"afj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -2617,7 +2617,7 @@
/turf/open/space/basic,
/area/space)
"afq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -2673,7 +2673,7 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -2717,10 +2717,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"afC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2890,7 +2890,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"afX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/head_of_security,
@@ -2964,7 +2964,7 @@
dir = 2;
name = "Prisoner Transfer Centre";
areastring = "/area/security/execution/transfer";
- pixel_y = -27
+ pixel_y = -23
},
/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
@@ -3007,7 +3007,7 @@
name = "Prison Wing";
req_access_txt = "2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -3058,16 +3058,16 @@
name = "Armory";
req_access_txt = "3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -3176,7 +3176,7 @@
/area/security/main)
"agC" = (
/obj/machinery/holopad,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -3200,7 +3200,7 @@
/area/security/main)
"agF" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/sign/warning/securearea{
@@ -3304,7 +3304,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"agP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -3320,13 +3320,13 @@
/turf/open/floor/plasteel,
/area/security/brig)
"agQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"agR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -3339,7 +3339,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"agT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/showroomfloor,
@@ -3353,13 +3353,13 @@
"agV" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"agW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -3414,7 +3414,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"ahf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -3595,9 +3595,9 @@
dir = 8;
name = "Brig Control APC";
areastring = "/area/security/warden";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/showroomfloor,
@@ -3618,26 +3618,26 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"ahx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"ahy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"ahz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -3649,7 +3649,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3664,7 +3664,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"ahB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3676,7 +3676,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
@@ -3700,13 +3700,13 @@
name = "Brig Control";
req_access_txt = "3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3715,7 +3715,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"ahF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -3730,10 +3730,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3745,7 +3745,7 @@
/obj/structure/disposalpipe/junction/yjunction{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3754,7 +3754,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"ahI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -3770,7 +3770,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3782,10 +3782,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/chair,
@@ -3794,7 +3794,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"ahL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3803,13 +3803,13 @@
/turf/open/floor/plasteel,
/area/security/main)
"ahM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3824,7 +3824,7 @@
areastring = "/area/security/main";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -3845,13 +3845,13 @@
/area/security/brig)
"ahQ" = (
/obj/structure/closet/secure_closet/warden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"ahR" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/warden,
/obj/machinery/button/door{
id = "Prison Gate";
@@ -3870,10 +3870,10 @@
/area/security/warden)
"ahS" = (
/obj/structure/table,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/showroomfloor,
@@ -3967,7 +3967,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"aib" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -3977,7 +3977,7 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"aic" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -4012,7 +4012,7 @@
/area/security/warden)
"aif" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -4062,7 +4062,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"aik" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -4187,7 +4187,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -4197,7 +4197,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"aiv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -4226,7 +4226,7 @@
/turf/open/floor/plasteel/white,
/area/security/brig)
"aix" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -4252,7 +4252,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"aiz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -4322,7 +4322,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"aiI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/sign/warning/electricshock{
@@ -4333,10 +4333,10 @@
/area/security/warden)
"aiJ" = (
/obj/structure/table/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/window/brigdoor{
@@ -4359,21 +4359,21 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"aiK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/security/warden)
"aiL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -4387,7 +4387,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"aiN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -4464,7 +4464,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"aiZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4476,7 +4476,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"aja" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4527,7 +4527,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ajf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -4540,7 +4540,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ajg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -4627,10 +4627,10 @@
/turf/open/floor/plasteel/dark,
/area/security/courtroom)
"ajq" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/fore)
"ajr" = (
@@ -4708,9 +4708,9 @@
dir = 1;
name = "Brig APC";
areastring = "/area/security/brig";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4725,7 +4725,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ajz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -4764,7 +4764,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"ajD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -4830,7 +4830,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ajK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -4958,7 +4958,7 @@
/obj/machinery/computer/security/telescreen/entertainment{
pixel_x = -31
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -4972,7 +4972,6 @@
dir = 8
},
/obj/machinery/computer/monitor{
- icon_state = "computer";
dir = 4
},
/turf/open/floor/plasteel/dark,
@@ -4986,19 +4985,22 @@
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"ajX" = (
/obj/machinery/computer/teleporter{
- icon_state = "computer";
dir = 8
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
+"ajY" = (
+/obj/effect/mapping_helpers/dead_body_placer,
+/turf/open/floor/plasteel/dark,
+/area/medical/morgue)
"ajZ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/sign/warning/vacuum/external{
@@ -5022,7 +5024,7 @@
/turf/open/floor/plasteel,
/area/security/processing)
"akc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5031,14 +5033,14 @@
/turf/open/floor/plasteel,
/area/security/processing)
"akd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/processing)
"ake" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5053,7 +5055,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"akf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -5067,7 +5069,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"akg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/camera{
@@ -5081,10 +5083,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"akh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5093,10 +5095,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"aki" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5109,7 +5111,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"akj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5214,7 +5216,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"aks" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -5237,6 +5239,15 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
+"aku" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"akv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -5298,6 +5309,55 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
+"akC" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/atmospherics,
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
+"akD" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ name = "output gas connector port"
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
+"akE" = (
+/obj/structure/sign/warning/deathsposal{
+ pixel_y = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
+"akF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/storage/toolbox/emergency,
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"akG" = (
/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
@@ -5327,7 +5387,7 @@
/turf/open/floor/plasteel,
/area/security/processing)
"akK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5342,10 +5402,10 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"akM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/cable,
@@ -5354,10 +5414,10 @@
/turf/open/floor/plating,
/area/security/brig)
"akN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5369,7 +5429,7 @@
id = "Cell 1";
name = "Cell 1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -5379,10 +5439,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"akP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -5390,7 +5450,7 @@
/turf/open/floor/plating,
/area/security/brig)
"akQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall,
@@ -5400,7 +5460,7 @@
id = "Cell 2";
name = "Cell 2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -5410,10 +5470,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"akS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5425,7 +5485,7 @@
id = "Cell 3";
name = "Cell 3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -5439,19 +5499,19 @@
name = "Brig Desk";
req_access_txt = "1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/dark,
/area/security/brig)
"akV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -5464,7 +5524,7 @@
name = "Brig";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -5483,7 +5543,7 @@
name = "Brig";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -5498,16 +5558,16 @@
/turf/open/floor/plasteel,
/area/security/brig)
"akY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/closed/wall,
/area/security/brig)
"akZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5516,10 +5576,10 @@
/area/security/brig)
"ala" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -5571,17 +5631,22 @@
},
/turf/open/floor/plasteel,
/area/security/courtroom)
+"alf" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to MiniSat"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"alg" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/fore)
"alh" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
req_access_txt = "10; 13"
@@ -5589,18 +5654,48 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"ali" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"alj" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"alk" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 1
},
/turf/open/floor/plasteel,
/area/engine/atmos)
+"all" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
+"alm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"aln" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -5612,6 +5707,12 @@
},
/turf/open/floor/plating,
/area/security/processing)
+"alo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/start/atmospheric_technician,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"alp" = (
/turf/open/floor/plating,
/area/security/processing)
@@ -5627,7 +5728,7 @@
/turf/open/floor/plasteel,
/area/security/processing)
"als" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -5652,7 +5753,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/nuke_storage)
"alv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -5705,7 +5806,7 @@
pixel_x = -26;
pixel_y = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/button/flasher{
@@ -5753,6 +5854,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/security/courtroom)
+"alE" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"alF" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 2
@@ -5802,10 +5911,10 @@
/area/security/courtroom)
"alK" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5817,14 +5926,34 @@
dir = 8;
name = "Courtroom APC";
areastring = "/area/security/courtroom";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
+"alM" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
+"alN" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/extinguisher,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"alO" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -5880,6 +6009,20 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/engine/atmos)
+"alY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/tank/toxins,
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
+"alZ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/closed/wall,
+/area/maintenance/disposal/incinerator)
"ama" = (
/mob/living/simple_animal/sloth/paperwork,
/turf/open/floor/plasteel,
@@ -5904,7 +6047,7 @@
/turf/open/floor/plasteel,
/area/security/processing)
"ame" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -5915,7 +6058,7 @@
"amf" = (
/obj/structure/bed,
/obj/item/bedsheet,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/flasher{
@@ -5991,7 +6134,7 @@
pixel_y = 5;
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -6011,7 +6154,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"amn" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/dark,
@@ -6030,6 +6173,13 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
+"amp" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space)
"amq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
@@ -6055,14 +6205,14 @@
/turf/open/floor/plasteel/dark,
/area/security/courtroom)
"amv" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
"amw" = (
@@ -6082,13 +6232,13 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"amz" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
/obj/machinery/power/terminal,
/obj/machinery/light/small{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"amA" = (
@@ -6157,7 +6307,7 @@
name = "Prisoner Processing";
req_access_txt = "2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -6184,7 +6334,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"amQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/cable,
@@ -6196,10 +6346,10 @@
/turf/open/floor/plating,
/area/security/brig)
"amR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -6210,7 +6360,7 @@
/turf/open/floor/plating,
/area/security/brig)
"amS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall/r_wall,
@@ -6225,10 +6375,10 @@
name = "Brig Desk";
req_access_txt = "1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/dark,
@@ -6238,7 +6388,7 @@
id = "briggate";
name = "security blast door"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -6256,7 +6406,7 @@
name = "Brig Desk";
req_access_txt = "1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -6328,7 +6478,7 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"anc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -6352,7 +6502,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"ang" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
@@ -6369,17 +6519,17 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"anh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/smes,
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"ani" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -6471,7 +6621,7 @@
/turf/open/floor/plasteel,
/area/security/processing)
"anv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6528,7 +6678,7 @@
/turf/open/floor/plating,
/area/security/courtroom)
"anD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -6564,7 +6714,7 @@
name = "Port Bow Solar Access";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -6751,7 +6901,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aol" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -6802,7 +6952,7 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/red,
@@ -6815,7 +6965,7 @@
/turf/open/floor/plasteel,
/area/security/processing)
"aou" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/camera{
@@ -6927,7 +7077,7 @@
/turf/open/floor/plasteel/dark,
/area/security/courtroom)
"aoI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -6940,9 +7090,9 @@
dir = 2;
name = "Fitness Room APC";
areastring = "/area/crew_quarters/fitness";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -6987,13 +7137,13 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
"aoO" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
/obj/machinery/power/terminal,
/obj/machinery/light/small{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
"aoP" = (
@@ -7064,7 +7214,7 @@
name = "Security Maintenance";
req_access_txt = "2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -7134,14 +7284,14 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"apr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Fore Maintenance APC";
areastring = "/area/maintenance/fore/secondary";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -7171,7 +7321,7 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"apu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -7187,7 +7337,7 @@
name = "Fitness Maintenance";
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -7227,16 +7377,16 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"apz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
"apA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
@@ -7253,7 +7403,7 @@
c_tag = "Fore Starboard Solars";
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/smes,
@@ -7294,6 +7444,7 @@
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance/two,
/obj/effect/decal/cleanable/dirt,
+/obj/item/stock_parts/capacitor,
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"apM" = (
@@ -7322,7 +7473,7 @@
/turf/open/floor/plating,
/area/security/processing)
"apS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -7431,10 +7582,10 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"aqj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -7447,9 +7598,9 @@
dir = 2;
name = "Dormitory APC";
areastring = "/area/crew_quarters/dorms";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -7461,10 +7612,10 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -7473,10 +7624,10 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"aqm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -7563,7 +7714,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aqw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -7658,9 +7809,9 @@
name = "Port Bow Maintenance APC";
areastring = "/area/maintenance/port/fore";
pixel_x = -1;
- pixel_y = 26
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -7688,10 +7839,10 @@
dir = 8;
name = "Labor Shuttle Dock APC";
areastring = "/area/security/processing";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -7783,7 +7934,7 @@
/area/crew_quarters/dorms)
"arl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -7838,10 +7989,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"arr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -7851,9 +8002,9 @@
dir = 1;
name = "Starboard Bow Maintenance APC";
areastring = "/area/maintenance/starboard/fore";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -7932,7 +8083,7 @@
/turf/closed/wall,
/area/maintenance/port/fore)
"arH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
@@ -7941,7 +8092,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"arI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
@@ -7950,10 +8101,10 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"arJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
@@ -7970,7 +8121,7 @@
},
/area/maintenance/port/fore)
"arL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
@@ -8069,7 +8220,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
"asc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8084,7 +8235,7 @@
/turf/closed/wall,
/area/crew_quarters/dorms)
"ase" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8122,7 +8273,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"ash" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
@@ -8134,10 +8285,10 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"asi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8165,7 +8316,7 @@
/turf/open/floor/wood,
/area/crew_quarters/dorms)
"asn" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/lawyer,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
@@ -8253,7 +8404,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"asw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -8328,7 +8479,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"asK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -8354,7 +8505,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -8401,7 +8552,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -8424,7 +8575,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/vr_sleeper,
/obj/effect/turf_decal/tile/red,
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -8534,7 +8684,7 @@
pixel_y = -23
},
/obj/effect/landmark/event_spawn,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/carpet,
@@ -8552,7 +8702,7 @@
/turf/closed/wall,
/area/maintenance/port/fore)
"atr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -8635,14 +8785,14 @@
/area/maintenance/department/electrical)
"atG" = (
/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"atH" = (
/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/circuit,
@@ -8689,7 +8839,7 @@
/turf/closed/wall,
/area/maintenance/port/fore)
"atN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -8834,7 +8984,7 @@
/turf/open/floor/carpet,
/area/security/detectives_office)
"auj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -8868,10 +9018,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"aum" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -8885,7 +9035,7 @@
/turf/closed/wall,
/area/crew_quarters/dorms)
"auo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -8919,7 +9069,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness)
"aus" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -9021,13 +9171,13 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"auE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"auF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -9037,13 +9187,13 @@
req_access_txt = "12"
},
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"auH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -9056,17 +9206,17 @@
/turf/open/floor/plasteel,
/area/maintenance/department/electrical)
"auK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/department/electrical)
"auL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -9076,7 +9226,7 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -9125,7 +9275,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"auT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -9238,7 +9388,7 @@
/area/crew_quarters/dorms)
"avh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -9249,7 +9399,7 @@
dir = 4;
pixel_x = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -9320,7 +9470,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"avq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -9334,7 +9484,7 @@
/turf/open/floor/plasteel,
/area/vacant_room/commissary)
"avs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -9412,7 +9562,7 @@
/area/crew_quarters/fitness)
"avB" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -9439,7 +9589,7 @@
/obj/machinery/door/poddoor/preopen{
id = "maint3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -9480,9 +9630,9 @@
dir = 1;
name = "Electrical Maintenance APC";
areastring = "/area/maintenance/department/electrical";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -9494,7 +9644,7 @@
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"avN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -9545,6 +9695,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"avS" = (
+/obj/item/circuitboard/machine/stasis,
/obj/item/wrench,
/turf/open/floor/plating,
/area/maintenance/port/fore)
@@ -9621,9 +9772,9 @@
dir = 1;
name = "Fore Maintenance APC";
areastring = "/area/maintenance/fore";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9632,13 +9783,13 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"awe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9656,7 +9807,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"awg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -9669,14 +9820,14 @@
/area/maintenance/fore)
"awh" = (
/obj/effect/landmark/blobstart,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -9689,7 +9840,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -9710,7 +9861,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"awl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -9803,7 +9954,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"awx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9823,7 +9974,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
"awA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -9832,7 +9983,6 @@
/area/crew_quarters/fitness)
"awB" = (
/obj/effect/landmark/start/assistant,
-/obj/machinery/vr_sleeper,
/obj/effect/turf_decal/tile/green,
/obj/effect/turf_decal/tile/green{
dir = 4
@@ -9880,7 +10030,7 @@
pixel_x = -28;
pixel_y = -6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -9903,7 +10053,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"awM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9912,13 +10062,13 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"awN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/showroomfloor,
@@ -9930,7 +10080,7 @@
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"awP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9939,7 +10089,7 @@
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"awQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
@@ -9953,10 +10103,10 @@
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"awR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9971,7 +10121,7 @@
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"awT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/holopad,
@@ -10028,7 +10178,7 @@
},
/area/hallway/secondary/entry)
"axa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -10037,7 +10187,7 @@
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"axb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10072,9 +10222,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"axe" = (
-/obj/machinery/sleeper{
- dir = 4
- },
+/obj/structure/frame/machine,
/turf/open/floor/plating,
/area/maintenance/port/fore)
"axf" = (
@@ -10165,7 +10313,7 @@
/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10174,7 +10322,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"axs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10186,7 +10334,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10198,10 +10346,10 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10214,10 +10362,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10226,10 +10374,10 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"axw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -10241,7 +10389,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10372,14 +10520,14 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"axQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
"axR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -10399,10 +10547,10 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness)
"axT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -10415,7 +10563,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness)
"axV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -10465,10 +10613,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
"ayc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -10490,14 +10638,14 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"ayg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"ayh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10507,7 +10655,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"ayi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -10567,7 +10715,7 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10588,6 +10736,7 @@
"ayt" = (
/obj/structure/table/glass,
/obj/item/hemostat,
+/obj/item/stock_parts/manipulator,
/turf/open/floor/plating,
/area/maintenance/port/fore)
"ayu" = (
@@ -10605,7 +10754,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"ayw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10625,27 +10774,27 @@
/turf/closed/wall/r_wall,
/area/maintenance/port/fore)
"ayA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/fore)
"ayB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/fore)
"ayC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -10653,10 +10802,10 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"ayD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -10667,11 +10816,11 @@
/turf/closed/wall/r_wall,
/area/maintenance/fore)
"ayF" = (
-/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/maintenance/fore)
"ayG" = (
@@ -10679,14 +10828,14 @@
/area/gateway)
"ayH" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fore)
"ayI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/sign/warning/securearea{
@@ -10745,9 +10894,9 @@
dir = 1;
name = "EVA Storage APC";
areastring = "/area/ai_monitored/storage/eva";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -10772,7 +10921,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"ayS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/sign/warning/securearea{
@@ -10872,7 +11021,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"azd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral,
@@ -10906,7 +11055,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/vr_sleeper,
/obj/effect/turf_decal/tile/green,
/obj/effect/turf_decal/tile/green{
dir = 4
@@ -10944,7 +11092,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
"azl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -10987,10 +11135,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"azs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -11006,7 +11154,7 @@
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"azu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -11066,7 +11214,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"azD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -11075,7 +11223,7 @@
/turf/open/floor/plasteel/white/corner,
/area/hallway/secondary/entry)
"azE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -11166,10 +11314,10 @@
/turf/open/floor/plasteel/dark,
/area/gateway)
"azO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -11178,7 +11326,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"azQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -11203,10 +11351,10 @@
name = "EVA Storage";
req_access_txt = "18"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -11222,10 +11370,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"azU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -11250,7 +11398,7 @@
/obj/machinery/door/airlock{
name = "Unisex Showers"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/freezer,
@@ -11299,7 +11447,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"aAe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -11338,7 +11486,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"aAj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/power/apc{
@@ -11346,14 +11494,14 @@
name = "Security Checkpoint APC";
areastring = "/area/security/checkpoint/auxiliary";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aAk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -11369,7 +11517,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
"aAl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -11390,7 +11538,7 @@
dir = 1;
pixel_y = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -11407,7 +11555,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
"aAn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -11437,7 +11585,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
"aAp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -11479,7 +11627,7 @@
/obj/machinery/door/poddoor/preopen{
id = "maint2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -11496,10 +11644,10 @@
dir = 4;
name = "Garden APC";
areastring = "/area/hydroponics/garden";
- pixel_x = 27;
+ pixel_x = 24;
pixel_y = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -11512,7 +11660,7 @@
/obj/machinery/power/smes{
charge = 0
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -11522,17 +11670,17 @@
dir = 1;
name = "backup power monitoring console"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable,
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"aAA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall,
@@ -11541,7 +11689,7 @@
/obj/machinery/power/smes{
charge = 0
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -11592,7 +11740,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"aAJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -11614,9 +11762,9 @@
name = "Primary Tool Storage APC";
areastring = "/area/storage/primary";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -11625,10 +11773,10 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aAN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11651,7 +11799,7 @@
/turf/open/floor/plasteel,
/area/hydroponics/garden)
"aAR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11678,7 +11826,7 @@
/turf/open/floor/plasteel,
/area/hydroponics/garden)
"aAV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/spawner/lootdrop/maintenance,
@@ -11718,7 +11866,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aAZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/freezer,
@@ -11783,7 +11931,7 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11797,10 +11945,10 @@
dir = 8;
name = "Gateway APC";
areastring = "/area/gateway";
- pixel_x = -24;
+ pixel_x = -25;
pixel_y = -1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11884,14 +12032,14 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"aBs" = (
-/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
"aBt" = (
@@ -11952,9 +12100,10 @@
/area/maintenance/starboard/fore)
"aBC" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+ req_access_txt = "12";
+ req_one_access_txt = "0"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -12010,7 +12159,7 @@
name = "Tool Storage Maintenance";
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12035,10 +12184,10 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"aBP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -12079,9 +12228,9 @@
dir = 1;
name = "Vault APC";
areastring = "/area/ai_monitored/nuke_storage";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12148,7 +12297,7 @@
/area/gateway)
"aBZ" = (
/obj/machinery/gateway,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/bot_white,
@@ -12171,7 +12320,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"aCb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/item/pen{
@@ -12210,7 +12359,7 @@
"aCe" = (
/obj/effect/landmark/xeno_spawn,
/obj/item/bikehorn/rubberducky,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/freezer,
@@ -12224,7 +12373,7 @@
},
/area/crew_quarters/theatre)
"aCg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -12236,8 +12385,8 @@
},
/area/crew_quarters/theatre)
"aCi" = (
-/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
"aCj" = (
@@ -12254,7 +12403,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aCl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -12294,7 +12443,7 @@
c_tag = "Arrivals North";
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -12331,7 +12480,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/auxiliary)
"aCt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -12371,14 +12520,14 @@
/obj/structure/window/reinforced{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aCA" = (
/obj/structure/grille/broken,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/window{
@@ -12408,7 +12557,7 @@
/obj/machinery/door/poddoor/preopen{
id = "maint1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -12450,7 +12599,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aCJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -12597,7 +12746,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/auxiliary)
"aDd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12728,7 +12877,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/nuke_storage)
"aDt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -12761,7 +12910,7 @@
/turf/open/floor/plasteel/dark,
/area/gateway)
"aDx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/window{
@@ -12787,7 +12936,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"aDA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -12808,7 +12957,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"aDD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12892,7 +13041,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/freezer,
@@ -12914,7 +13063,7 @@
/area/crew_quarters/toilet)
"aDQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/freezer,
@@ -12943,14 +13092,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
"aDT" = (
/obj/machinery/light/small,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/freezer,
@@ -12959,7 +13108,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/freezer,
@@ -12993,7 +13142,7 @@
},
/area/crew_quarters/theatre)
"aDZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -13005,10 +13154,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aEa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -13044,17 +13193,17 @@
},
/area/crew_quarters/theatre)
"aEd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aEe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13063,7 +13212,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aEf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13079,9 +13228,9 @@
dir = 2;
name = "Chapel APC";
areastring = "/area/chapel/main";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -13154,7 +13303,7 @@
/turf/open/floor/plasteel/white/corner,
/area/hallway/secondary/entry)
"aEA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -13173,7 +13322,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aEC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -13186,10 +13335,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aED" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -13282,7 +13431,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/nuke_storage)
"aEO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit,
@@ -13337,7 +13486,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"aET" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -13453,7 +13602,7 @@
dir = 4;
name = "Dormitory Bathrooms APC";
areastring = "/area/crew_quarters/toilet";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -13528,7 +13677,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13537,7 +13686,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aFs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -13553,7 +13702,7 @@
/turf/closed/wall,
/area/library)
"aFv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -13577,12 +13726,12 @@
dir = 2;
name = "Chapel Office APC";
areastring = "/area/chapel/office";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/chapel/office)
+/area/maintenance/starboard/fore)
"aFz" = (
/turf/open/floor/plasteel/dark,
/area/chapel/main)
@@ -13738,7 +13887,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"aFR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -13765,7 +13914,7 @@
/area/storage/primary)
"aFV" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/meter,
@@ -13821,7 +13970,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/nuke_storage)
"aGc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/camera/motion{
@@ -13836,7 +13985,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/nuke_storage)
"aGd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral,
@@ -14026,20 +14175,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aGz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -14049,10 +14198,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aGA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -14065,7 +14214,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aGB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -14081,7 +14230,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -14113,7 +14262,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -14144,10 +14293,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -14159,7 +14308,7 @@
/obj/structure/disposalpipe/junction{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -14171,7 +14320,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -14180,7 +14329,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aGL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -14201,13 +14350,13 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aGN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -14223,7 +14372,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -14233,7 +14382,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -14242,11 +14391,11 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aGS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -14255,7 +14404,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14374,7 +14523,7 @@
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
"aHh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -14393,7 +14542,7 @@
/obj/machinery/light_switch{
pixel_x = -20
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -14440,7 +14589,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/filingcabinet/chestdrawer,
@@ -14554,7 +14703,7 @@
/obj/machinery/door/airlock/vault{
req_access_txt = "53"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -14782,7 +14931,7 @@
dir = 2;
name = "Bar APC";
areastring = "/area/crew_quarters/bar";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14833,7 +14982,7 @@
dir = 2;
name = "Kitchen APC";
areastring = "/area/crew_quarters/kitchen";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14842,7 +14991,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aIj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -14862,10 +15011,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aIl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -14881,7 +15030,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14894,9 +15043,9 @@
dir = 2;
name = "Hydroponics APC";
areastring = "/area/hydroponics";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14906,7 +15055,7 @@
/area/maintenance/starboard/fore)
"aIo" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -14925,7 +15074,7 @@
/turf/open/floor/wood,
/area/library)
"aIs" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/camera{
c_tag = "Library North";
dir = 2
@@ -14954,7 +15103,7 @@
/turf/open/floor/wood,
/area/library)
"aIw" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/structure/disposalpipe/segment{
dir = 6
},
@@ -15179,7 +15328,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"aJa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -15195,14 +15344,14 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"aJd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/primary/port)
"aJe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -15436,7 +15585,8 @@
"aJD" = (
/obj/machinery/door/airlock/maintenance{
name = "Bar Maintenance";
- req_access_txt = "12"
+ req_access_txt = "0";
+ req_one_access_txt = "12;25;26;35;28;22;37;46;38"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -15551,13 +15701,13 @@
/turf/open/floor/wood,
/area/library)
"aJQ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/wood,
/area/library)
"aJR" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/wood,
@@ -15616,7 +15766,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"aJZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -15634,24 +15784,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aKb" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
"aKc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Gateway Access";
req_access_txt = "62"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -15673,16 +15812,16 @@
},
/area/chapel/main)
"aKf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Auxillary Base Construction APC";
areastring = "/area/construction/mining/aux_base";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -15756,41 +15895,41 @@
/turf/open/floor/plating,
/area/storage/primary)
"aKt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/primary/port)
"aKu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/primary/port)
"aKv" = (
-/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/hallway/primary/port)
"aKw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/door/firedoor,
@@ -15807,7 +15946,7 @@
/turf/open/floor/plasteel/dark,
/area/hallway/primary/port)
"aKx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -15815,7 +15954,7 @@
/area/hallway/primary/port)
"aKy" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
@@ -16112,7 +16251,7 @@
/turf/open/floor/plasteel/grimy,
/area/hallway/secondary/entry)
"aLk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -16141,7 +16280,7 @@
/area/hallway/primary/port)
"aLn" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -16154,7 +16293,7 @@
/turf/closed/wall,
/area/chapel/office)
"aLp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -16255,14 +16394,14 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aLG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
name = "Port Hall APC";
areastring = "/area/hallway/primary/port";
dir = 1;
- pixel_y = 26
+ pixel_y = 23
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
@@ -16328,7 +16467,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aLP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -16655,7 +16794,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"aMH" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/wood,
@@ -16666,7 +16805,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"aMJ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/structure/disposalpipe/segment,
@@ -16707,7 +16846,7 @@
/turf/open/floor/carpet,
/area/hallway/secondary/entry)
"aMQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -16716,7 +16855,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aMR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -16734,7 +16873,7 @@
/area/hallway/primary/port)
"aMU" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -16744,7 +16883,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aMV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -16817,28 +16956,28 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aNk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aNl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aNm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aNo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -17063,10 +17202,10 @@
/turf/open/floor/wood,
/area/library)
"aNT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -17119,19 +17258,6 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/main)
-"aNZ" = (
-/obj/structure/chair,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
"aOa" = (
/obj/machinery/light{
dir = 1
@@ -17146,13 +17272,17 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
"aOb" = (
-/obj/structure/chair,
/obj/effect/turf_decal/tile/red{
dir = 1
},
/obj/effect/turf_decal/tile/red{
dir = 4
},
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
"aOc" = (
@@ -17201,7 +17331,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"aOi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -17237,7 +17367,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -17289,7 +17419,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aOt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light,
@@ -17302,7 +17432,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aOv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17311,20 +17441,20 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aOw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aOx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -17333,10 +17463,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"aOy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -17555,7 +17685,7 @@
/turf/open/floor/wood,
/area/library)
"aPc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -17626,28 +17756,27 @@
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plasteel/dark,
/area/chapel/main)
-"aPp" = (
-/obj/machinery/camera{
- c_tag = "Escape Arm Holding Area";
- dir = 4
- },
-/obj/item/radio/intercom{
- dir = 8;
- pixel_x = -28
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
"aPq" = (
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
"aPr" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Escape Arm Holding Area";
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = -25
+ },
+/obj/structure/chair{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
"aPs" = (
@@ -17719,7 +17848,7 @@
req_access_txt = "12"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -17751,7 +17880,7 @@
/turf/open/floor/plasteel,
/area/storage/art)
"aPI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
@@ -17794,10 +17923,10 @@
/turf/closed/wall/r_wall,
/area/bridge)
"aPS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -17808,7 +17937,7 @@
/turf/open/floor/plating,
/area/bridge)
"aPT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -17819,10 +17948,10 @@
/turf/open/floor/plating,
/area/bridge)
"aPU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/status_display/evac,
@@ -17834,13 +17963,13 @@
/turf/open/floor/plating,
/area/bridge)
"aPV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -17851,10 +17980,10 @@
/turf/open/floor/plating,
/area/bridge)
"aPW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/status_display/evac,
@@ -17866,7 +17995,7 @@
/turf/open/floor/plating,
/area/bridge)
"aPX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -18106,15 +18235,6 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/main)
-"aQB" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
"aQC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
@@ -18190,7 +18310,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"aQM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -18264,7 +18384,7 @@
/turf/open/floor/plasteel,
/area/storage/art)
"aRb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -18289,7 +18409,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"aRe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -18344,7 +18464,7 @@
/obj/machinery/computer/monitor{
name = "bridge power monitoring console"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/yellow,
@@ -18395,7 +18515,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aRp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/computer/shuttle/mining,
@@ -18578,7 +18698,7 @@
/area/hydroponics)
"aRK" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/power/apc{
@@ -18636,7 +18756,7 @@
/turf/open/floor/carpet,
/area/chapel/main)
"aRT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/rack,
@@ -18655,13 +18775,13 @@
dir = 1;
name = "Auxiliary Tool Storage APC";
areastring = "/area/storage/tools";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/firealarm{
dir = 4;
pixel_x = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/table,
@@ -18830,7 +18950,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aSw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/yellow{
@@ -18883,7 +19003,7 @@
/area/bridge)
"aSB" = (
/obj/structure/table/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue,
@@ -19052,7 +19172,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -19206,7 +19326,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"aTv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -19388,7 +19508,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aTW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -19403,7 +19523,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aTZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -19507,7 +19627,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"aUl" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/wood,
@@ -19590,10 +19710,11 @@
/area/storage/tools)
"aUx" = (
/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+ req_access_txt = "0";
+ req_one_access_txt = "12;38"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -19642,7 +19763,7 @@
/area/library)
"aUF" = (
/obj/effect/landmark/start/librarian,
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/wood,
/area/library)
"aUG" = (
@@ -19696,7 +19817,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"aUN" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -19722,13 +19843,13 @@
/area/vacant_room/office)
"aUS" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/port)
"aUT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -19810,7 +19931,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -19853,9 +19974,9 @@
dir = 8;
name = "Fore Primary Hallway APC";
areastring = "/area/hallway/primary/fore";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/camera{
@@ -19875,7 +19996,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -19885,10 +20006,10 @@
/area/bridge)
"aVk" = (
/obj/machinery/holopad,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -19897,7 +20018,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -19906,7 +20027,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -19915,10 +20036,10 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -19927,10 +20048,10 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -19941,7 +20062,7 @@
/area/bridge)
"aVp" = (
/obj/item/beacon,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -19950,7 +20071,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aVq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -19979,7 +20100,7 @@
dir = 1;
name = "Logistics Station"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -20073,7 +20194,7 @@
/area/crew_quarters/kitchen)
"aVC" = (
/obj/machinery/meter,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -20136,7 +20257,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"aVL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -20328,7 +20449,7 @@
/area/maintenance/port)
"aWk" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -20399,7 +20520,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -20418,15 +20539,15 @@
dir = 1;
name = "Art Storage";
areastring = "/area/storage/art";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -20436,10 +20557,10 @@
/area/maintenance/port)
"aWx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -20459,12 +20580,12 @@
dir = 1;
name = "Port Emergency Storage APC";
areastring = "/area/storage/emergency/port";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -20540,7 +20661,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aWI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -20553,10 +20674,10 @@
/area/bridge)
"aWJ" = (
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -20569,14 +20690,14 @@
/turf/open/floor/plasteel,
/area/bridge)
"aWK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/bridge)
"aWL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -20595,7 +20716,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aWN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20657,7 +20778,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aWS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20721,7 +20842,7 @@
dir = 2;
name = "Bridge APC";
areastring = "/area/bridge";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/machinery/light,
@@ -20755,7 +20876,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aWZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -20765,10 +20886,10 @@
/turf/open/floor/plasteel,
/area/bridge)
"aXa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -20780,7 +20901,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aXb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -20795,7 +20916,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aXc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -20811,7 +20932,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aXd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -20827,14 +20948,14 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aXe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -20856,7 +20977,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aXg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -21020,12 +21141,6 @@
},
/turf/open/floor/carpet,
/area/chapel/main)
-"aXC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
"aXD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -21122,7 +21237,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -21175,7 +21290,7 @@
/turf/open/floor/wood,
/area/vacant_room/office)
"aXY" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -21193,21 +21308,21 @@
dir = 8;
name = "Port Maintenance APC";
areastring = "/area/maintenance/port";
- pixel_x = -27;
+ pixel_x = -25;
pixel_y = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/port)
"aYb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -21225,7 +21340,7 @@
/turf/closed/wall,
/area/quartermaster/warehouse)
"aYd" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -21252,7 +21367,7 @@
/turf/open/floor/plating,
/area/construction)
"aYh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -21352,7 +21467,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aYs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -21395,7 +21510,7 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
"aYw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -21452,7 +21567,7 @@
/turf/open/floor/plasteel,
/area/bridge)
"aYD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -21479,7 +21594,7 @@
dir = 2;
name = "Central Hall APC";
areastring = "/area/hallway/primary/central";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/effect/turf_decal/tile/blue,
@@ -21657,7 +21772,7 @@
/area/crew_quarters/bar)
"aZc" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -21697,12 +21812,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/chapel/main)
-"aZi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
"aZj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -21853,7 +21962,7 @@
"aZD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -21869,7 +21978,7 @@
/obj/machinery/light_switch{
pixel_y = 28
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -21915,7 +22024,7 @@
name = "Conference Room";
req_access_txt = "19"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -21931,7 +22040,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"aZT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -21954,7 +22063,7 @@
name = "Captain's Office";
req_access_txt = "20"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -22029,7 +22138,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -22111,7 +22220,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bao" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/computer/security/telescreen/entertainment{
@@ -22136,7 +22245,7 @@
/obj/machinery/status_display/ai{
pixel_y = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22215,12 +22324,6 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/main)
-"baC" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
"baD" = (
/obj/machinery/power/apc{
dir = 8;
@@ -22228,7 +22331,7 @@
areastring = "/area/hallway/secondary/exit";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/red{
@@ -22239,7 +22342,7 @@
},
/area/hallway/secondary/exit)
"baE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -22293,17 +22396,17 @@
/area/maintenance/port)
"baM" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/power/apc{
dir = 4;
name = "Locker Restrooms APC";
areastring = "/area/crew_quarters/toilet/locker";
- pixel_x = 27;
+ pixel_x = 24;
pixel_y = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -22340,7 +22443,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/warehouse)
"baT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -22464,7 +22567,7 @@
/turf/open/floor/wood,
/area/bridge/meeting_room)
"bbi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -22550,9 +22653,9 @@
dir = 1;
name = "Captain's Office APC";
areastring = "/area/crew_quarters/heads/captain";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/wood,
@@ -22561,10 +22664,10 @@
/obj/machinery/status_display/evac{
pixel_y = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/carpet,
@@ -22637,7 +22740,7 @@
},
/area/hallway/secondary/exit)
"bbH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -22648,25 +22751,25 @@
dir = 8;
name = "Vacant Office APC";
areastring = "/area/vacant_room/office";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/maintenance/port)
"bbJ" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
/area/maintenance/port)
"bbK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -22801,7 +22904,7 @@
/turf/open/floor/wood,
/area/bridge/meeting_room)
"bcd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -22819,7 +22922,7 @@
/area/ai_monitored/turret_protected/ai_upload)
"bcf" = (
/obj/machinery/holopad,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -22847,7 +22950,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bcj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
@@ -22875,7 +22978,7 @@
/obj/structure/chair/comfy/brown{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -22967,7 +23070,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
"bcA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -23044,7 +23147,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"bcL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction/flip{
@@ -23148,7 +23251,7 @@
/turf/open/floor/wood,
/area/bridge/meeting_room)
"bde" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -23168,7 +23271,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"bdg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit,
@@ -23203,10 +23306,10 @@
/area/crew_quarters/heads/captain)
"bdl" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -23214,7 +23317,7 @@
/area/hallway/primary/starboard)
"bdm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -23266,7 +23369,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -23317,7 +23420,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -23336,7 +23439,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -23345,14 +23448,14 @@
/turf/open/floor/plating,
/area/maintenance/port)
"bdC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail/flip{
dir = 1;
sortType = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -23364,7 +23467,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -23442,7 +23545,7 @@
req_access_txt = "12"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -23462,7 +23565,7 @@
/turf/closed/wall,
/area/maintenance/disposal)
"bdR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -23480,9 +23583,9 @@
dir = 8;
name = "Disposal APC";
areastring = "/area/maintenance/disposal";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -23521,7 +23624,7 @@
/turf/open/floor/carpet,
/area/bridge/meeting_room)
"bdZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -23568,7 +23671,7 @@
dir = 2;
name = "Upload APC";
areastring = "/area/ai_monitored/turret_protected/ai_upload";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/turf/open/floor/circuit,
@@ -23646,7 +23749,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"bem" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -23728,13 +23831,13 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bew" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -23764,7 +23867,7 @@
},
/area/hallway/primary/starboard)
"bez" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -23782,13 +23885,13 @@
c_tag = "Starboard Primary Hallway 3";
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"beC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -23843,7 +23946,7 @@
/area/hallway/secondary/exit)
"beJ" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -24010,9 +24113,9 @@
dir = 1;
name = "Locker Room APC";
areastring = "/area/crew_quarters/locker";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -24036,7 +24139,7 @@
dir = 9
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -24080,12 +24183,12 @@
name = "Cargo Bay APC";
areastring = "/area/quartermaster/storage";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -24201,7 +24304,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bfD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/wood,
@@ -24247,7 +24350,7 @@
/turf/closed/wall,
/area/medical/morgue)
"bfM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -24267,9 +24370,9 @@
dir = 2;
name = "Starboard Primary Hallway APC";
areastring = "/area/hallway/primary/starboard";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bfQ" = (
@@ -24378,7 +24481,7 @@
/area/hallway/secondary/exit)
"bge" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -24445,16 +24548,16 @@
/area/hallway/primary/central)
"bgo" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/power/apc{
dir = 4;
name = "Mech Bay APC";
areastring = "/area/science/robotics/mechbay";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -24465,7 +24568,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"bgq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -24488,6 +24591,10 @@
dir = 1;
pixel_y = -22
},
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/locker)
"bgt" = (
@@ -24510,7 +24617,7 @@
/turf/closed/wall,
/area/quartermaster/office)
"bgw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -24685,7 +24792,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bgW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -24715,9 +24822,9 @@
dir = 1;
name = "Chemistry APC";
areastring = "/area/medical/chemistry";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/white,
@@ -24872,9 +24979,9 @@
dir = 1;
name = "Morgue APC";
areastring = "/area/medical/morgue";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/dark,
@@ -24919,7 +25026,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -25044,7 +25151,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -25102,7 +25209,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"bhO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -25300,7 +25407,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bin" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -25376,7 +25483,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"bix" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/depsec/medical,
@@ -25413,7 +25520,7 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"biB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -25443,7 +25550,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -25452,39 +25559,39 @@
/obj/machinery/mech_bay_recharge_port{
dir = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/science/robotics/mechbay)
"biH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"biI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/circuit,
/area/science/robotics/mechbay)
"biJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/circuit,
/area/science/robotics/mechbay)
"biK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -25628,7 +25735,7 @@
/area/science/lab)
"biY" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -25691,7 +25798,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25711,7 +25818,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25720,7 +25827,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"bjk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -25732,10 +25839,10 @@
/turf/open/floor/plating,
/area/maintenance/port)
"bjl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -25800,7 +25907,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -25827,13 +25934,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"bjx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -25894,7 +26001,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bjH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -25904,19 +26011,19 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bjI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bjJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bjK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -25927,7 +26034,7 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"bjM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -25954,7 +26061,7 @@
/obj/machinery/computer/mech_bay_power_console{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
@@ -26114,7 +26221,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -26149,7 +26256,7 @@
/turf/open/floor/plasteel/white,
/area/science/robotics/lab)
"bkp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -26215,7 +26322,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -26295,7 +26402,7 @@
name = "Cargo Bay Maintenance";
req_access_txt = "31"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -26319,7 +26426,7 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"bkK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -26364,7 +26471,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -26376,7 +26483,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small,
@@ -26387,7 +26494,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light_switch{
@@ -26411,7 +26518,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -26420,10 +26527,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -26434,7 +26541,7 @@
/area/medical/morgue)
"bkV" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -26443,7 +26550,7 @@
/turf/open/floor/plating,
/area/maintenance/fore/secondary)
"bkW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -26455,17 +26562,17 @@
areastring = "/area/bridge/meeting_room";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
/area/maintenance/central)
"bkY" = (
/obj/effect/landmark/blobstart,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -26489,7 +26596,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -26514,7 +26621,7 @@
name = "Captain's Office Maintenance";
req_access_txt = "20"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -26550,7 +26657,7 @@
name = "Morgue Maintenance";
req_access_txt = "6"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -26622,16 +26729,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/power/apc{
dir = 1;
name = "Starboard Emergency Storage APC";
areastring = "/area/storage/emergency/starboard";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -26646,7 +26753,7 @@
areastring = "/area/security/checkpoint/medical";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/red{
@@ -26658,10 +26765,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"blq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -26700,16 +26807,16 @@
/obj/machinery/computer/mech_bay_power_console{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"blv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/holopad,
@@ -26735,14 +26842,14 @@
/obj/machinery/light_switch{
pixel_x = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/science/robotics/lab)
"blz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -26857,7 +26964,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -26891,7 +26998,7 @@
/turf/open/floor/plating,
/area/maintenance/disposal)
"blT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -26971,7 +27078,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -26981,7 +27088,7 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -27009,7 +27116,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"bmh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -27022,7 +27129,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"bmj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27037,7 +27144,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"bmm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -27076,7 +27183,7 @@
name = "Head of Personnel";
req_access_txt = "57"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -27084,7 +27191,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"bmt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/brown{
@@ -27162,7 +27269,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/heads/captain)
"bmD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -27224,7 +27331,7 @@
name = "Cargo Bay";
req_access_txt = "31"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -27284,7 +27391,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bmN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -27306,7 +27413,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"bmP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -27354,7 +27461,7 @@
name = "Morgue";
req_access_txt = "6;5"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27384,7 +27491,7 @@
/area/medical/genetics)
"bna" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27456,7 +27563,7 @@
/turf/open/floor/plasteel/white,
/area/science/lab)
"bnl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -27537,7 +27644,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -27546,7 +27653,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
@@ -27554,7 +27661,7 @@
/area/quartermaster/office)
"bnz" = (
/obj/effect/landmark/start/cargo_technician,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -27566,7 +27673,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -27582,11 +27689,11 @@
/area/medical/chemistry)
"bnE" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -27652,7 +27759,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"bnM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -27723,7 +27830,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hop)
"bnS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -27734,14 +27841,14 @@
/obj/structure/sign/warning/electricshock{
pixel_x = -32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/engine/gravity_generator)
"bnU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering/glass{
@@ -27751,10 +27858,10 @@
/turf/open/floor/plasteel/dark,
/area/engine/gravity_generator)
"bnV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -27764,10 +27871,10 @@
/obj/structure/sign/warning/radiation/rad_area{
pixel_x = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -27816,7 +27923,7 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"boc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -27906,7 +28013,7 @@
name = "Security Office";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -28070,7 +28177,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28092,7 +28199,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28178,7 +28285,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"boV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -28260,7 +28367,7 @@
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
"bpc" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/structure/disposalpipe/segment{
@@ -28286,7 +28393,7 @@
/area/crew_quarters/heads/hop)
"bpf" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -28365,7 +28472,7 @@
},
/area/science/research)
"bpq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white/side{
@@ -28407,7 +28514,7 @@
/turf/closed/wall,
/area/medical/medbay/central)
"bpx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -28436,7 +28543,7 @@
/area/quartermaster/office)
"bpB" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -28453,7 +28560,7 @@
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -28479,9 +28586,9 @@
dir = 1;
name = "Genetics APC";
areastring = "/area/medical/genetics";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/white,
@@ -28549,7 +28656,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bpP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -28558,7 +28665,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bpQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -28685,7 +28792,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -28763,13 +28870,13 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"bqq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
"bqr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -28798,7 +28905,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/door/poddoor/shutters/preopen{
@@ -28837,7 +28944,7 @@
dir = 8;
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -28845,7 +28952,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hop)
"bqD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
@@ -28866,7 +28973,7 @@
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bqG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable,
@@ -28894,7 +29001,7 @@
/obj/structure/sign/warning/securearea{
pixel_x = -32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -28921,7 +29028,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -28963,7 +29070,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bqS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -28977,7 +29084,7 @@
/area/medical/medbay/central)
"bqT" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -28992,7 +29099,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bqU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/noticeboard{
@@ -29009,7 +29116,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bqV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -29021,7 +29128,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bqW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -29030,7 +29137,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bqX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -29039,14 +29146,14 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bqY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bqZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -29087,23 +29194,23 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"brf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"brg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"brh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -29133,7 +29240,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"brk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -29143,7 +29250,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white/side{
@@ -29224,7 +29331,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -29250,7 +29357,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -29262,7 +29369,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -29360,10 +29467,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -29372,10 +29479,10 @@
/turf/open/floor/plasteel/white,
/area/science/explab)
"brQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -29389,7 +29496,7 @@
/area/maintenance/starboard)
"brR" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -29402,7 +29509,7 @@
/obj/structure/sign/warning/electricshock{
pixel_y = -32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/cable,
@@ -29421,7 +29528,7 @@
/turf/open/floor/plating,
/area/medical/medbay/central)
"brW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/vending/cart,
@@ -29449,11 +29556,11 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"brZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29562,7 +29669,7 @@
/obj/machinery/light_switch{
pixel_x = 27
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -29634,7 +29741,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bsv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29648,13 +29755,13 @@
/turf/open/floor/plasteel/white,
/area/science/robotics/lab)
"bsx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bsy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -29747,7 +29854,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"bsV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -29767,7 +29874,7 @@
},
/area/science/research)
"bsY" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/start/head_of_personnel,
@@ -29787,7 +29894,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/white/side{
@@ -29845,7 +29952,7 @@
dir = 2;
sortType = 12
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -30022,7 +30129,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hop)
"btE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -30046,7 +30153,7 @@
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
"btH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair/stool,
@@ -30058,15 +30165,15 @@
dir = 8;
name = "Teleporter APC";
areastring = "/area/teleporter";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
/area/teleporter)
"btJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/bluespace_beacon,
@@ -30074,13 +30181,13 @@
/area/teleporter)
"btK" = (
/obj/machinery/holopad,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/teleporter)
"btL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -30091,22 +30198,22 @@
name = "Teleport Access";
req_access_txt = "17"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/teleporter)
"btN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/teleporter)
"btO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -30217,9 +30324,9 @@
name = "Cargo Office APC";
areastring = "/area/quartermaster/office";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -30308,7 +30415,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -30331,7 +30438,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30343,7 +30450,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30360,7 +30467,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30376,20 +30483,20 @@
/obj/structure/disposalpipe/sorting/mail{
sortType = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"buz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -30438,7 +30545,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30461,7 +30568,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30489,7 +30596,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -30573,7 +30680,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30591,7 +30698,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor/heavy,
@@ -30633,7 +30740,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"bva" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/sign/warning/securearea{
@@ -30652,10 +30759,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30667,7 +30774,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light,
@@ -30686,10 +30793,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -30713,11 +30820,11 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -30845,7 +30952,7 @@
/area/medical/genetics)
"bvz" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -30879,7 +30986,7 @@
/turf/open/floor/plating,
/area/security/checkpoint/science)
"bvD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -30922,7 +31029,7 @@
/area/science/research)
"bvI" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -31063,10 +31170,10 @@
/area/hallway/primary/central)
"bwc" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -31140,7 +31247,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hop)
"bwl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -31198,7 +31305,7 @@
/turf/open/floor/plating,
/area/teleporter)
"bwu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -31265,9 +31372,7 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"bwD" = (
-/obj/machinery/sleeper{
- dir = 8
- },
+/obj/machinery/stasis,
/turf/open/floor/plasteel,
/area/medical/sleeper)
"bwE" = (
@@ -31340,7 +31445,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bwM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -31391,7 +31496,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/heads/hor)
"bwS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -31407,7 +31512,7 @@
name = "Quartermaster";
req_access_txt = "41"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -31419,7 +31524,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"bwU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -31435,7 +31540,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"bwV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -31452,10 +31557,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -31464,10 +31569,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bwX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -31518,7 +31623,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -31530,7 +31635,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -31543,7 +31648,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -31607,7 +31712,7 @@
"bxt" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -31616,7 +31721,7 @@
/turf/closed/wall,
/area/quartermaster/qm)
"bxv" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/start/depsec/science,
@@ -31644,7 +31749,7 @@
/turf/closed/wall,
/area/quartermaster/miningdock)
"bxA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -31673,7 +31778,7 @@
name = "Head of Personnel";
req_access_txt = "57"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -31712,7 +31817,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bxM" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/event_spawn,
/obj/effect/turf_decal/tile/red,
@@ -31739,7 +31844,7 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"bxP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -31785,7 +31890,7 @@
name = "Research Director";
req_access_txt = "30"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -31894,7 +31999,7 @@
name = "Server Room";
req_access_txt = "30"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -31907,7 +32012,7 @@
name = "Security Office";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -32041,9 +32146,9 @@
dir = 1;
name = "Quartermaster APC";
areastring = "/area/quartermaster/qm";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/brown{
@@ -32097,16 +32202,16 @@
dir = 1;
name = "Mining Dock APC";
areastring = "/area/quartermaster/miningdock";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"byG" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -32159,7 +32264,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"byL" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/depsec/supply,
@@ -32227,7 +32332,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"byR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -32471,7 +32576,7 @@
/obj/machinery/atmospherics/pipe/simple{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/dark,
@@ -32504,9 +32609,9 @@
dir = 1;
name = "Server Room APC";
areastring = "/area/science/server";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -32666,13 +32771,13 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"bzQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"bzR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -32689,9 +32794,9 @@
/turf/open/floor/plasteel,
/area/medical/sleeper)
"bzT" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/quartermaster,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -32731,13 +32836,13 @@
/area/science/research)
"bAa" = (
/obj/machinery/door/firedoor/heavy,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
/area/science/research)
"bAb" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/shaft_miner,
@@ -32745,7 +32850,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bAc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -32775,7 +32880,7 @@
codes_txt = "patrol;next_patrol=AIW";
location = "QM"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -32826,12 +32931,15 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bAn" = (
@@ -32842,7 +32950,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -32854,7 +32962,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/power/apc{
@@ -32862,9 +32970,9 @@
name = "Cargo Security APC";
areastring = "/area/security/checkpoint/supply";
pixel_x = 1;
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -32884,14 +32992,12 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"bAq" = (
-/obj/machinery/sleeper{
- dir = 8
- },
/obj/machinery/camera{
c_tag = "Medbay Treatment Center";
network = list("ss13","medbay");
dir = 8
},
+/obj/machinery/stasis,
/turf/open/floor/plasteel,
/area/medical/sleeper)
"bAr" = (
@@ -32937,7 +33043,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33011,13 +33117,13 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
"bAF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
"bAG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -33032,7 +33138,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
"bAI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -33047,7 +33153,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33059,10 +33165,10 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33248,17 +33354,17 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"bBg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bBh" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/brown{
@@ -33267,7 +33373,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bBi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -33277,14 +33383,14 @@
dir = 1;
pixel_y = -22
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bBk" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/camera{
@@ -33294,7 +33400,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bBl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -33423,7 +33529,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bBz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -33432,7 +33538,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bBA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/junction/flip{
@@ -33441,7 +33547,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bBB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -33464,10 +33570,10 @@
},
/area/science/research)
"bBE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -33477,6 +33583,9 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bBH" = (
@@ -33640,7 +33749,7 @@
dir = 2;
name = "Science Security APC";
areastring = "/area/security/checkpoint/science";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/effect/turf_decal/tile/red,
@@ -33775,7 +33884,7 @@
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -33784,7 +33893,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -33819,7 +33928,7 @@
req_access_txt = "12"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -33861,7 +33970,7 @@
/turf/open/floor/plasteel,
/area/janitor)
"bCx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -33878,7 +33987,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -33950,7 +34059,7 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"bCI" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/event_spawn,
@@ -34198,7 +34307,7 @@
},
/area/science/research)
"bDm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34216,6 +34325,9 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bDp" = (
@@ -34259,7 +34371,7 @@
/area/maintenance/port/aft)
"bDu" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -34310,9 +34422,9 @@
dir = 1;
name = "Tech Storage APC";
areastring = "/area/storage/tech";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -34329,9 +34441,9 @@
dir = 4;
name = "Treatment Center APC";
areastring = "/area/medical/sleeper";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -34438,7 +34550,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bDO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -34456,7 +34568,7 @@
/area/janitor)
"bDQ" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -34497,7 +34609,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/heads/cmo)
"bDV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -34517,7 +34629,7 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"bDY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/xeno_spawn,
@@ -34537,7 +34649,7 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"bEb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -34547,7 +34659,7 @@
/turf/open/floor/plasteel,
/area/science/storage)
"bEc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -34573,7 +34685,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bEf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -34584,7 +34696,7 @@
},
/area/science/research)
"bEg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/research{
@@ -34694,7 +34806,7 @@
areastring = "/area/science/research";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/white/side{
@@ -34702,13 +34814,13 @@
},
/area/science/research)
"bEr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -34741,7 +34853,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"bEE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -34758,7 +34870,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"bEG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -34770,7 +34882,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"bEI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -34785,7 +34897,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -34798,7 +34910,7 @@
/turf/closed/wall/r_wall,
/area/science/mixing)
"bEN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -34829,10 +34941,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bER" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -34845,7 +34957,7 @@
/turf/closed/wall,
/area/maintenance/port/aft)
"bET" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34854,33 +34966,33 @@
/turf/open/floor/plating,
/area/storage/tech)
"bEU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/storage/tech)
"bEV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/storage/tech)
"bEW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -34893,7 +35005,7 @@
/turf/open/floor/plating,
/area/storage/tech)
"bEY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -34913,13 +35025,13 @@
/turf/open/floor/plating,
/area/storage/tech)
"bFb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/storage/tech)
"bFc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/blobstart,
@@ -34941,7 +35053,7 @@
name = "Tech Storage";
req_access_txt = "23"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34959,7 +35071,7 @@
/turf/open/floor/plasteel,
/area/janitor)
"bFh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -34975,7 +35087,7 @@
/area/janitor)
"bFj" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
@@ -34990,16 +35102,16 @@
/turf/open/floor/plasteel,
/area/janitor)
"bFl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/power/apc{
dir = 8;
name = "Custodial Closet APC";
areastring = "/area/janitor";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -35328,9 +35440,9 @@
dir = 4;
name = "Toxins Lab APC";
areastring = "/area/science/mixing";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -35340,7 +35452,7 @@
/obj/machinery/door/airlock/maintenance{
req_one_access_txt = "8;12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -35404,18 +35516,18 @@
/area/maintenance/port/aft)
"bGq" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bGr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/storage/tech)
"bGs" = (
@@ -35423,7 +35535,7 @@
c_tag = "Secure Tech Storage";
dir = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -35447,7 +35559,7 @@
/area/storage/tech)
"bGw" = (
/obj/structure/rack,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/spawner/lootdrop/techstorage/rnd,
@@ -35479,7 +35591,7 @@
dir = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -35501,7 +35613,7 @@
/turf/open/floor/plasteel,
/area/janitor)
"bGC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor/heavy,
@@ -35533,13 +35645,13 @@
/turf/open/floor/plasteel,
/area/janitor)
"bGF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -35548,10 +35660,10 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"bGG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -35565,29 +35677,29 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"bGH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/aft)
"bGI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/aft)
"bGJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/aft)
"bGK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -35612,13 +35724,16 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bGN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -35627,7 +35742,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bGO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -35643,7 +35758,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bGP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -35772,7 +35887,7 @@
areastring = "/area/science/storage";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/camera{
@@ -35808,7 +35923,7 @@
/turf/open/floor/plating,
/area/storage/tech)
"bHj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -35858,7 +35973,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -35866,7 +35981,7 @@
/area/maintenance/aft)
"bHq" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -35985,7 +36100,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bHH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -35995,13 +36110,13 @@
name = "Secure Tech Storage";
req_access_txt = "19;23"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/storage/tech)
"bHJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/xeno_spawn,
@@ -36075,7 +36190,7 @@
/turf/open/floor/plating,
/area/medical/medbay/central)
"bHU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/grille/broken,
@@ -36086,9 +36201,9 @@
dir = 8;
name = "Aft Maintenance APC";
areastring = "/area/maintenance/aft";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -36106,7 +36221,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -36118,7 +36233,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
@@ -36164,7 +36279,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bIf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/doorButtons/access_button{
@@ -36188,10 +36303,10 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bIg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -36207,10 +36322,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36342,7 +36457,7 @@
name = "Xenobiology Maintenance";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36354,10 +36469,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36369,7 +36484,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36450,7 +36565,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"bIF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -36505,7 +36620,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bIL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -36515,7 +36630,7 @@
/area/medical/virology)
"bIM" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/sign/warning/securearea{
@@ -36545,7 +36660,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"bIQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -36641,16 +36756,19 @@
req_access_txt = "48";
shuttledocked = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/quartermaster/miningdock)
"bJc" = (
/obj/docking_port/stationary{
dir = 8;
dwidth = 3;
- height = 5;
+ height = 10;
id = "mining_home";
name = "mining shuttle bay";
- roundstart_template = /datum/map_template/shuttle/mining/box;
+ roundstart_template = /datum/map_template/shuttle/mining/large;
width = 7
},
/turf/open/space/basic,
@@ -36663,6 +36781,9 @@
name = "Mining Dock";
req_access_txt = "48"
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bJe" = (
@@ -36675,7 +36796,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bJg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -36731,7 +36852,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
@@ -36749,7 +36870,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"bJs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -36761,7 +36882,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"bJt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -36777,10 +36898,10 @@
/turf/open/floor/plasteel,
/area/construction)
"bJv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -36792,13 +36913,13 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"bJw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -36814,7 +36935,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bJy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -36879,20 +37000,20 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bJH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/shieldwallgen/xenobiologyaccess,
/turf/open/floor/plating,
/area/science/xenobiology)
"bJI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -36903,7 +37024,7 @@
/turf/open/floor/engine,
/area/science/xenobiology)
"bJJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -36915,10 +37036,10 @@
/area/science/xenobiology)
"bJK" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -36934,7 +37055,7 @@
name = "Test Chamber";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -36944,7 +37065,7 @@
/turf/open/floor/engine,
/area/science/xenobiology)
"bJM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -37019,7 +37140,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"bKb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -37132,22 +37253,22 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bKr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/storage/tech)
"bKs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/storage/tech)
"bKt" = (
@@ -37224,10 +37345,10 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"bKD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -37246,14 +37367,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/start/cargo_technician,
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"bKG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/securearea{
@@ -37268,7 +37389,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -37281,7 +37402,7 @@
dir = 8;
sortType = 11
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -37294,7 +37415,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -37304,7 +37425,7 @@
/area/maintenance/aft)
"bKK" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
@@ -37320,10 +37441,10 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -37386,9 +37507,9 @@
dir = 1;
name = "CM Office APC";
areastring = "/area/crew_quarters/heads/cmo";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -37414,7 +37535,7 @@
/turf/open/floor/plating,
/area/construction)
"bKV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -37427,7 +37548,7 @@
/area/engine/atmos)
"bKW" = (
/obj/item/wrench,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -37443,7 +37564,7 @@
req_access_txt = "55"
},
/obj/structure/table/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/window/reinforced{
@@ -37490,7 +37611,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"bLb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -37534,7 +37655,7 @@
/turf/closed/wall,
/area/science/xenobiology)
"bLf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -37547,7 +37668,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -37565,7 +37686,7 @@
areastring = "/area/science/mixing/chamber";
dir = 8;
name = "Toxins Chamber APC";
- pixel_x = -26
+ pixel_x = -25
},
/obj/structure/cable,
/turf/open/floor/plasteel/white,
@@ -37643,7 +37764,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bLw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -37702,7 +37823,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -37723,9 +37844,9 @@
name = "Delivery Office APC";
areastring = "/area/quartermaster/sorting";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
@@ -37780,7 +37901,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bLO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -37809,7 +37930,7 @@
/area/maintenance/aft)
"bLT" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -37854,7 +37975,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bLZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -37870,7 +37991,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -37886,7 +38007,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -37898,10 +38019,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -37910,11 +38031,11 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"bMe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -37927,17 +38048,17 @@
areastring = "/area/science/xenobiology";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"bMh" = (
/obj/structure/chair/stool,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -37952,7 +38073,7 @@
/turf/closed/wall,
/area/maintenance/port/aft)
"bMk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -38110,10 +38231,10 @@
/turf/open/floor/plating/airless,
/area/science/test_area)
"bMG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -38163,7 +38284,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bMO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -38264,11 +38385,11 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -38314,10 +38435,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -38329,7 +38450,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -38502,7 +38623,7 @@
/turf/open/floor/plating,
/area/construction)
"bNN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -38697,7 +38818,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bOq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -38788,7 +38909,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"bOD" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel,
@@ -38891,9 +39012,9 @@
dir = 8;
name = "Engineering Security APC";
areastring = "/area/security/checkpoint/engineering";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/newscaster{
@@ -38996,7 +39117,7 @@
},
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
+ departmentType = 3;
name = "Atmos RC";
pixel_x = 30
},
@@ -39019,7 +39140,7 @@
/turf/closed/wall,
/area/engine/atmos)
"bOZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -39170,9 +39291,9 @@
dir = 4;
name = "Testing Lab APC";
areastring = "/area/science/misc_lab";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -39277,7 +39398,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -39369,7 +39490,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -39463,7 +39584,7 @@
pixel_y = -6;
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/radio/off,
@@ -39549,7 +39670,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bQp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -39689,7 +39810,7 @@
"bQL" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -39733,7 +39854,7 @@
/area/tcommsat/computer)
"bQQ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -39790,7 +39911,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bRj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -39799,7 +39920,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bRk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -39824,7 +39945,7 @@
name = "Security Office";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -39906,7 +40027,7 @@
/turf/open/floor/plasteel/dark/corner,
/area/engine/atmos)
"bRv" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/start/atmospheric_technician,
@@ -39948,7 +40069,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -40052,7 +40173,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bRP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -40083,7 +40204,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bRS" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/depsec/engineering,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel,
@@ -40116,7 +40237,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -40128,10 +40249,10 @@
/area/science/xenobiology)
"bRX" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -40139,7 +40260,7 @@
"bRY" = (
/obj/structure/window/reinforced,
/obj/structure/table/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/button/door{
@@ -40154,16 +40275,16 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"bRZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"bSa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -40219,7 +40340,7 @@
"bSm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating{
@@ -40278,7 +40399,7 @@
/turf/open/floor/plating,
/area/construction)
"bSw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -40401,7 +40522,7 @@
/area/engine/atmos)
"bSI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -40500,7 +40621,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bSV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -40509,7 +40630,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bSW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -40522,9 +40643,9 @@
dir = 1;
name = "Virology APC";
areastring = "/area/medical/virology";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/camera{
@@ -40557,7 +40678,7 @@
name = "Containment Pen";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -40568,7 +40689,7 @@
/area/science/xenobiology)
"bTc" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -40588,7 +40709,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"bTe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/window/northleft{
@@ -40603,7 +40724,7 @@
/turf/open/floor/engine,
/area/science/xenobiology)
"bTg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -40650,7 +40771,7 @@
/turf/open/floor/engine,
/area/science/misc_lab)
"bTr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -40729,7 +40850,7 @@
/turf/closed/wall,
/area/maintenance/port/aft)
"bTD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -40797,7 +40918,7 @@
pixel_x = -25;
pixel_y = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
@@ -40952,7 +41073,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -40961,7 +41082,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"bUe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/cable,
@@ -40974,10 +41095,10 @@
/area/science/xenobiology)
"bUf" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -41028,7 +41149,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bUm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -41061,13 +41182,13 @@
/turf/open/space,
/area/space/nearstation)
"bUs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bUt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -41076,10 +41197,10 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41088,7 +41209,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bUv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -41098,10 +41219,10 @@
/obj/structure/disposalpipe/junction/yjunction{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -41115,7 +41236,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"bUz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41128,9 +41249,9 @@
dir = 2;
name = "Telecomms Monitoring APC";
areastring = "/area/tcommsat/computer";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41220,7 +41341,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bUM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -41286,13 +41407,13 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -41301,7 +41422,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41357,7 +41478,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bVe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41419,7 +41540,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"bVm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41435,7 +41556,7 @@
/turf/open/floor/plating,
/area/engine/break_room)
"bVp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -41628,7 +41749,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bVV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
@@ -41695,7 +41816,7 @@
/turf/open/floor/engine/n2o,
/area/engine/atmos)
"bWe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -41750,7 +41871,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -41763,7 +41884,7 @@
"bWm" = (
/obj/structure/window/reinforced,
/obj/structure/table/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/button/door{
@@ -41778,10 +41899,10 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"bWn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -41805,7 +41926,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"bWt" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -41877,9 +41998,9 @@
dir = 1;
name = "Telecomms Server APC";
areastring = "/area/tcommsat/server";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/circuit/telecomms/mainframe,
@@ -41903,14 +42024,14 @@
/area/tcommsat/computer)
"bWI" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
/area/tcommsat/computer)
"bWJ" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -42000,7 +42121,7 @@
c_tag = "Atmospherics West";
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -42123,7 +42244,7 @@
name = "Containment Pen";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -42133,7 +42254,7 @@
/turf/open/floor/engine,
/area/science/xenobiology)
"bXg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/window/northleft{
@@ -42157,10 +42278,10 @@
codes_txt = "patrol;next_patrol=AIE";
location = "AftH"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -42169,7 +42290,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bXm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -42178,7 +42299,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bXn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -42191,7 +42312,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bXo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -42201,10 +42322,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bXp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -42213,7 +42334,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bXq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -42283,7 +42404,7 @@
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"bXC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit/telecomms/mainframe,
@@ -42306,27 +42427,27 @@
/area/tcommsat/computer)
"bXF" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/tcommsat/computer)
"bXG" = (
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"bXH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
/turf/open/floor/plasteel,
/area/engine/break_room)
"bXI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -42514,7 +42635,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -42527,7 +42648,7 @@
dir = 4
},
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -42558,7 +42679,7 @@
/turf/open/floor/engine,
/area/science/misc_lab)
"bYj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -42580,7 +42701,7 @@
"bYn" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/yellow,
@@ -42925,35 +43046,35 @@
/turf/open/floor/plating/airless,
/area/space/nearstation)
"bZn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bZo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bZp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bZq" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -42964,10 +43085,10 @@
/area/tcommsat/computer)
"bZs" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/tcommsat/computer)
"bZt" = (
@@ -43038,7 +43159,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -43052,17 +43173,17 @@
name = "privacy shutter"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/crew_quarters/heads/chief)
"bZD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -43072,7 +43193,7 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -43094,16 +43215,16 @@
dir = 8;
name = "Atmospherics APC";
areastring = "/area/engine/atmos";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
/area/engine/atmos)
"bZG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -43215,7 +43336,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -43234,7 +43355,7 @@
pixel_y = 4;
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -43243,10 +43364,10 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"bZX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -43296,7 +43417,7 @@
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cah" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/circuit/telecomms/mainframe,
@@ -43305,7 +43426,7 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/circuit/telecomms/mainframe,
@@ -43332,7 +43453,7 @@
name = "Server Room";
req_access_txt = "61"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -43395,7 +43516,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"caq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -43427,7 +43548,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cau" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43465,7 +43586,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cay" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -43477,7 +43598,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"caz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -43496,7 +43617,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43513,7 +43634,7 @@
"caE" = (
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
+ departmentType = 3;
name = "Atmos RC";
pixel_x = 30
},
@@ -43572,7 +43693,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43585,10 +43706,10 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -43600,7 +43721,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43610,7 +43731,7 @@
/area/maintenance/aft)
"caO" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -43654,7 +43775,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43666,10 +43787,10 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -43679,7 +43800,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -43695,7 +43816,7 @@
name = "Containment Pen";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -43705,7 +43826,7 @@
/turf/open/floor/engine,
/area/science/xenobiology)
"caW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/window/northleft{
@@ -43738,7 +43859,7 @@
/turf/open/floor/plasteel,
/area/science/misc_lab)
"caZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -43779,7 +43900,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cbg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -43832,10 +43953,10 @@
/area/tcommsat/server)
"cbm" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/tcommsat/computer)
"cbn" = (
@@ -43847,10 +43968,10 @@
/area/tcommsat/computer)
"cbo" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -43866,10 +43987,10 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -43905,7 +44026,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -43934,9 +44055,9 @@
dir = 8;
name = "Engineering Foyer APC";
areastring = "/area/engine/break_room";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -43951,10 +44072,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cbw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -43971,7 +44092,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cby" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -44044,7 +44165,7 @@
/turf/open/floor/engine/co2,
/area/engine/atmos)
"cbJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -44057,7 +44178,7 @@
/turf/closed/wall,
/area/maintenance/aft)
"cbL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -44070,7 +44191,7 @@
/area/maintenance/aft)
"cbN" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -44088,7 +44209,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -44112,7 +44233,7 @@
/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light,
@@ -44123,7 +44244,7 @@
/area/science/xenobiology)
"cbS" = (
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -44135,7 +44256,7 @@
/area/science/xenobiology)
"cbT" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
@@ -44162,7 +44283,7 @@
/turf/open/floor/engine,
/area/science/misc_lab)
"cca" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/solar{
@@ -44172,7 +44293,7 @@
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port/aft)
"ccb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/solar{
@@ -44182,13 +44303,13 @@
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port/aft)
"ccc" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "2-8"
},
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/aft)
"ccd" = (
@@ -44208,7 +44329,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -44218,7 +44339,7 @@
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"ccg" = (
-/obj/machinery/telecomms/message_server,
+/obj/machinery/telecomms/message_server/preset,
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"cch" = (
@@ -44253,10 +44374,10 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/chief)
"cck" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -44307,7 +44428,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ccp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -44319,7 +44440,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"ccq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -44331,10 +44452,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"ccr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -44349,7 +44470,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"cct" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -44359,7 +44480,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"ccu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -44443,7 +44564,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -44452,7 +44573,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"ccJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -44464,7 +44585,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -44476,7 +44597,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -44492,7 +44613,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -44505,7 +44626,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -44536,7 +44657,7 @@
/area/security/checkpoint/supply)
"ccU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -44554,16 +44675,16 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"ccX" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/structure/cable{
icon_state = "2-8"
},
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/aft)
"ccY" = (
@@ -44622,7 +44743,7 @@
dir = 8;
sortType = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -44632,20 +44753,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cdj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
dir = 9
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -44705,10 +44826,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cdr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -44723,7 +44844,7 @@
areastring = "/area/maintenance/starboard/aft";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/camera{
@@ -44751,7 +44872,7 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -44816,7 +44937,7 @@
/turf/open/floor/engine/co2,
/area/engine/atmos)
"cdE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -44825,10 +44946,10 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"cdF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -44837,7 +44958,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"cdG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -44852,7 +44973,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"cdI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -44895,7 +45016,7 @@
/area/maintenance/aft)
"cdO" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -44909,11 +45030,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -44937,7 +45058,7 @@
pixel_x = -25;
pixel_y = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -44948,7 +45069,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -44991,7 +45112,7 @@
/area/tcommsat/computer)
"cef" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/tcommsat/computer)
"ceg" = (
@@ -45044,7 +45165,7 @@
"cem" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -45068,10 +45189,10 @@
/turf/closed/wall/r_wall,
/area/engine/engineering)
"ceq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -45083,35 +45204,10 @@
},
/turf/open/floor/plasteel,
/area/engine/break_room)
-"ces" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cet" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"cev" = (
/obj/effect/spawner/structure/window,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -45159,14 +45255,14 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"ceC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plating,
/area/maintenance/aft)
"ceD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -45220,7 +45316,7 @@
/area/maintenance/aft)
"ceM" = (
/obj/machinery/meter,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -45280,7 +45376,7 @@
dir = 4
},
/obj/machinery/holopad,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -45318,7 +45414,7 @@
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/chief)
"cfc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -45329,15 +45425,14 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/chief)
"cfd" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = 24
- },
-/obj/structure/closet/radiation,
/obj/effect/turf_decal/tile/yellow,
/obj/effect/turf_decal/tile/yellow{
dir = 4
},
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/closet/radiation,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cfe" = (
@@ -45348,14 +45443,14 @@
/obj/structure/sign/warning/securearea{
pixel_x = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cfg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -45380,7 +45475,7 @@
/turf/closed/wall,
/area/maintenance/disposal/incinerator)
"cfk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -45468,7 +45563,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cfz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -45482,6 +45577,10 @@
/obj/effect/turf_decal/tile/yellow{
dir = 4
},
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 24
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"cfD" = (
@@ -45490,7 +45589,7 @@
name = "Engineering Maintenance";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -45545,7 +45644,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
@@ -45559,7 +45658,7 @@
/obj/machinery/firealarm{
pixel_y = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -45574,6 +45673,7 @@
req_access_txt = "10"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cfN" = (
@@ -45617,10 +45717,10 @@
/turf/closed/wall,
/area/maintenance/disposal/incinerator)
"cfW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
@@ -45631,14 +45731,14 @@
dir = 2;
name = "Incinerator APC";
areastring = "/area/maintenance/disposal/incinerator";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plating,
/area/maintenance/aft)
"cfY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -45661,28 +45761,13 @@
capacity = 9e+006;
charge = 10000
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
-"cgb" = (
-/obj/structure/sign/warning/deathsposal{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/delivery,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"cgc" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/plating{
@@ -45751,7 +45836,7 @@
/turf/open/floor/circuit/telecomms,
/area/science/xenobiology)
"cgm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -45767,11 +45852,11 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cgo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -45780,7 +45865,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cgp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -45809,13 +45894,13 @@
/area/maintenance/starboard/aft)
"cgv" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -45853,7 +45938,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"cgB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/smes,
@@ -45863,12 +45948,12 @@
/obj/machinery/power/terminal{
dir = 4
},
-/obj/structure/cable{
- icon_state = "0-2"
- },
/obj/machinery/light/small{
dir = 1
},
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"cgD" = (
@@ -45888,13 +45973,13 @@
/area/maintenance/solars/port/aft)
"cgF" = (
/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cgG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
@@ -45964,10 +46049,10 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cgS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -45985,7 +46070,7 @@
name = "SMES Room";
req_access_txt = "32"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46120,13 +46205,6 @@
"chg" = (
/turf/open/floor/plating,
/area/engine/atmos)
-"chh" = (
-/obj/machinery/atmospherics/components/unary/tank/toxins{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"chi" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -46135,11 +46213,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
-"chj" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"chk" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/closed/wall,
@@ -46163,22 +46236,12 @@
dir = 8;
pixel_x = 24
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
-"chn" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"cho" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -46234,7 +46297,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"chv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -46254,14 +46317,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"chA" = (
/obj/structure/reagent_dispensers/watertank,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -46270,7 +46333,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"chB" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46281,7 +46344,7 @@
/area/engine/engineering)
"chC" = (
/obj/structure/rack,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/spawner/lootdrop/maintenance,
@@ -46291,7 +46354,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"chD" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46304,17 +46367,17 @@
/area/engine/engineering)
"chE" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"chF" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46326,7 +46389,7 @@
/area/engine/engineering)
"chG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -46339,24 +46402,24 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"chI" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/aft)
"chJ" = (
/obj/machinery/power/tracker,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port/aft)
"chK" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/aft)
"chL" = (
@@ -46364,10 +46427,10 @@
/turf/open/space,
/area/solar/port/aft)
"chM" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-4"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/aft)
"chN" = (
@@ -46377,9 +46440,6 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"chO" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
@@ -46387,6 +46447,9 @@
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"chP" = (
@@ -46399,10 +46462,10 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"chQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -46418,19 +46481,19 @@
name = "Port Quarter Solar Access";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"chT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
"chV" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46448,7 +46511,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"chX" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46483,10 +46546,10 @@
/obj/machinery/airalarm{
pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -46500,9 +46563,9 @@
dir = 1;
name = "Engineering APC";
areastring = "/area/engine/engineering";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
@@ -46516,7 +46579,7 @@
/obj/item/clothing/gloves/color/yellow,
/obj/item/clothing/gloves/color/yellow,
/obj/item/clothing/gloves/color/yellow,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/light{
@@ -46533,7 +46596,7 @@
pixel_x = -5;
pixel_y = 30
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -46542,7 +46605,7 @@
/turf/closed/wall,
/area/engine/engineering)
"cii" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46561,7 +46624,7 @@
/area/engine/engineering)
"cij" = (
/obj/machinery/modular_computer/console/preset/engineering,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -46600,7 +46663,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"cin" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -46634,12 +46697,12 @@
/turf/open/floor/engine,
/area/engine/engineering)
"ciq" = (
-/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "ceprivacy";
name = "privacy shutter"
},
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/crew_quarters/heads/chief)
"cir" = (
@@ -46671,15 +46734,6 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/closed/wall/r_wall,
/area/engine/atmos)
-"ciy" = (
-/obj/structure/sign/warning/nosmoking{
- pixel_x = -28
- },
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/extinguisher,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"ciz" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
@@ -46687,20 +46741,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
-"ciA" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
-"ciB" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal/bin,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"ciC" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -46708,17 +46748,6 @@
},
/turf/open/space,
/area/space/nearstation)
-"ciD" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- name = "output gas connector port"
- },
-/obj/machinery/portable_atmospherics/canister,
-/obj/structure/sign/warning/nosmoking{
- pixel_x = 28
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"ciF" = (
/obj/structure/table,
/obj/item/cartridge/medical,
@@ -46761,7 +46790,7 @@
luminosity = 2
},
/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-2"
},
/obj/machinery/camera{
@@ -46772,7 +46801,7 @@
/turf/open/floor/engine/vacuum,
/area/maintenance/disposal/incinerator)
"ciN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -46780,7 +46809,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ciO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -46790,10 +46819,10 @@
/turf/open/floor/engine,
/area/engine/engineering)
"ciP" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port/aft)
"ciQ" = (
@@ -46811,14 +46840,14 @@
dir = 4;
name = "Port Quarter Solar APC";
areastring = "/area/maintenance/solars/port/aft";
- pixel_x = 23;
+ pixel_x = 24;
pixel_y = 2
},
/obj/machinery/camera{
c_tag = "Aft Port Solar Control";
dir = 1
},
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"ciS" = (
@@ -46863,7 +46892,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cja" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -46881,7 +46910,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cjd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -46900,19 +46929,19 @@
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"cje" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
"cjf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/station_engineer,
@@ -46935,7 +46964,7 @@
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Chief Engineer's Desk";
- departmentType = 3;
+ departmentType = 4;
name = "Chief Engineer RC";
pixel_x = -32
},
@@ -46962,7 +46991,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cji" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -46981,7 +47010,7 @@
dir = 4;
pixel_x = 27
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -47031,30 +47060,10 @@
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel,
/area/construction)
-"cjp" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/item/storage/toolbox/emergency,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"cjr" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
-"cjs" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"cju" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
@@ -47069,20 +47078,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
-"cjv" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"cjw" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -47146,7 +47141,7 @@
name = "Starboard Quarter Solar Access";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -47156,17 +47151,17 @@
/turf/closed/wall/r_wall,
/area/maintenance/solars/starboard/aft)
"cjH" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
- icon_state = "1-8"
+ icon_state = "1-2"
},
/obj/structure/cable{
icon_state = "1-4"
},
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "1-8"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/turf/open/space/basic,
/area/solar/port/aft)
"cjI" = (
/obj/structure/closet/crate,
@@ -47277,7 +47272,7 @@
/obj/machinery/light_switch{
pixel_x = 27
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -47347,11 +47342,6 @@
},
/turf/closed/wall/r_wall,
/area/engine/atmos)
-"cke" = (
-/obj/structure/chair/stool,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"ckf" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -47364,15 +47354,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
-"ckh" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to MiniSat"
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"cki" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -47390,7 +47371,7 @@
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
"ckk" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -47435,10 +47416,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cks" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -47448,16 +47429,16 @@
dir = 8;
name = "Starboard Quarter Solar APC";
areastring = "/area/maintenance/solars/starboard/aft";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"cku" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/smes,
@@ -47470,13 +47451,13 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"ckw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"ckx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light{
@@ -47485,13 +47466,13 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"cky" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"ckz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/dark,
@@ -47516,7 +47497,7 @@
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
/obj/item/storage/box/lights/mixed,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -47533,7 +47514,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ckH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -47553,7 +47534,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ckL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -47564,10 +47545,10 @@
name = "Chief Engineer";
req_access_txt = "56"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -47592,14 +47573,15 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"ckT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/tile/yellow{
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room";
+ req_access_txt = "10"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/engine/engineering)
"ckU" = (
@@ -47676,18 +47658,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
-"clg" = (
-/obj/item/radio/intercom{
- pixel_y = -29
- },
-/obj/structure/table,
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/pen,
-/turf/open/floor/plating,
-/area/maintenance/disposal/incinerator)
"clh" = (
/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
@@ -47717,7 +47687,7 @@
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
"clj" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -47828,12 +47798,12 @@
/obj/machinery/power/terminal{
dir = 1
},
-/obj/structure/cable{
- icon_state = "0-8"
- },
/obj/machinery/light/small{
dir = 4
},
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"clA" = (
@@ -47852,10 +47822,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"clC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -47874,7 +47844,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"clE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/smes/engineering,
@@ -47891,16 +47861,16 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"clF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"clG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/smes/engineering,
@@ -47952,16 +47922,11 @@
/obj/effect/turf_decal/tile/yellow{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"clO" = (
-/obj/machinery/vr_sleeper,
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
+/obj/effect/turf_decal/tile/yellow{
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
+/area/engine/engineering)
"clQ" = (
/obj/effect/turf_decal/tile/yellow{
dir = 1
@@ -48044,7 +48009,7 @@
"cmf" = (
/obj/effect/mapping_helpers/airlock/locked,
/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -48092,7 +48057,7 @@
/area/maintenance/aft)
"cml" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/showroomfloor,
@@ -48170,16 +48135,16 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"cmy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"cmz" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/turf/open/floor/plasteel/dark,
@@ -48188,7 +48153,7 @@
/obj/machinery/power/terminal{
dir = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -48207,7 +48172,7 @@
/obj/machinery/power/terminal{
dir = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -48250,7 +48215,7 @@
dir = 4;
pixel_x = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/closet/wardrobe/engineering_yellow,
@@ -48266,7 +48231,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cmL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -48281,7 +48246,7 @@
/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -48348,7 +48313,7 @@
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"cna" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{
@@ -48401,38 +48366,38 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"cnk" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"cnl" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/turf/open/space/basic,
/area/solar/port/aft)
"cnm" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"cnn" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -48448,10 +48413,10 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"cnp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/camera{
@@ -48477,7 +48442,7 @@
c_tag = "Engineering West";
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/station_engineer,
@@ -48495,7 +48460,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/corner{
@@ -48519,7 +48484,7 @@
/obj/item/stock_parts/cell/high/plus,
/obj/item/stock_parts/cell/high/plus,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/twohanded/rcl/pre_loaded,
@@ -48535,7 +48500,7 @@
"cnC" = (
/obj/effect/mapping_helpers/airlock/locked,
/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -48577,7 +48542,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -48594,7 +48559,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"cnL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/window/reinforced,
@@ -48606,20 +48571,20 @@
name = "SMES Chamber";
req_access_txt = "32"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"cnN" = (
/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/obj/machinery/power/terminal{
@@ -48632,7 +48597,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/dark,
@@ -48642,13 +48607,13 @@
dir = 1
},
/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"cnQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light{
@@ -48663,7 +48628,7 @@
/turf/open/floor/plasteel,
/area/engine/engine_smes)
"cnR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -48673,7 +48638,7 @@
/area/engine/engine_smes)
"cnS" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/camera{
@@ -48689,7 +48654,7 @@
/turf/open/floor/plasteel,
/area/engine/engine_smes)
"cnU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/electricshock{
@@ -48702,7 +48667,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cnX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
@@ -48715,7 +48680,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cnY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/nosmoking{
@@ -48727,7 +48692,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cnZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/airalarm{
@@ -48739,7 +48704,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"coa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -48749,13 +48714,13 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cob" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -48788,7 +48753,7 @@
/obj/machinery/igniter{
id = "Incinerator"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/air_sensor{
@@ -48815,7 +48780,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -48827,7 +48792,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -48849,7 +48814,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -48861,7 +48826,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -48873,7 +48838,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -48892,7 +48857,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -48904,7 +48869,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -48913,7 +48878,7 @@
/turf/open/floor/plasteel,
/area/engine/engine_smes)
"coH" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -48923,7 +48888,7 @@
/area/engine/engineering)
"coJ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -48935,26 +48900,26 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/engineering)
"coL" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
"coM" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49046,14 +49011,14 @@
/turf/open/space,
/area/space/nearstation)
"cpi" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/aft)
"cpj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -49134,7 +49099,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cpu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -49145,10 +49110,10 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cpv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/corner{
@@ -49157,7 +49122,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cpx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -49166,16 +49131,16 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
/area/engine/engineering)
"cpA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel,
@@ -49189,7 +49154,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -49252,7 +49217,7 @@
dir = 2;
name = "SMES room APC";
areastring = "/area/engine/engine_smes";
- pixel_y = -24
+ pixel_y = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -49300,7 +49265,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cpY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -49328,7 +49293,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cqb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/engine,
@@ -49350,7 +49315,7 @@
/area/engine/engineering)
"cqe" = (
/obj/effect/turf_decal/stripes/corner,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -49417,7 +49382,7 @@
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
@@ -49504,7 +49469,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cqy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -49531,7 +49496,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -49616,7 +49581,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cqM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -49755,7 +49720,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cro" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -49766,21 +49731,21 @@
/turf/closed/wall/r_wall,
/area/engine/engineering)
"crq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/engine/engineering)
"crr" = (
-/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/engine/engineering)
"crs" = (
@@ -49844,63 +49809,63 @@
/turf/open/floor/plating,
/area/engine/engineering)
"crB" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "2-4"
},
/obj/structure/cable{
icon_state = "1-4"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/turf/open/space/basic,
/area/solar/starboard/aft)
"crC" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/space/basic,
/area/solar/starboard/aft)
"crD" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/turf/open/space/basic,
/area/solar/starboard/aft)
"crE" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard/aft)
-"crF" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard/aft)
-"crG" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
/obj/structure/cable{
icon_state = "2-8"
},
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/open/space,
+/area/solar/starboard/aft)
+"crF" = (
/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/space,
+/area/solar/starboard/aft)
+"crG" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
/turf/open/space,
/area/solar/starboard/aft)
"crH" = (
@@ -50129,7 +50094,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -50139,10 +50104,10 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
"csE" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/aft)
"csH" = (
@@ -50182,10 +50147,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/green/visible{
@@ -50231,6 +50196,8 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
"csY" = (
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-2"
},
@@ -50240,16 +50207,14 @@
/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard/aft)
"csZ" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/lattice/catwalk,
-/turf/open/space,
+/turf/open/space/basic,
/area/solar/starboard/aft)
"cta" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -50449,10 +50414,10 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"ctG" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
@@ -50464,7 +50429,7 @@
"ctJ" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/landmark/start/cyborg,
@@ -50534,17 +50499,17 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
"ctT" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -50559,14 +50524,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 4;
name = "MiniSat Foyer APC";
areastring = "/area/ai_monitored/turret_protected/aisat_interior";
- pixel_x = 27
+ pixel_x = 24
},
/obj/structure/chair,
/turf/open/floor/plasteel/dark,
@@ -50626,7 +50591,6 @@
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/aisat_interior";
enabled = 1;
- icon_state = "control_standby";
name = "Antechamber Turret Control";
pixel_y = -24;
req_access = null;
@@ -50642,7 +50606,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cue" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -50688,7 +50652,7 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
"cul" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -50767,7 +50731,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cuu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -50869,7 +50833,6 @@
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/aisat/atmos";
enabled = 1;
- icon_state = "control_standby";
name = "Atmospherics Turret Control";
pixel_x = -27;
req_access = null;
@@ -50896,7 +50859,6 @@
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/aisat/service";
enabled = 1;
- icon_state = "control_standby";
name = "Service Bay Turret Control";
pixel_x = 27;
req_access = null;
@@ -50909,7 +50871,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cuG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -50974,7 +50936,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/service)
"cuL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -50987,9 +50949,9 @@
dir = 8;
name = "MiniSat Atmospherics APC";
areastring = "/area/ai_monitored/turret_protected/aisat/atmos";
- pixel_x = -27
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/portable_atmospherics/scrubber,
@@ -50999,7 +50961,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/atmos)
"cuN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -51008,7 +50970,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/atmos)
"cuO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/ai_slipper{
@@ -51018,7 +50980,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/atmos)
"cuP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51027,7 +50989,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cuQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51041,7 +51003,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cuR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51051,13 +51013,13 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cuS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/ai_slipper{
@@ -51068,7 +51030,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cuT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51077,7 +51039,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/service)
"cuU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51091,19 +51053,19 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cuV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/service)
"cuW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/ai_slipper{
uses = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/dark,
@@ -51113,9 +51075,9 @@
dir = 4;
name = "MiniSat Service Bay APC";
areastring = "/area/ai_monitored/turret_protected/aisat/service";
- pixel_x = 27
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/port_gen/pacman,
@@ -51188,7 +51150,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cve" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51198,7 +51160,6 @@
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/aisat/hallway";
enabled = 1;
- icon_state = "control_standby";
name = "Chamber Hallway Turret Control";
pixel_x = 32;
pixel_y = -24;
@@ -51238,7 +51199,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/service)
"cvi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -51265,7 +51226,7 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51284,7 +51245,7 @@
name = "MiniSat Maintenance";
req_access_txt = "65"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -51343,7 +51304,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51380,7 +51341,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -51421,7 +51382,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51473,7 +51434,7 @@
/obj/structure/sign/warning/securearea{
pixel_x = -32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -51514,7 +51475,7 @@
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -51526,19 +51487,19 @@
name = "MiniSat Maintenance";
req_access_txt = "65"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat/hallway)
"cvW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -51564,7 +51525,7 @@
dir = 4;
name = "MiniSat Chamber Hallway APC";
areastring = "/area/ai_monitored/turret_protected/aisat/hallway";
- pixel_x = 27
+ pixel_x = 24
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/aisat/hallway)
@@ -51576,7 +51537,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/hallway)
"cwc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51585,28 +51546,13 @@
},
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/hallway)
-"cwd" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1447;
- listening = 0;
- name = "Station Intercom (AI Private)";
- pixel_x = -28;
- pixel_y = -29
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/aisat/hallway)
"cwe" = (
/obj/structure/sign/warning/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai)
"cwf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51648,7 +51594,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"cwj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51683,7 +51629,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"cwo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -51692,7 +51638,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"cwp" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
@@ -51712,7 +51658,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai)
"cwt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51724,7 +51670,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"cwu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/ai_slipper{
@@ -51743,7 +51689,7 @@
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"cww" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51752,7 +51698,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"cwx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51774,10 +51720,10 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"cwA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/holopad,
@@ -51822,14 +51768,14 @@
/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "AI Chamber APC";
areastring = "/area/ai_monitored/turret_protected/ai";
- pixel_y = -24
+ pixel_y = -23
},
/obj/machinery/flasher{
id = "AI";
@@ -51844,7 +51790,7 @@
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"cwH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -51892,17 +51838,17 @@
/turf/open/space,
/area/space/nearstation)
"cxk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"cxl" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/lawyer,
@@ -51950,9 +51896,6 @@
/turf/open/floor/plating,
/area/security/processing)
"cxN" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
@@ -51960,6 +51903,9 @@
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
"cxP" = (
@@ -52121,9 +52067,6 @@
/turf/open/floor/plating,
/area/engine/atmos)
"cyK" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
@@ -52131,6 +52074,9 @@
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"cyL" = (
@@ -52138,22 +52084,11 @@
req_access_txt = "12"
},
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"cyM" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/engineering{
- name = "Engine Room";
- req_access_txt = "10"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"cyT" = (
/obj/docking_port/stationary{
dir = 8;
@@ -52166,9 +52101,6 @@
/turf/open/space/basic,
/area/space)
"cyU" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
@@ -52176,6 +52108,9 @@
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"czg" = (
@@ -52215,7 +52150,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -52223,7 +52158,7 @@
"czH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -52273,7 +52208,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"czR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -52294,7 +52229,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -52303,7 +52238,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -52315,7 +52250,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -52324,7 +52259,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -52405,16 +52340,16 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
"cAh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
"cAi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -52423,10 +52358,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -52437,7 +52372,7 @@
/turf/open/floor/engine,
/area/engine/supermatter)
"cAo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/stripes/corner{
@@ -52446,7 +52381,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cAp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/binary/pump/on{
@@ -52468,7 +52403,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cAr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/binary/pump{
@@ -52500,7 +52435,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cAu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/emitter/anchored{
@@ -52563,16 +52498,16 @@
/turf/open/floor/plating,
/area/maintenance/disposal)
"cAG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/power/apc{
dir = 2;
name = "Head of Personnel APC";
areastring = "/area/crew_quarters/heads/hop";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -52610,7 +52545,7 @@
name = "Security Maintenance";
req_access_txt = "1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -52635,7 +52570,7 @@
name = "AI Core Door";
req_access_txt = "16"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/circuit,
@@ -52693,7 +52628,7 @@
/turf/open/space,
/area/space/nearstation)
"cAV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/showcase/cyborg/old{
@@ -52728,13 +52663,13 @@
/turf/open/space,
/area/space/nearstation)
"cAY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall,
/area/ai_monitored/turret_protected/ai)
"cAZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/dark,
@@ -52743,7 +52678,7 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/circuit,
@@ -52813,7 +52748,7 @@
"cBj" = (
/obj/structure/table,
/obj/item/folder/blue,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -52876,7 +52811,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cBx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -52912,17 +52847,17 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"cBC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/storage/tech)
"cBD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -52948,17 +52883,17 @@
/area/engine/atmos)
"cBG" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cBH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -53000,7 +52935,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53028,7 +52963,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cBS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -53053,7 +52988,7 @@
name = "Security Office";
req_access_txt = "1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -53128,7 +53063,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"cCl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -53275,7 +53210,7 @@
dir = 6
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -53289,10 +53224,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -53304,7 +53239,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/structure/table/reinforced,
@@ -53317,7 +53252,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cDi" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53334,7 +53269,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cDj" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53361,16 +53296,16 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cDo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
"cDp" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -53379,19 +53314,19 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
/area/engine/engineering)
"cDs" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -53421,7 +53356,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cDx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/binary/pump{
@@ -53492,7 +53427,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -53551,7 +53486,7 @@
/turf/open/space,
/area/space/nearstation)
"cDZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/closet/radiation,
@@ -53584,7 +53519,7 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/green/visible,
@@ -53605,7 +53540,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -53648,7 +53583,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cEs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/binary/pump/on{
@@ -53666,7 +53601,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -53678,7 +53613,7 @@
network = list("engine");
pixel_x = 23
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -53688,7 +53623,7 @@
dir = 8
},
/obj/machinery/power/rad_collector/anchored,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/obj/structure/window/plasma/reinforced{
@@ -53713,7 +53648,7 @@
dir = 4
},
/obj/machinery/power/rad_collector/anchored,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/obj/structure/window/plasma/reinforced{
@@ -53722,7 +53657,7 @@
/turf/open/floor/engine,
/area/engine/supermatter)
"cEz" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -53736,7 +53671,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -53745,10 +53680,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/meter,
@@ -53758,7 +53693,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cEC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/binary/pump{
@@ -53812,7 +53747,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/item/tank/internals/plasma,
@@ -53828,7 +53763,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -53837,10 +53772,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
@@ -53865,7 +53800,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/obj/machinery/atmospherics/components/binary/pump{
@@ -53879,7 +53814,7 @@
dir = 5
},
/obj/machinery/power/rad_collector/anchored,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/obj/structure/window/plasma/reinforced{
@@ -53892,7 +53827,7 @@
dir = 9
},
/obj/machinery/power/rad_collector/anchored,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/obj/structure/window/plasma/reinforced{
@@ -53918,7 +53853,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -53927,7 +53862,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
/obj/machinery/atmospherics/components/binary/pump{
@@ -54104,7 +54039,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cGe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/orange/visible{
@@ -54120,7 +54055,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cGg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -54129,7 +54064,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cGh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/stripes/corner,
@@ -54181,7 +54116,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cGv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line,
@@ -54233,7 +54168,7 @@
name = "Laser Room";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/engine,
@@ -54262,7 +54197,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"cGS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -54305,46 +54240,46 @@
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"cHb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
/area/engine/engineering)
"cHc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
/area/engine/engineering)
"cHd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/engine/engineering)
"cHe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/engine/engineering)
"cHg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/engine/engineering)
"cHj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/emitter/anchored{
@@ -54354,7 +54289,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cHn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -54372,13 +54307,13 @@
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"cHr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
/area/engine/engineering)
"cHD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -54386,7 +54321,7 @@
dir = 2;
sortType = 14
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -54399,7 +54334,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54421,7 +54356,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54436,7 +54371,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54451,10 +54386,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -54469,7 +54404,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54484,7 +54419,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54501,7 +54436,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -54513,7 +54448,7 @@
/obj/machinery/mech_bay_recharge_port{
dir = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -54525,7 +54460,7 @@
/turf/open/floor/plasteel/white,
/area/science/robotics/lab)
"cHN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit,
@@ -54728,7 +54663,7 @@
/turf/open/floor/plating,
/area/engine/supermatter)
"cMQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/solar{
@@ -54767,9 +54702,9 @@
dir = 1;
name = "Central Maintenance APC";
areastring = "/area/maintenance/central";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -54778,7 +54713,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -54788,13 +54723,13 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"cNR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -54804,9 +54739,9 @@
dir = 4;
name = "Starboard Maintenance APC";
areastring = "/area/maintenance/starboard";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -54815,18 +54750,18 @@
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
"cNU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -54837,7 +54772,7 @@
},
/obj/effect/mapping_helpers/airlock/abandoned,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -54849,7 +54784,7 @@
/obj/machinery/door/airlock/maintenance{
req_one_access_txt = "8;12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -54864,7 +54799,7 @@
/turf/closed/wall,
/area/maintenance/starboard/aft)
"cNZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -54925,7 +54860,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -54946,7 +54881,7 @@
/turf/closed/wall,
/area/security/courtroom)
"cSE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark/telecomms,
@@ -54962,7 +54897,7 @@
/turf/closed/wall/r_wall,
/area/engine/supermatter)
"cSH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/meter,
@@ -54985,7 +54920,7 @@
/turf/open/floor/engine,
/area/engine/engineering)
"cSK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -55049,7 +54984,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -55059,7 +54994,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -55068,7 +55003,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -55081,7 +55016,7 @@
/area/engine/engineering)
"cSR" = (
/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/nosmoking{
@@ -55096,7 +55031,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -55201,7 +55136,7 @@
/area/engine/engineering)
"cTc" = (
/obj/effect/spawner/structure/window,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -55212,7 +55147,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cTe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -55224,13 +55159,13 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cTf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/requests_console{
announcementConsole = 0;
department = "Engineering";
- departmentType = 4;
+ departmentType = 3;
name = "Engineering RC";
pixel_y = 30
},
@@ -55243,16 +55178,16 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cTD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/power/apc{
dir = 8;
name = "Central Maintenance APC";
areastring = "/area/maintenance/central/secondary";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -55286,7 +55221,7 @@
req_access_txt = "12"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -55294,17 +55229,17 @@
/area/maintenance/department/medical/morgue)
"cTK" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
"cTL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
@@ -55314,9 +55249,9 @@
dir = 4;
name = "Morgue Maintenance APC";
areastring = "/area/maintenance/department/medical/morgue";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -55325,7 +55260,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55335,7 +55270,7 @@
/area/maintenance/department/medical/morgue)
"cTS" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -55345,7 +55280,7 @@
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
"cTX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/shieldwallgen/xenobiologyaccess,
@@ -55454,7 +55389,7 @@
/area/security/detectives_office)
"dCN" = (
/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -55494,12 +55429,18 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"dPH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
+"dUO" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
"dYq" = (
/turf/closed/wall,
/area/science/nanite)
@@ -55519,7 +55460,7 @@
/area/science/nanite)
"elq" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -55564,14 +55505,6 @@
},
/turf/open/floor/plasteel,
/area/vacant_room/commissary)
-"eHI" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"eRu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
@@ -55610,13 +55543,13 @@
/area/science/mixing/chamber)
"fgq" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -55651,11 +55584,21 @@
dir = 4;
pixel_x = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
+"foE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"fsD" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -55706,7 +55649,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"fXM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -55718,7 +55661,7 @@
/turf/open/floor/plasteel,
/area/science/misc_lab)
"gbq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -55746,7 +55689,7 @@
/turf/closed/wall,
/area/quartermaster/warehouse)
"glg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -55783,7 +55726,6 @@
c_tag = "Fitness Room South";
dir = 1
},
-/obj/machinery/vr_sleeper,
/obj/effect/turf_decal/tile/green,
/obj/effect/turf_decal/tile/green{
dir = 4
@@ -55813,16 +55755,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/plasteel,
/area/vacant_room/commissary)
-"gGE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"gHj" = (
/obj/structure/closet/radiation,
/turf/open/floor/plasteel/white/corner{
@@ -55871,15 +55803,15 @@
dir = 4;
name = "Research Lab APC";
areastring = "/area/science/lab";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/white,
/area/science/lab)
"gWd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -55902,16 +55834,16 @@
"hcE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/power/apc{
dir = 4;
name = "Cargo Warehouse APC";
areastring = "/area/quartermaster/warehouse";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -55945,7 +55877,7 @@
/turf/open/floor/plasteel,
/area/vacant_room/commissary)
"hsQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/carpet,
@@ -55959,6 +55891,12 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"hMJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
"hYR" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
@@ -56003,6 +55941,12 @@
},
/turf/open/floor/engine,
/area/science/misc_lab)
+"iBZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/electrical)
"iEJ" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod One"
@@ -56043,14 +55987,14 @@
/turf/open/floor/plasteel,
/area/security/brig)
"jbf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
areastring = "/area/hallway/secondary/service";
dir = 1;
name = "Service Hall APC";
- pixel_y = 25
+ pixel_y = 23
},
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
@@ -56079,13 +56023,19 @@
dir = 1;
name = "Law Office APC";
areastring = "/area/lawoffice";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
/area/maintenance/fore)
+"jvP" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"jxy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -56105,7 +56055,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -56118,7 +56068,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -56159,7 +56109,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"jVl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -56215,10 +56165,10 @@
/area/security/detectives_office)
"klL" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -56242,7 +56192,7 @@
"kob" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -56288,7 +56238,7 @@
/turf/closed/wall,
/area/maintenance/starboard)
"kyZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -56359,7 +56309,7 @@
/area/science/mixing)
"kPd" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -56383,7 +56333,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white/side{
@@ -56436,9 +56386,14 @@
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
+"lqJ" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lantern,
+/turf/open/floor/plasteel/dark,
+/area/chapel/main)
"ltd" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -56448,7 +56403,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"ltG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -56553,6 +56508,12 @@
/obj/machinery/vending/wardrobe/bar_wardrobe,
/turf/open/floor/wood,
/area/crew_quarters/bar)
+"mvb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
"mBm" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -56563,7 +56524,7 @@
/turf/open/floor/plasteel,
/area/science/nanite)
"mBv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line,
@@ -56573,6 +56534,11 @@
},
/turf/open/floor/engine,
/area/engine/engineering)
+"mFY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/vending/modularpc,
+/turf/open/floor/plasteel,
+/area/storage/primary)
"mJd" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -56592,14 +56558,14 @@
network = list("ss13","rd")
},
/obj/structure/closet/l3closet/scientist,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
/area/science/explab)
"mMA" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -56611,7 +56577,7 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"mSf" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/grimy,
@@ -56660,7 +56626,7 @@
areastring = "/area/construction";
pixel_y = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -56679,7 +56645,7 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"nGt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -56690,7 +56656,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"nGv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -56760,8 +56726,20 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine,
/area/science/explab)
+"nXT" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
"nXU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -56794,6 +56772,14 @@
},
/turf/open/floor/plasteel/white,
/area/science/explab)
+"ozs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/storage/fancy/candle_box,
+/turf/open/floor/plasteel/dark,
+/area/chapel/main)
"oDF" = (
/obj/machinery/light,
/turf/open/floor/plating,
@@ -56805,10 +56791,10 @@
/turf/open/floor/engine,
/area/science/misc_lab)
"oIK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -56868,7 +56854,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"pjk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -56913,8 +56899,15 @@
/obj/structure/chair/stool,
/turf/open/floor/plasteel/white,
/area/science/mixing)
+"ptP" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/space,
+/area/solar/starboard/aft)
"pvj" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
@@ -56969,7 +56962,7 @@
pixel_x = 8;
pixel_y = 28
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction{
@@ -57084,13 +57077,13 @@
/obj/effect/turf_decal/bot{
dir = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/science/mixing)
"qQH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57169,7 +57162,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"rOY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57202,7 +57195,7 @@
/turf/open/floor/plasteel/dark,
/area/science/nanite)
"sjK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -57216,7 +57209,7 @@
req_access_txt = "12"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -57229,10 +57222,10 @@
areastring = "/area/vacant_room/commissary";
dir = 4;
name = "Vacant Commissary APC";
- pixel_x = 27;
+ pixel_x = 24;
pixel_y = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -57256,7 +57249,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white/side{
@@ -57309,6 +57302,13 @@
},
/turf/open/floor/engine,
/area/science/misc_lab)
+"sWA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/shower{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"sXy" = (
/obj/machinery/door/airlock/external{
name = "Security External Airlock";
@@ -57321,10 +57321,10 @@
/area/security/main)
"sYI" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -57361,7 +57361,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57378,7 +57378,7 @@
/turf/open/floor/plasteel/white,
/area/science/explab)
"tfg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57401,7 +57401,7 @@
/turf/open/floor/plasteel,
/area/science/nanite)
"thy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -57437,13 +57437,13 @@
/obj/effect/turf_decal/tile/red{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/security/brig)
"tDw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light_switch{
@@ -57453,10 +57453,10 @@
/area/science/misc_lab)
"tJU" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
"tKG" = (
@@ -57483,7 +57483,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
@@ -57547,7 +57547,7 @@
/turf/open/floor/plasteel,
/area/science/nanite)
"uCq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -57580,7 +57580,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
@@ -57607,7 +57607,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"uVS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -57638,7 +57638,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -57667,7 +57667,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"vqI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57685,9 +57685,9 @@
areastring = "/area/security/detectives_office";
dir = 8;
name = "Detective's Office APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/disposalpipe/segment{
@@ -57733,7 +57733,7 @@
name = "Experimentation Lab";
req_access_txt = "47"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -57742,7 +57742,7 @@
/turf/open/floor/plasteel/white,
/area/science/explab)
"vHp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -57794,6 +57794,12 @@
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
+"vUf" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
"wfU" = (
/obj/machinery/atmospherics/components/trinary/mixer{
dir = 8
@@ -57834,7 +57840,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -57869,7 +57875,7 @@
/turf/open/floor/plasteel/white,
/area/science/explab)
"wQy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -57892,10 +57898,23 @@
/obj/item/reagent_containers/glass/bucket,
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
+"wXs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
"wZy" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/white,
@@ -57918,7 +57937,7 @@
dir = 4;
name = "Experimentation Lab APC";
areastring = "/area/science/explab";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -57930,7 +57949,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -57938,10 +57957,10 @@
"xiw" = (
/obj/machinery/door/airlock{
name = "Service Hall";
- req_one_access_txt = "25;26;35;28"
+ req_one_access_txt = "22;25;26;28;35;37;38;46"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -77159,7 +77178,7 @@ ayy
ayy
aAO
aBN
-aDe
+mFY
aDe
aFT
aDe
@@ -79001,7 +79020,7 @@ aaf
aaf
bGi
bHz
-byE
+vUf
bKk
bGi
aoV
@@ -79220,7 +79239,7 @@ aEO
aGc
aHF
aJd
-aKb
+aKv
aLN
aMQ
aNT
@@ -79258,7 +79277,7 @@ aaa
aaa
bGi
bHy
-byE
+vUf
bKj
bGi
aoV
@@ -79772,7 +79791,7 @@ bxy
bxy
ahw
bHA
-bHA
+nXT
bKl
bxy
aaH
@@ -80029,7 +80048,7 @@ bDk
agv
byE
byE
-byE
+vUf
byE
bGi
aaf
@@ -80542,8 +80561,8 @@ bvI
bAm
bBG
bDo
-byE
-byE
+dUO
+hMJ
bKp
bGi
aaf
@@ -89049,9 +89068,9 @@ bZE
cbs
cCT
cdn
+sWA
cej
cep
-ces
clN
ccm
ckF
@@ -89306,10 +89325,10 @@ cfh
cfM
cco
cdp
-cel
-cyM
-ckT
cgU
+cel
+ckT
+foE
cco
cgU
cgU
@@ -89563,9 +89582,9 @@ cap
ctR
ccn
cdo
+jvP
cek
ccw
-cet
cfd
cfB
cfI
@@ -93854,10 +93873,10 @@ aaa
aaa
aaf
arj
-clO
+aua
asZ
aua
-clO
+aua
awB
axY
azh
@@ -94706,8 +94725,8 @@ bVu
bVu
bVu
bVu
-bVu
caJ
+aaf
aoV
aoV
aoV
@@ -94960,11 +94979,11 @@ aaf
cfj
cfU
cfj
-cfj
ckf
cfj
cfj
-bUr
+amp
+bVu
bVu
bVu
bVu
@@ -95215,11 +95234,11 @@ bzs
bzs
cfj
cfj
-cjp
-chh
-ciy
-cke
-clg
+akC
+akF
+alN
+alY
+alZ
cfj
aoV
aoV
@@ -95471,10 +95490,10 @@ bzs
bAw
caK
cfj
-ciB
-ckh
-chj
-ciA
+aku
+alf
+cjr
+cjr
cjr
clh
cfj
@@ -95731,7 +95750,7 @@ chk
chl
ciz
chi
-gGE
+alm
cjr
ckg
cmb
@@ -95988,7 +96007,7 @@ cfl
cfZ
cki
cld
-eHI
+alo
cjr
csq
xEu
@@ -96245,7 +96264,7 @@ cfk
cfY
rfW
ckj
-cjs
+alE
cle
cli
uPT
@@ -96499,10 +96518,10 @@ cbL
cdI
ceG
cfj
-cgb
-chn
-clj
-cjv
+akE
+alj
+all
+alM
clj
ckk
cmf
@@ -96542,7 +96561,7 @@ cvT
cBS
cwc
cvz
-cwd
+cvz
cwf
cwj
cwo
@@ -96758,7 +96777,7 @@ ceF
cfj
cga
chm
-ciD
+akD
cju
clf
csr
@@ -96972,7 +96991,7 @@ bdc
bfL
beY
bhm
-bhm
+ajY
bhm
bkR
bfL
@@ -104398,7 +104417,7 @@ auI
awP
avJ
awO
-awO
+iBZ
asB
aCM
aEg
@@ -104667,7 +104686,7 @@ aFw
aMM
aFz
aFz
-aQw
+lqJ
aRS
aRS
aRS
@@ -104914,7 +104933,7 @@ auI
azu
aAz
asB
-aCO
+ozs
aEh
aFz
aHk
@@ -104925,7 +104944,7 @@ aML
aFz
aFz
aQw
-cdl
+aRS
aRS
aRS
aRS
@@ -105171,24 +105190,24 @@ auI
azw
aAA
asB
-aCQ
-aEk
-aFB
-aHn
-aFB
-csT
-aFB
-aLr
-aFB
-aPn
-aQy
-aPn
-aTi
-aUK
-aVU
-aWg
+aCO
+aEh
+aFz
+aCO
+aFz
+aFz
+aFz
+aEh
+aFz
+aFz
+lqJ
+cdl
+aRS
+aRS
+aRS
+aRS
aZf
-baA
+aRS
bbF
aYV
aXq
@@ -105426,26 +105445,26 @@ auJ
awS
auI
awO
-awO
+iBZ
asB
-aCP
-aEj
-aFA
-aHm
-aEj
-aEj
-aEj
-aEj
-aEj
-aPm
-aQx
-aPm
-aTh
-aUJ
-aTh
-aXz
-aZg
-aFz
+aCQ
+aEk
+aFB
+aHn
+aFB
+csT
+aFB
+aLr
+aFB
+aPn
+aQy
+aPn
+aTi
+aUK
+aVU
+aWg
+aZf
+baA
bbF
aYV
bdv
@@ -105685,25 +105704,25 @@ ayj
azx
aAB
asB
-aCR
-aEm
-aCR
-aPl
-aQv
-aPl
-aQv
-aCR
-aNY
-aCR
-aQA
-aCR
-aTj
+aCP
+aEj
+aFA
+aHm
+aEj
+aEj
+aEj
+aEj
+aEj
+aPm
+aQx
+aPm
+aTh
+aUJ
+aTh
+aXz
+aZg
aFz
-aVV
-aXB
-aZh
-baB
-aCR
+bbF
bcq
bdx
bcq
@@ -105943,23 +105962,23 @@ asB
asB
asB
aCR
-bfb
+aEm
aCR
-aHo
-aIE
-aKe
-aIE
+aPl
+aQv
+aPl
+aQv
aCR
-aNX
-aPo
-aQz
+aNY
aCR
+aQA
aCR
-aCR
-aCR
-aXy
-aZe
-aCR
+aTj
+aFz
+aVV
+aXB
+aZh
+baB
aCR
bcy
bdw
@@ -106200,24 +106219,24 @@ aaf
aaf
atS
aCR
-aEn
+bfb
aCR
-aHq
-aHq
-aHq
-aHq
+aHo
+aIE
+aKe
+aIE
+aCR
+aNX
+aPo
+aQz
aCR
aCR
aCR
aCR
+aXy
+aZe
+aCR
aCR
-aTl
-aUL
-aVW
-aXD
-aZj
-baD
-bbG
aTk
bdy
beI
@@ -106456,25 +106475,25 @@ aoV
aoV
aaf
atS
-aaf
-aaa
-aaf
-aaa
-aaa
-aaa
-aaa
-aMZ
-aNZ
-aPp
-aQB
-aNa
-aTk
-aPq
-aPq
-aXC
-aZi
-baC
-aPq
+aCR
+aEn
+aCR
+aHq
+aHq
+aHq
+aHq
+aCR
+aCR
+aCR
+aCR
+aCR
+aTl
+aUL
+aVW
+aXD
+aZj
+baD
+bbG
aPq
bdy
beH
@@ -106723,9 +106742,9 @@ aaf
aMZ
aOb
aPr
-aQC
+wXs
aRU
-aQC
+mvb
aQC
aQC
czO
@@ -108344,7 +108363,7 @@ crF
aaa
aaa
aaa
-csZ
+ptP
aaa
aaa
aaa
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 3c14defea68..8d64643adb1 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -287,6 +287,21 @@
/obj/item/clothing/head/welding,
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
+"aaH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/dead_body_placer,
+/turf/open/floor/plasteel,
+/area/medical/morgue)
"aaO" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -567,7 +582,7 @@
/turf/closed/wall/r_wall,
/area/maintenance/solars/starboard/fore)
"act" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/light/small{
@@ -580,7 +595,7 @@
/area/maintenance/solars/starboard/fore)
"acu" = (
/obj/machinery/power/smes,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -630,7 +645,7 @@
/area/construction/mining/aux_base)
"acH" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -652,7 +667,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow,
@@ -666,7 +681,7 @@
name = "Starboard Bow Solar Access";
req_access_txt = "10"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -681,10 +696,10 @@
/turf/open/floor/plasteel,
/area/maintenance/solars/starboard/fore)
"acK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -884,7 +899,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"ade" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -925,7 +940,7 @@
dir = 2;
name = "Starboard Bow Solar APC";
areastring = "/area/maintenance/solars/starboard/fore";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -933,7 +948,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/fore)
"adi" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/airalarm{
@@ -1027,7 +1042,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"adP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1121,7 +1136,7 @@
/area/hallway/secondary/entry)
"aek" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1186,7 +1201,7 @@
/area/construction/mining/aux_base)
"aeD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/yellow{
@@ -1304,7 +1319,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -1428,7 +1443,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -1492,7 +1507,7 @@
/area/construction/mining/aux_base)
"afX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -1541,14 +1556,14 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Auxiliary Construction APC";
areastring = "/area/construction/mining/aux_base";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1562,11 +1577,11 @@
/area/construction/mining/aux_base)
"agn" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -1656,7 +1671,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"agN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -1749,7 +1764,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"ahb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -1795,7 +1810,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"ahu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -1852,7 +1867,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"ahE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1980,7 +1995,7 @@
/area/hallway/secondary/entry)
"ahY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2016,7 +2031,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aii" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -2025,14 +2040,14 @@
/area/maintenance/starboard/fore)
"aij" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aik" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -2215,7 +2230,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aiF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -2317,7 +2332,7 @@
/area/maintenance/starboard/fore)
"aiX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2484,7 +2499,7 @@
/area/maintenance/starboard/fore)
"ajk" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/bot,
@@ -2693,14 +2708,14 @@
},
/area/hallway/secondary/entry)
"ajB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 1;
name = "Arrivals Hallway APC";
areastring = "/area/hallway/secondary/entry";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -2718,7 +2733,7 @@
},
/area/hallway/secondary/entry)
"ajC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -2825,7 +2840,7 @@
"ajM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -2970,7 +2985,7 @@
/turf/open/floor/plasteel/white/corner,
/area/hallway/secondary/entry)
"akb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -3128,7 +3143,7 @@
/area/maintenance/starboard/fore)
"akp" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -3243,7 +3258,7 @@
req_access_txt = "12"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -3263,7 +3278,7 @@
/turf/closed/wall,
/area/security/checkpoint/customs)
"akG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -3336,7 +3351,7 @@
/turf/closed/wall,
/area/security/checkpoint)
"akQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -3609,7 +3624,7 @@
/area/vacant_room/office)
"alt" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -3631,7 +3646,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"alv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/photocopier,
@@ -3686,7 +3701,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint)
"alA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/table/reinforced,
@@ -3723,7 +3738,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"alD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3738,7 +3753,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"alE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3754,7 +3769,7 @@
/area/maintenance/starboard/fore)
"alF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3763,7 +3778,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"alG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3772,7 +3787,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"alH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -3793,7 +3808,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"alJ" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
@@ -3922,7 +3937,7 @@
},
/area/maintenance/port/fore)
"alZ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/structure/sign/poster/official/do_not_question{
@@ -3966,7 +3981,7 @@
/turf/open/floor/plasteel/grimy,
/area/vacant_room/office)
"amg" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/carpet,
@@ -3979,21 +3994,21 @@
/turf/open/floor/carpet,
/area/vacant_room/office)
"ami" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/port/fore)
"amj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Customs Desk APC";
areastring = "/area/security/checkpoint/customs";
- pixel_x = -26
+ pixel_x = -25
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
@@ -4007,10 +4022,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"amk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/holopad,
@@ -4131,10 +4146,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint)
"amw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/holopad,
@@ -4145,14 +4160,14 @@
/turf/open/floor/plasteel,
/area/security/checkpoint)
"amx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
areastring = "/area/security/checkpoint";
dir = 4;
name = "Security Checkpoint APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
@@ -4169,7 +4184,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"amz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -4412,7 +4427,7 @@
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"amW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -4426,7 +4441,7 @@
},
/area/maintenance/port/fore)
"amX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -4458,7 +4473,7 @@
/turf/open/floor/plasteel/grimy,
/area/vacant_room/office)
"ana" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/carpet,
@@ -4494,7 +4509,7 @@
/area/vacant_room/office)
"anh" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -4517,7 +4532,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"anj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -4544,7 +4559,7 @@
/area/security/checkpoint/customs)
"anl" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -4612,7 +4627,7 @@
/area/hallway/secondary/entry)
"anu" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -4630,7 +4645,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint)
"anw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -4682,14 +4697,14 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"anA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Starboard Bow Maintenance APC";
areastring = "/area/maintenance/starboard/fore";
- pixel_y = 24
+ pixel_y = 23
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair/stool/bar,
@@ -4941,7 +4956,7 @@
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"anX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -4987,7 +5002,7 @@
/turf/open/floor/wood,
/area/vacant_room/office)
"aoc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -4996,7 +5011,7 @@
/turf/open/floor/wood,
/area/vacant_room/office)
"aod" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5010,7 +5025,7 @@
pixel_y = -26
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5025,7 +5040,7 @@
},
/obj/effect/mapping_helpers/airlock/abandoned,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5040,10 +5055,10 @@
/turf/open/floor/plasteel,
/area/vacant_room/office)
"aog" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -5080,13 +5095,13 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"aoi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/neutral{
@@ -5102,7 +5117,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"aoj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/table/reinforced,
@@ -5116,10 +5131,10 @@
/area/security/checkpoint/customs)
"aok" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor/southright{
@@ -5156,10 +5171,10 @@
/area/hallway/secondary/entry)
"aoq" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -5168,7 +5183,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint)
"aor" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/table/reinforced,
@@ -5189,13 +5204,13 @@
/turf/open/floor/plasteel,
/area/security/checkpoint)
"aos" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
@@ -5244,7 +5259,7 @@
/area/maintenance/starboard/fore)
"aov" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/blobstart,
@@ -5311,7 +5326,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/starboard/fore)
"aoA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/chair/stool/bar,
@@ -5337,7 +5352,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"aoC" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/red{
@@ -5512,7 +5527,7 @@
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"aoU" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/wood,
@@ -5532,7 +5547,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aoX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5545,7 +5560,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aoZ" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel/grimy,
/area/vacant_room/office)
"apa" = (
@@ -5553,7 +5568,7 @@
/turf/open/floor/plasteel/grimy,
/area/vacant_room/office)
"apb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -5572,7 +5587,7 @@
/area/vacant_room/office)
"apd" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5607,7 +5622,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"apf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -5703,7 +5718,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint)
"apq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -5737,7 +5752,7 @@
/area/security/checkpoint)
"aps" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral,
@@ -5763,7 +5778,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"apx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -6040,7 +6055,7 @@
/obj/structure/chair/comfy/brown{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/wood,
@@ -6049,7 +6064,7 @@
/obj/structure/table/wood,
/obj/item/folder/red,
/obj/item/pen,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/wood,
@@ -6058,20 +6073,20 @@
/obj/structure/chair/comfy/brown{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"apW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"apX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/wood{
@@ -6087,7 +6102,7 @@
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
"apZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -6155,7 +6170,7 @@
dir = 2;
name = "Auxiliary Office APC";
areastring = "/area/vacant_room/office";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/white,
@@ -6195,7 +6210,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"aqk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -6274,7 +6289,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint)
"aqs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -6306,10 +6321,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aqv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6320,7 +6335,7 @@
/area/maintenance/starboard/fore)
"aqw" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -6341,7 +6356,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"aqx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -6361,7 +6376,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/starboard/fore)
"aqy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6370,7 +6385,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aqz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6389,7 +6404,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/starboard/fore)
"aqA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -6408,7 +6423,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/starboard/fore)
"aqB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -6623,7 +6638,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/electronic_marketing_den)
"aqQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/wood{
@@ -6645,7 +6660,7 @@
dir = 2;
name = "Electronics Marketing APC";
areastring = "/area/crew_quarters/electronic_marketing_den";
- pixel_y = -26
+ pixel_y = -23
},
/turf/open/floor/wood,
/area/crew_quarters/electronic_marketing_den)
@@ -6668,7 +6683,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -6682,7 +6697,7 @@
/area/maintenance/port/fore)
"aqX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -6693,7 +6708,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aqY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -6711,7 +6726,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aqZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -6729,7 +6744,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"ara" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral,
@@ -6931,7 +6946,7 @@
req_access_txt = "12"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/barricade/wooden,
@@ -6994,20 +7009,20 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"arC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
"arD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
"arE" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -7019,7 +7034,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"arF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/event_spawn,
@@ -7033,17 +7048,17 @@
/area/maintenance/port/fore)
"arG" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
"arH" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -7058,20 +7073,20 @@
},
/area/maintenance/port/fore)
"arI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
"arJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -7168,7 +7183,7 @@
/area/maintenance/starboard/fore)
"arT" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -7184,7 +7199,7 @@
/area/maintenance/starboard/fore)
"arV" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -7549,14 +7564,14 @@
/area/maintenance/port/fore)
"asE" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
"asF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -7569,16 +7584,16 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"asG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
"asH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -7588,7 +7603,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"asI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7598,7 +7613,7 @@
/area/maintenance/port/fore)
"asJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -7607,7 +7622,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"asK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7621,7 +7636,7 @@
/area/maintenance/port/fore)
"asL" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7632,7 +7647,7 @@
/area/maintenance/port/fore)
"asM" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7642,7 +7657,7 @@
/area/maintenance/port/fore)
"asN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7660,7 +7675,7 @@
},
/area/maintenance/port/fore)
"asO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7670,10 +7685,10 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"asP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -7684,7 +7699,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"asQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7693,10 +7708,10 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"asR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -7809,7 +7824,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"atd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -7823,7 +7838,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"ate" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7840,7 +7855,7 @@
req_access_txt = "12"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7858,7 +7873,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"atg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -7874,7 +7889,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"ath" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -8031,10 +8046,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"atq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -8052,7 +8067,7 @@
/area/maintenance/starboard/fore)
"atr" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8073,10 +8088,10 @@
/area/maintenance/starboard/fore)
"ats" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -8096,7 +8111,7 @@
/area/maintenance/starboard/fore)
"att" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -8550,7 +8565,7 @@
/turf/closed/wall,
/area/maintenance/port/fore)
"auc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -8624,7 +8639,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"aul" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -8696,7 +8711,7 @@
/area/maintenance/starboard/fore)
"aut" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -8729,7 +8744,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"auw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8742,7 +8757,7 @@
/area/maintenance/starboard/fore)
"aux" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8762,7 +8777,7 @@
/area/maintenance/starboard/fore)
"auy" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8775,7 +8790,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"auz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8793,7 +8808,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"auA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8806,7 +8821,7 @@
/area/maintenance/starboard/fore)
"auB" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8818,7 +8833,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"auC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -8833,7 +8848,7 @@
/area/maintenance/starboard/fore)
"auD" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8849,10 +8864,10 @@
/area/maintenance/starboard/fore)
"auE" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8864,7 +8879,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"auF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8891,7 +8906,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -8910,7 +8925,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -8920,7 +8935,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line,
@@ -8935,7 +8950,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -8951,7 +8966,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/brown,
@@ -8968,7 +8983,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/airalarm{
@@ -8988,7 +9003,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/blood/splatter,
@@ -9002,7 +9017,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/blood/splatter,
@@ -9017,13 +9032,13 @@
dir = 2;
name = "Disposal APC";
areastring = "/area/maintenance/disposal";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/disposalpipe/segment{
dir = 9
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/brown,
@@ -9267,7 +9282,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"avp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -9343,7 +9358,7 @@
/turf/open/floor/wood,
/area/maintenance/port/fore)
"avy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -9407,9 +9422,9 @@
dir = 1;
name = "Custodial Closet APC";
areastring = "/area/janitor";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/bot,
@@ -9541,7 +9556,7 @@
/obj/machinery/door/airlock{
name = "Auxiliary Restroom"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -9625,7 +9640,7 @@
/area/quartermaster/warehouse)
"avR" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -9801,7 +9816,7 @@
"awn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/blobstart,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -9910,7 +9925,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"awA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -9965,7 +9980,7 @@
/area/janitor)
"awD" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10099,7 +10114,7 @@
},
/area/crew_quarters/toilet/auxiliary)
"awO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -10542,7 +10557,7 @@
"axI" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -10644,7 +10659,7 @@
"axT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -10690,7 +10705,7 @@
/area/janitor)
"axW" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/bot,
@@ -10783,7 +10798,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/toilet/auxiliary)
"ayf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -10791,7 +10806,7 @@
dir = 2;
name = "Auxiliary Restrooms APC";
areastring = "/area/crew_quarters/toilet/auxiliary";
- pixel_y = -26
+ pixel_y = -23
},
/turf/open/floor/plating,
/area/crew_quarters/toilet/auxiliary)
@@ -10800,7 +10815,7 @@
dir = 8;
pixel_x = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -10824,7 +10839,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"ayi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -10843,7 +10858,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"ayj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -10859,7 +10874,7 @@
/area/hallway/primary/fore)
"ayk" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -10882,7 +10897,7 @@
/area/quartermaster/warehouse)
"ayl" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10902,7 +10917,7 @@
"ayn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -11102,7 +11117,7 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"ayE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -11270,7 +11285,7 @@
dir = 2;
name = "Port Bow Maintenance APC";
areastring = "/area/maintenance/port/fore";
- pixel_y = -26
+ pixel_y = -23
},
/obj/structure/cable/white,
/obj/effect/turf_decal/tile/neutral,
@@ -11380,7 +11395,7 @@
/area/janitor)
"azb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/purple{
@@ -11397,7 +11412,7 @@
pixel_y = -26
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/green{
@@ -11489,7 +11504,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"azj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -11519,7 +11534,7 @@
/area/hallway/primary/fore)
"azl" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11546,7 +11561,7 @@
/area/quartermaster/warehouse)
"azo" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11716,7 +11731,7 @@
/area/quartermaster/storage)
"azG" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -11931,7 +11946,7 @@
/area/maintenance/port/fore)
"aAg" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11952,7 +11967,7 @@
req_access_txt = "26"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -12049,7 +12064,7 @@
/turf/open/floor/plating,
/area/crew_quarters/toilet/auxiliary)
"aAq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -12073,7 +12088,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"aAs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12094,7 +12109,7 @@
/turf/open/floor/plating,
/area/quartermaster/warehouse)
"aAv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -12277,17 +12292,17 @@
/area/quartermaster/storage)
"aAI" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/storage)
"aAJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -12295,10 +12310,10 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"aAK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -12563,7 +12578,7 @@
/turf/open/floor/plasteel,
/area/hydroponics/garden/abandoned)
"aBq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -12573,7 +12588,7 @@
/area/maintenance/port/fore)
"aBr" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12586,7 +12601,7 @@
/area/maintenance/port/fore)
"aBs" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12598,7 +12613,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aBt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12615,7 +12630,7 @@
/area/maintenance/port/fore)
"aBu" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12631,7 +12646,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aBv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12643,10 +12658,10 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aBw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12660,7 +12675,7 @@
/area/maintenance/port/fore)
"aBx" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
@@ -12680,10 +12695,10 @@
/area/maintenance/port/fore)
"aBy" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12797,7 +12812,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"aBH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -12816,7 +12831,7 @@
/area/hallway/primary/fore)
"aBI" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12842,7 +12857,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/warehouse)
"aBL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -13011,7 +13026,7 @@
dir = 8;
id = "cargounload"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/poddoor{
@@ -13169,7 +13184,7 @@
/turf/open/floor/plasteel,
/area/hydroponics/garden/abandoned)
"aCz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13205,10 +13220,10 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aCE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -13218,7 +13233,7 @@
/area/maintenance/port/fore)
"aCF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13232,7 +13247,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aCG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13246,7 +13261,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aCH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -13254,7 +13269,7 @@
/area/maintenance/port/fore)
"aCI" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13272,7 +13287,7 @@
/area/maintenance/port/fore)
"aCJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13289,7 +13304,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13304,7 +13319,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aCL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -13317,13 +13332,13 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"aCM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -13350,7 +13365,7 @@
/area/hallway/primary/fore)
"aCO" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13364,7 +13379,7 @@
"aCP" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -13387,7 +13402,7 @@
/area/quartermaster/warehouse)
"aCQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13406,10 +13421,10 @@
/area/quartermaster/warehouse)
"aCR" = (
/obj/effect/decal/cleanable/oil,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -13423,10 +13438,10 @@
/area/quartermaster/warehouse)
"aCS" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13449,7 +13464,7 @@
/area/quartermaster/warehouse)
"aCT" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -13461,14 +13476,14 @@
/area/quartermaster/warehouse)
"aCU" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/quartermaster/warehouse)
"aCV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -13477,7 +13492,7 @@
"aCW" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/spawner/lootdrop/maintenance/two,
@@ -13486,14 +13501,14 @@
/area/quartermaster/warehouse)
"aCX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 4;
name = "Cargo Warehouse APC";
areastring = "/area/quartermaster/warehouse";
- pixel_x = 26
+ pixel_x = 24
},
/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
@@ -13632,7 +13647,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aDh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -13793,7 +13808,7 @@
"aDB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -13849,12 +13864,12 @@
/turf/closed/wall,
/area/hallway/secondary/service)
"aDK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
name = "Service Hallway Maintenance Hatch";
- req_one_access_txt = "12;25;28;46"
+ req_one_access_txt = "22;25;26;28;35;37;38;46"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -13905,7 +13920,7 @@
/area/quartermaster/warehouse)
"aDQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -14082,7 +14097,7 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"aEi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
@@ -14256,7 +14271,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aEx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -14275,7 +14290,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aEy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -14288,9 +14303,9 @@
dir = 4;
name = "Atmospherics Engine APC";
areastring = "/area/engine/atmospherics_engine";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable,
@@ -14304,27 +14319,27 @@
/area/space/nearstation)
"aEB" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/hydroponics/garden/abandoned)
"aEC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hydroponics/garden/abandoned)
"aED" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hydroponics/garden/abandoned)
"aEE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -14336,7 +14351,7 @@
/area/hydroponics/garden/abandoned)
"aEG" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -14353,7 +14368,7 @@
/turf/open/floor/plasteel/grimy,
/area/hallway/secondary/service)
"aEI" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/grimy,
@@ -14396,7 +14411,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aEN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -14432,12 +14447,12 @@
dir = 1;
name = "Bar APC";
areastring = "/area/crew_quarters/bar";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -14608,14 +14623,14 @@
/area/crew_quarters/bar)
"aFb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Port Primary Hallway APC";
areastring = "/area/hallway/primary/fore";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/effect/turf_decal/tile/neutral{
@@ -14624,10 +14639,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"aFc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
@@ -14664,7 +14679,7 @@
"aFg" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/mining{
@@ -14707,7 +14722,7 @@
/turf/closed/wall/r_wall,
/area/security/prison)
"aFn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -14890,7 +14905,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aFE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14912,7 +14927,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14932,7 +14947,7 @@
/area/engine/atmospherics_engine)
"aFG" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/stripes/corner,
@@ -14983,7 +14998,7 @@
dir = 2;
name = "Abandoned Garden APC";
areastring = "/area/hydroponics/garden/abandoned";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -15012,7 +15027,7 @@
/area/hydroponics/garden/abandoned)
"aFP" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -15036,7 +15051,7 @@
/turf/open/floor/plasteel,
/area/hydroponics/garden/abandoned)
"aFS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -15096,7 +15111,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aGa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -15149,7 +15164,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
"aGd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -15322,7 +15337,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aGr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -15577,7 +15592,7 @@
dir = 4;
id = "cargoload"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -15602,7 +15617,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aGI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/item/cultivator,
@@ -15617,10 +15632,10 @@
name = "old sink";
pixel_y = 28
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -15639,7 +15654,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aGK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/item/reagent_containers/glass/bucket,
@@ -15678,7 +15693,7 @@
/area/maintenance/solars/port/fore)
"aGN" = (
/obj/machinery/power/smes,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/light/small{
@@ -15690,7 +15705,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"aGO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/sign/directions/engineering{
@@ -15831,7 +15846,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"aGV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -15853,7 +15868,7 @@
/obj/structure/sign/warning/electricshock{
pixel_y = 32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -15880,7 +15895,7 @@
/area/engine/atmospherics_engine)
"aGY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -15890,7 +15905,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aGZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -15904,7 +15919,7 @@
pixel_y = -32
},
/obj/machinery/light,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -15921,7 +15936,7 @@
dir = 1;
pixel_y = -24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -15931,7 +15946,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aHc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -15944,10 +15959,10 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aHd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -15966,7 +15981,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aHe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -15976,7 +15991,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aHf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light_switch{
@@ -15989,7 +16004,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aHg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/electricshock{
@@ -16001,10 +16016,10 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aHh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16060,7 +16075,7 @@
req_access_txt = "12"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/barricade/wooden,
@@ -16080,7 +16095,7 @@
/area/hydroponics/garden/abandoned)
"aHp" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -16108,10 +16123,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aHr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -16125,7 +16140,7 @@
/area/hallway/secondary/service)
"aHs" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -16147,7 +16162,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
"aHt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16160,7 +16175,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
"aHu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16278,7 +16293,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aHI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -16311,7 +16326,7 @@
/turf/open/floor/plating,
/area/quartermaster/sorting)
"aHL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -16468,17 +16483,17 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"aHW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/storage)
"aHX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable/white,
@@ -16486,7 +16501,7 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"aIc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -16494,14 +16509,14 @@
/area/security/prison)
"aId" = (
/obj/machinery/seed_extractor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/security/prison)
"aIe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -16518,13 +16533,13 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aIf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -16540,7 +16555,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aIg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -16558,14 +16573,14 @@
/area/security/prison)
"aIh" = (
/obj/machinery/biogenerator,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/security/prison)
"aIi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -16643,10 +16658,10 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"aIo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -16665,7 +16680,7 @@
name = "Port Bow Solar Access";
req_one_access_txt = "24;10"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -16681,7 +16696,7 @@
/area/maintenance/solars/port/fore)
"aIq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -16730,7 +16745,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -16760,9 +16775,9 @@
dir = 1;
name = "Turbine Generator APC";
areastring = "/area/maintenance/disposal/incinerator";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/decal/cleanable/oil,
@@ -16788,7 +16803,7 @@
"aIz" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -16812,7 +16827,7 @@
/area/engine/atmospherics_engine)
"aIB" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -16835,13 +16850,13 @@
/turf/closed/wall/r_wall,
/area/engine/atmospherics_engine)
"aID" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -16850,7 +16865,7 @@
/area/engine/atmospherics_engine)
"aIE" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/cable{
@@ -16870,7 +16885,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aIF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -16900,7 +16915,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aIJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16909,7 +16924,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aIK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16920,7 +16935,7 @@
/area/maintenance/port/fore)
"aIL" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16935,10 +16950,10 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aIM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -16997,7 +17012,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aIT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -17138,7 +17153,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -17181,7 +17196,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aJi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17216,11 +17231,11 @@
/turf/open/floor/plating,
/area/quartermaster/sorting)
"aJl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -17230,7 +17245,7 @@
/obj/machinery/computer/security{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -17246,13 +17261,13 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aJn" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -17268,7 +17283,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aJo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -17279,7 +17294,7 @@
/area/security/checkpoint/supply)
"aJp" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -17364,7 +17379,7 @@
},
/area/security/prison)
"aJA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -17398,7 +17413,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/fore)
"aJF" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/airalarm{
@@ -17414,7 +17429,7 @@
dir = 2;
name = "Port Bow Solar APC";
areastring = "/area/maintenance/solars/port/fore";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -17432,7 +17447,7 @@
/obj/item/wrench,
/obj/item/tank/internals/emergency_oxygen/engi,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/yellow{
@@ -17453,13 +17468,13 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
"aJK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -17477,7 +17492,7 @@
"aJL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -17493,11 +17508,11 @@
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
"aJO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -17513,7 +17528,7 @@
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
"aJP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -17532,13 +17547,13 @@
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
"aJQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17558,7 +17573,7 @@
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
"aJR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -17575,7 +17590,7 @@
name = "Turbine Generator Access";
req_one_access_txt = "24;10"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17591,7 +17606,7 @@
/area/maintenance/disposal/incinerator)
"aJT" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17603,7 +17618,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aJU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -17648,7 +17663,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aJY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -17676,7 +17691,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aKb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -17787,7 +17802,7 @@
/turf/open/floor/wood,
/area/hallway/secondary/service)
"aKn" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/wood,
@@ -17825,7 +17840,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aKs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -17962,7 +17977,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aKE" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/cargo_technician,
@@ -18003,7 +18018,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aKH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -18052,7 +18067,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aKL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -18183,7 +18198,7 @@
/turf/closed/wall,
/area/security/prison)
"aKW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -18194,13 +18209,13 @@
/turf/open/floor/plating,
/area/security/prison)
"aKX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/public/glass{
@@ -18209,7 +18224,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aKY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -18402,7 +18417,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aLs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -18441,7 +18456,7 @@
/turf/open/floor/plasteel,
/area/engine/atmospherics_engine)
"aLv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/computer/monitor{
@@ -18465,14 +18480,14 @@
/turf/open/floor/plasteel/dark,
/area/engine/atmospherics_engine)
"aLw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/smes{
charge = 2e+006
},
/obj/machinery/light/small,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/circuit/green,
@@ -18484,7 +18499,7 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/item/radio/intercom{
@@ -18515,7 +18530,7 @@
/turf/closed/wall,
/area/crew_quarters/abandoned_gambling_den/secondary)
"aLB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -18572,7 +18587,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aLI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/airalarm{
@@ -18699,7 +18714,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aLR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -18724,7 +18739,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aLT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door_timer{
@@ -18737,7 +18752,7 @@
dir = 8;
name = "Security Post - Cargo APC";
areastring = "/area/security/checkpoint/supply";
- pixel_x = -26
+ pixel_x = -25
},
/obj/effect/turf_decal/tile/red{
dir = 1
@@ -18749,10 +18764,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aLU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -18835,14 +18850,14 @@
"aMe" = (
/obj/structure/table,
/obj/machinery/computer/libraryconsole/bookmanagement,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
/area/security/prison)
"aMf" = (
/obj/structure/easel,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/computer/security/telescreen/entertainment{
@@ -18860,7 +18875,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aMg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -18870,7 +18885,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aMh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -18881,13 +18896,13 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aMi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -18899,7 +18914,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aMj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -18910,7 +18925,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aMk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -18921,7 +18936,7 @@
/area/security/prison)
"aMl" = (
/obj/structure/table,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/paper_bin,
@@ -18936,7 +18951,7 @@
"aMm" = (
/obj/structure/table,
/obj/item/clipboard,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/toy/figure/syndie,
@@ -18949,10 +18964,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aMn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -18962,7 +18977,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aMo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/punching_bag,
@@ -19166,7 +19181,7 @@
/area/engine/atmos)
"aMJ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -19245,14 +19260,14 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den/secondary)
"aMU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
areastring = "/area/crew_quarters/abandoned_gambling_den/secondary";
dir = 1;
name = "Abandoned Gambling Den APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood{
@@ -19281,7 +19296,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aMZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -19332,7 +19347,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/bar/atrium)
"aNc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/light{
@@ -19342,7 +19357,7 @@
dir = 1;
name = "Atrium APC";
areastring = "/area/crew_quarters/bar/atrium";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/camera{
c_tag = "Theatre Stage";
@@ -19483,20 +19498,20 @@
/turf/open/floor/plating,
/area/quartermaster/sorting)
"aNq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/supply)
"aNr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor{
@@ -19517,7 +19532,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aNs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -19662,7 +19677,7 @@
/area/security/prison)
"aNE" = (
/obj/structure/table,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/paper,
@@ -20068,7 +20083,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/atmos)
"aOk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -20147,7 +20162,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/abandoned_gambling_den/secondary)
"aOq" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/grimy,
@@ -20171,7 +20186,7 @@
/obj/structure/chair/stool/bar,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -20234,7 +20249,7 @@
/area/crew_quarters/theatre)
"aOx" = (
/obj/machinery/vending/autodrobe,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/light{
@@ -20244,7 +20259,7 @@
dir = 1;
name = "Theatre Backstage APC";
areastring = "/area/crew_quarters/theatre";
- pixel_y = 24
+ pixel_y = 23
},
/obj/effect/turf_decal/tile/red{
dir = 1
@@ -20310,7 +20325,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aOB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -20339,7 +20354,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/bar/atrium)
"aOE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -20438,7 +20453,7 @@
/area/crew_quarters/bar/atrium)
"aOM" = (
/obj/structure/table,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/item/stack/wrapping_paper{
@@ -20450,7 +20465,7 @@
dir = 8;
name = "Delivery Office APC";
areastring = "/area/quartermaster/sorting";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/effect/turf_decal/tile/brown{
@@ -20462,10 +20477,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aON" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/cargo_technician,
@@ -20482,10 +20497,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aOO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -20504,7 +20519,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aOP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -20528,17 +20543,17 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aOR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/supply)
"aOS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/closet/secure_closet/brig{
@@ -20557,10 +20572,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aOT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/red{
@@ -20621,14 +20636,14 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aPb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aPc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light,
@@ -20641,7 +20656,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aPd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -20651,14 +20666,14 @@
/area/quartermaster/storage)
"aPe" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aPf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -20667,7 +20682,7 @@
"aPg" = (
/obj/structure/cable/white,
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -20735,7 +20750,7 @@
/area/security/prison)
"aPm" = (
/obj/structure/table,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/toy/cards/deck,
@@ -21132,7 +21147,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/atmos)
"aPP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -21260,7 +21275,7 @@
/area/crew_quarters/abandoned_gambling_den/secondary)
"aQb" = (
/obj/structure/chair/stool/bar,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -21278,7 +21293,7 @@
/area/crew_quarters/abandoned_gambling_den/secondary)
"aQd" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -21320,7 +21335,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/theatre)
"aQg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -21363,7 +21378,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aQk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -21399,7 +21414,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/bar/atrium)
"aQn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -21566,7 +21581,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -21628,7 +21643,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
"aQD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -21675,10 +21690,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aQH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/red,
@@ -21688,7 +21703,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aQI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair{
@@ -21704,11 +21719,11 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aQJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -21748,7 +21763,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aQN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -21773,47 +21788,47 @@
/turf/closed/wall,
/area/quartermaster/qm)
"aQR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/qm)
"aQS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/qm)
"aQT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/qm)
"aQU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
/area/quartermaster/qm)
"aQV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -21939,7 +21954,7 @@
/turf/open/floor/plating,
/area/security/prison)
"aRj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -21984,7 +21999,7 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
"aRl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -22139,7 +22154,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -22239,17 +22254,17 @@
},
/area/crew_quarters/abandoned_gambling_den/secondary)
"aRL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/crew_quarters/abandoned_gambling_den/secondary)
"aRM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -22264,7 +22279,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aRN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22287,7 +22302,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aRO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22307,7 +22322,7 @@
/area/crew_quarters/theatre)
"aRP" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22320,10 +22335,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/theatre)
"aRQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -22339,7 +22354,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/theatre)
"aRR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22357,7 +22372,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/theatre)
"aRS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22371,7 +22386,7 @@
/area/crew_quarters/theatre)
"aRT" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -22390,7 +22405,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/theatre)
"aRU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22401,13 +22416,13 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aRV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -22416,7 +22431,7 @@
/area/hallway/secondary/service)
"aRW" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -22435,7 +22450,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/bar/atrium)
"aRX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light_switch{
@@ -22458,7 +22473,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/bar/atrium)
"aRY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22470,7 +22485,7 @@
/obj/structure/chair/wood/normal{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22496,7 +22511,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/bar/atrium)
"aSd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -22504,7 +22519,7 @@
/area/hallway/primary/fore)
"aSe" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/mining/glass{
@@ -22538,7 +22553,7 @@
/turf/closed/wall,
/area/security/checkpoint/supply)
"aSi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -22549,13 +22564,13 @@
/area/security/checkpoint/supply)
"aSj" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -22575,7 +22590,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aSk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -22585,14 +22600,14 @@
/turf/open/floor/plating,
/area/security/checkpoint/supply)
"aSl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 8;
name = "Cargo Bay APC";
areastring = "/area/quartermaster/storage";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/structure/disposalpipe/segment{
@@ -22691,7 +22706,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aSr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/brown,
@@ -22737,14 +22752,14 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aSv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Quartermaster's Office APC";
areastring = "/area/quartermaster/qm";
- pixel_y = 28
+ pixel_y = 23
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/turf_decal/tile/brown{
@@ -22801,7 +22816,7 @@
/area/quartermaster/qm)
"aSz" = (
/obj/structure/bed,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/bedsheet/qm,
@@ -22885,7 +22900,7 @@
id_tag = "permabolt2";
name = "Cell 2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -22954,7 +22969,7 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
"aSJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/table/reinforced,
@@ -23001,10 +23016,10 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
"aSK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -23020,7 +23035,7 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
"aSL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
@@ -23036,11 +23051,11 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
"aSM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/closet/secure_closet/injection,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -23242,7 +23257,7 @@
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -23261,7 +23276,7 @@
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -23282,7 +23297,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -23412,7 +23427,7 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den/secondary)
"aTq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -23425,7 +23440,7 @@
/area/crew_quarters/abandoned_gambling_den/secondary)
"aTr" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -23438,7 +23453,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/barricade/wooden,
@@ -23454,10 +23469,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/abandoned_gambling_den/secondary)
"aTt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -23530,7 +23545,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aTB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/storage/pod{
@@ -23690,7 +23705,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/bar/atrium)
"aTN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -23739,7 +23754,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aTR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -23807,9 +23822,9 @@
dir = 1;
name = "Cargo Office APC";
areastring = "/area/quartermaster/office";
- pixel_y = 28
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/brown{
@@ -23830,7 +23845,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aTX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/brown{
@@ -23859,7 +23874,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aTZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light{
@@ -23899,7 +23914,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aUb" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/cargo_technician,
@@ -23989,7 +24004,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aUg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -24068,10 +24083,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aUl" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -24154,7 +24169,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aUr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -24264,7 +24279,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aUz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -24353,10 +24368,10 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
"aUE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -24406,7 +24421,7 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
"aUH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red,
@@ -24625,7 +24640,7 @@
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -24782,7 +24797,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/theatre)
"aVm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -24909,7 +24924,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/bar/atrium)
"aVv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -24960,7 +24975,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aVz" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/cargo_technician,
@@ -24982,7 +24997,7 @@
/area/quartermaster/office)
"aVA" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -25004,7 +25019,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aVB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -25026,7 +25041,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aVC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25048,7 +25063,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aVD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25057,7 +25072,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -25074,7 +25089,7 @@
/area/quartermaster/office)
"aVE" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25083,7 +25098,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -25099,7 +25114,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aVF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25116,7 +25131,7 @@
/area/quartermaster/office)
"aVG" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/mining{
@@ -25138,10 +25153,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aVH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25159,7 +25174,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aVI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -25181,7 +25196,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aVJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -25204,7 +25219,7 @@
/area/quartermaster/storage)
"aVK" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25228,7 +25243,7 @@
/area/quartermaster/storage)
"aVL" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/quartermaster,
@@ -25240,7 +25255,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aVM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25262,7 +25277,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aVN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25284,7 +25299,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aVO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25303,13 +25318,13 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aVP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -25322,7 +25337,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aVQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -25339,7 +25354,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aVR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/brown{
@@ -25351,7 +25366,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aVS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -25367,7 +25382,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aVT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -25385,10 +25400,10 @@
/area/quartermaster/qm)
"aVU" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/bot,
@@ -25396,7 +25411,7 @@
/area/quartermaster/qm)
"aVV" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/folder/yellow,
@@ -25414,13 +25429,13 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aVW" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/landmark/start/quartermaster,
@@ -25437,7 +25452,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aVX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/brown,
@@ -25447,7 +25462,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aVY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -25464,13 +25479,13 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aVZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/quartermaster,
@@ -25572,7 +25587,7 @@
},
/area/security/prison)
"aWh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -25640,7 +25655,7 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/education)
"aWm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -25686,7 +25701,7 @@
dir = 2;
name = "Education Chamber APC";
areastring = "/area/security/execution/education";
- pixel_y = -26
+ pixel_y = -23
},
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 4
@@ -25943,7 +25958,7 @@
/area/engine/atmos)
"aWM" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -26020,14 +26035,14 @@
/turf/open/floor/engine/air,
/area/engine/atmos)
"aWT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Service Hall APC";
areastring = "/area/hallway/secondary/service";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -26040,10 +26055,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aWU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/newscaster{
@@ -26170,7 +26185,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/bar/atrium)
"aXd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -26439,7 +26454,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aXv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -26502,7 +26517,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aXA" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -26548,7 +26563,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aXC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -26608,7 +26623,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aXG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -26628,14 +26643,14 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aXI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/qm)
"aXJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -26652,7 +26667,7 @@
},
/area/security/prison)
"aXL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -26686,7 +26701,7 @@
name = "Long-Term Cell 2";
req_access_txt = "2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -26708,7 +26723,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aXR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -26960,7 +26975,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"aYm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -27054,7 +27069,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aYs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -27073,10 +27088,10 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aYt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -27089,7 +27104,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aYu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -27101,7 +27116,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aYv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -27115,13 +27130,13 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"aYw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -27133,7 +27148,7 @@
/area/maintenance/port/fore)
"aYx" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -27147,7 +27162,7 @@
/area/maintenance/port/fore)
"aYy" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -27157,7 +27172,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"aYz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -27176,7 +27191,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aYA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -27189,10 +27204,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"aYB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -27270,7 +27285,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -27508,7 +27523,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aYZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/storage/pod{
@@ -27600,7 +27615,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aZg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/brown,
@@ -27624,10 +27639,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aZi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -27636,7 +27651,7 @@
/area/quartermaster/qm)
"aZj" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -27644,7 +27659,7 @@
/area/quartermaster/qm)
"aZk" = (
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/red,
@@ -27667,10 +27682,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27678,20 +27693,20 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/red,
/turf/open/floor/plasteel,
/area/security/prison)
"aZp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -27701,7 +27716,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -27711,7 +27726,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -27731,7 +27746,7 @@
pixel_x = 6;
pixel_y = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27744,7 +27759,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/computer/security/telescreen{
@@ -27759,10 +27774,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -27774,10 +27789,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -27799,10 +27814,10 @@
pixel_x = 6;
pixel_y = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27815,7 +27830,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -27830,10 +27845,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -27841,7 +27856,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27864,7 +27879,7 @@
pixel_x = 6;
pixel_y = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -27876,10 +27891,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -27889,10 +27904,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -27906,13 +27921,13 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/button/door{
@@ -27929,7 +27944,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -27943,10 +27958,10 @@
/area/security/prison)
"aZF" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -27965,7 +27980,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -27974,7 +27989,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -27986,7 +28001,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -28001,7 +28016,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aZJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -28226,7 +28241,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"baf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -28327,7 +28342,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"bap" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -28346,7 +28361,7 @@
/turf/closed/wall,
/area/hydroponics)
"bat" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -28388,7 +28403,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"bax" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -28587,7 +28602,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"baO" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/cargo_technician,
/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
@@ -28652,7 +28667,7 @@
/area/quartermaster/miningoffice)
"baW" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -28664,33 +28679,33 @@
/turf/closed/wall,
/area/quartermaster/qm)
"baY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/cable/white,
/turf/open/floor/plating,
/area/quartermaster/qm)
"baZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/security/prison)
"bba" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28707,7 +28722,7 @@
pixel_y = -26
},
/obj/machinery/light,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28719,10 +28734,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"bbc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -28732,7 +28747,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"bbd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28802,7 +28817,7 @@
name = "Prison Wing APC";
areastring = "/area/security/prison";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/tile/red{
@@ -28824,7 +28839,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"bbm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -28890,7 +28905,7 @@
},
/area/security/prison)
"bbs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -29083,7 +29098,7 @@
/area/engine/atmos)
"bbJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -29170,7 +29185,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bbT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29233,7 +29248,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"bcb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29335,7 +29350,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"bcn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -29482,7 +29497,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bcA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29526,7 +29541,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bcG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
@@ -29570,7 +29585,7 @@
name = "Prison Wing";
req_access_txt = "1"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29628,7 +29643,7 @@
/area/security/prison)
"bcP" = (
/obj/structure/rack,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/restraints/handcuffs,
@@ -29695,7 +29710,7 @@
/obj/structure/closet/secure_closet/brig{
name = "Prisoner Locker"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -29744,7 +29759,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"bcV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/table,
@@ -29961,7 +29976,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"bdp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -29995,7 +30010,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bds" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -30013,7 +30028,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bdt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30032,7 +30047,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bdu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30047,10 +30062,10 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bdv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30065,7 +30080,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bdw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -30080,7 +30095,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bdx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30091,7 +30106,7 @@
/area/hydroponics)
"bdy" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -30110,24 +30125,24 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"bdz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"bdA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -30136,7 +30151,7 @@
/area/hallway/secondary/service)
"bdB" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -30155,7 +30170,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/kitchen)
"bdC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30166,7 +30181,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/kitchen)
"bdD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30175,7 +30190,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/kitchen)
"bdE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/cook,
@@ -30185,7 +30200,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/kitchen)
"bdF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -30412,7 +30427,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bdZ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/turf_decal/tile/neutral{
@@ -30446,7 +30461,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bec" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -30502,7 +30517,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bei" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/cable/white,
@@ -30510,20 +30525,20 @@
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
"bej" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
"bek" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -30531,10 +30546,10 @@
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
"bel" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -30545,7 +30560,7 @@
id = "brigprison";
name = "Prison Blast door"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -30789,7 +30804,7 @@
/area/maintenance/port/fore)
"beL" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -30902,7 +30917,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
"beW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -30957,7 +30972,7 @@
dir = 2;
name = "Kitchen APC";
areastring = "/area/crew_quarters/kitchen";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -31118,7 +31133,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bfr" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/brown{
@@ -31219,10 +31234,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bfz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -31338,10 +31353,10 @@
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
"bfN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/sign/warning/securearea{
@@ -31359,7 +31374,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"bfO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -31378,7 +31393,7 @@
pixel_y = 26;
req_access_txt = "63"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -31392,14 +31407,14 @@
/area/security/prison)
"bfQ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/security/glass{
name = "Storage Closet";
req_access_txt = "63"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -31415,7 +31430,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"bfR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -31428,7 +31443,7 @@
/area/security/prison)
"bfS" = (
/obj/structure/closet/l3closet/security,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -31677,10 +31692,11 @@
"bgn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
- name = "Service Hall"
+ name = "Service Hall";
+ req_one_access_txt = "22;25;26;28;35;37;38;46"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -31746,7 +31762,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/kitchen)
"bgv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction{
@@ -31973,7 +31989,7 @@
/area/quartermaster/miningoffice)
"bgN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -32066,7 +32082,7 @@
name = "Prison Wing";
req_access_txt = "1"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -32082,7 +32098,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bhb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -32115,7 +32131,7 @@
/turf/closed/wall/r_wall,
/area/security/main)
"bhe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -32189,9 +32205,9 @@
dir = 1;
name = "Atmospherics APC";
areastring = "/area/engine/atmos";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/yellow{
@@ -32282,7 +32298,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bhq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -32463,7 +32479,7 @@
/area/hallway/secondary/service)
"bhI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green{
@@ -32606,7 +32622,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -32777,7 +32793,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bii" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -32796,7 +32812,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bij" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -32809,7 +32825,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bik" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -32829,7 +32845,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bil" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -32844,7 +32860,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bim" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -32861,10 +32877,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bin" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -32952,14 +32968,14 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"biu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
"biy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -33026,7 +33042,7 @@
/turf/open/floor/plasteel/white,
/area/security/brig)
"biC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -33036,7 +33052,7 @@
/turf/open/floor/plating,
/area/security/brig)
"biD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -33056,7 +33072,7 @@
/area/security/brig)
"biE" = (
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -33097,10 +33113,10 @@
/turf/open/floor/plasteel,
/area/security/main)
"biH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -33112,7 +33128,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"biI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/airalarm{
@@ -33127,7 +33143,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"biJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light{
@@ -33149,7 +33165,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"biK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/newscaster/security_unit{
@@ -33165,7 +33181,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"biL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/stripes/box,
@@ -33193,7 +33209,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"biN" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/item/radio/intercom{
@@ -33233,7 +33249,7 @@
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hos)
"biQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -33244,13 +33260,13 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
"biR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -33261,7 +33277,7 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
"biS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -33415,7 +33431,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bjd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33434,7 +33450,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bje" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -33451,7 +33467,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bjf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33473,7 +33489,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bjg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33497,10 +33513,10 @@
"bjh" = (
/obj/machinery/holopad,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -33513,7 +33529,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bji" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -33532,7 +33548,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bjj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
@@ -33719,7 +33735,7 @@
"bjy" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/bot,
@@ -33906,7 +33922,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"bjN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -33991,7 +34007,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bjT" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
@@ -34008,7 +34024,7 @@
/area/quartermaster/miningoffice)
"bjU" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -34054,10 +34070,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bjY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -34068,7 +34084,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bjZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/purple,
@@ -34078,7 +34094,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bka" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/requests_console{
@@ -34098,7 +34114,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bkb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/brown,
@@ -34108,11 +34124,11 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bkc" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/purple,
@@ -34124,7 +34140,7 @@
"bkd" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/folder/yellow,
@@ -34139,20 +34155,20 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"bke" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
"bkf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable/white,
@@ -34160,11 +34176,11 @@
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
"bkj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -34172,7 +34188,7 @@
/area/security/brig)
"bkk" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/clothing/gloves/color/latex,
@@ -34194,13 +34210,13 @@
/turf/open/floor/plasteel/white,
/area/security/brig)
"bkl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
/area/security/brig)
"bkm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -34209,10 +34225,10 @@
/turf/open/floor/plasteel/white,
/area/security/brig)
"bkn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/door/airlock/medical/glass{
@@ -34228,10 +34244,10 @@
/turf/open/floor/plasteel/white,
/area/security/brig)
"bko" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -34246,10 +34262,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bkp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -34283,14 +34299,14 @@
/turf/open/floor/plasteel,
/area/security/main)
"bks" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red,
/turf/open/floor/plasteel,
/area/security/main)
"bkt" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/security_officer,
/obj/effect/turf_decal/tile/red,
/obj/effect/turf_decal/tile/red{
@@ -34393,7 +34409,7 @@
/area/crew_quarters/heads/hos)
"bkB" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/taperecorder{
@@ -34551,7 +34567,7 @@
/area/engine/atmos)
"bkS" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -34661,7 +34677,7 @@
"blc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -34788,7 +34804,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral,
@@ -35118,7 +35134,7 @@
/area/quartermaster/miningoffice)
"blR" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/loading_area,
@@ -35126,7 +35142,7 @@
/area/quartermaster/miningoffice)
"blS" = (
/obj/structure/table,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/item/storage/firstaid/regular,
@@ -35135,7 +35151,7 @@
dir = 4;
name = "Mining Dock APC";
areastring = "/area/quartermaster/miningoffice";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Cargo - Mining Office";
@@ -35172,7 +35188,7 @@
"blV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -35281,10 +35297,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bmi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -35300,7 +35316,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bmj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -35312,7 +35328,7 @@
/area/security/brig)
"bmk" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -35329,10 +35345,10 @@
/turf/open/floor/plasteel,
/area/security/main)
"bmm" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/security_officer,
@@ -35411,7 +35427,7 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"bms" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -35444,7 +35460,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bmv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -35710,7 +35726,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bmV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -35834,7 +35850,7 @@
/area/maintenance/port/fore)
"bnf" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -35940,10 +35956,11 @@
"bno" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
- name = "Service Foyer"
+ name = "Service Foyer";
+ req_one_access_txt = "22;25;26;28;35;37;38;46"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -36000,7 +36017,7 @@
/obj/machinery/door/airlock/public/glass{
name = "Fore Primary Hallway"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -36076,7 +36093,7 @@
/area/quartermaster/miningoffice)
"bnB" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -36093,37 +36110,37 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/fore)
"bnC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/quartermaster/miningoffice)
"bnD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/execution/transfer)
"bnE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/execution/transfer)
"bnF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -36152,7 +36169,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bnI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36192,9 +36209,9 @@
dir = 8;
name = "Security Office APC";
areastring = "/area/security/main";
- pixel_x = -26
+ pixel_x = -25
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36210,13 +36227,13 @@
/turf/open/floor/plasteel,
/area/security/main)
"bnM" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/landmark/start/security_officer,
@@ -36337,7 +36354,7 @@
/area/security/main)
"bnU" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -36357,7 +36374,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bnW" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36369,7 +36386,7 @@
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -36401,7 +36418,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"boa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
@@ -36423,7 +36440,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bod" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -36625,7 +36642,7 @@
/area/engine/atmos)
"bou" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -36722,7 +36739,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -36799,7 +36816,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -36893,7 +36910,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"boV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36903,9 +36920,9 @@
dir = 1;
name = "Central Primary Hallway APC";
areastring = "/area/hallway/primary/central";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -36914,7 +36931,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"boW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -36931,7 +36948,7 @@
req_access_txt = "12"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36947,7 +36964,7 @@
/area/maintenance/starboard/fore)
"boY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -36964,7 +36981,7 @@
"boZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -37003,7 +37020,7 @@
/area/security/execution/transfer)
"bpe" = (
/obj/structure/filingcabinet/chestdrawer,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -37084,14 +37101,14 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"bpj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/execution/transfer)
"bpk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -37114,7 +37131,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"bpm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red,
@@ -37169,7 +37186,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"bpr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -37184,7 +37201,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"bps" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37203,13 +37220,13 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"bpt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/door/airlock/command{
@@ -37235,10 +37252,10 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"bpu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -37248,7 +37265,7 @@
/area/crew_quarters/heads/hos)
"bpv" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37258,7 +37275,7 @@
/area/crew_quarters/heads/hos)
"bpw" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/folder/red,
@@ -37266,10 +37283,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/grimy,
@@ -37278,7 +37295,7 @@
/obj/structure/chair/comfy/black{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/head_of_security,
@@ -37288,7 +37305,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bpy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37297,7 +37314,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bpz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -37313,13 +37330,13 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"bpA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/door/airlock/command{
@@ -37342,21 +37359,21 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"bpB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bpC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/head_of_security,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bpD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/computer/crew{
@@ -37365,11 +37382,11 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"bpE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -37695,7 +37712,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bqd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -37796,7 +37813,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bqn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -37814,7 +37831,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bqo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37831,7 +37848,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37847,7 +37864,7 @@
/area/maintenance/port/fore)
"bqq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37859,7 +37876,7 @@
"bqr" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37868,7 +37885,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"bqs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37882,7 +37899,7 @@
/area/maintenance/port/fore)
"bqt" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37901,7 +37918,7 @@
},
/area/maintenance/port/fore)
"bqu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37910,7 +37927,7 @@
/turf/open/floor/plating,
/area/maintenance/port/fore)
"bqv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -37921,7 +37938,7 @@
/area/maintenance/port/fore)
"bqw" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction/flip{
@@ -37931,10 +37948,10 @@
/area/maintenance/port/fore)
"bqx" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -37977,7 +37994,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bqC" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/start/botanist,
@@ -38008,13 +38025,13 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -38037,7 +38054,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -38057,7 +38074,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -38076,7 +38093,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -38099,7 +38116,7 @@
/area/hallway/primary/central)
"bqJ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -38114,7 +38131,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -38134,7 +38151,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -38149,7 +38166,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -38161,7 +38178,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -38173,7 +38190,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -38190,14 +38207,14 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -38213,7 +38230,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -38222,7 +38239,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -38231,7 +38248,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -38240,7 +38257,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -38250,7 +38267,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -38266,7 +38283,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -38284,7 +38301,7 @@
/area/hallway/primary/central)
"bqW" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -38296,7 +38313,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -38315,7 +38332,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/event_spawn,
@@ -38332,7 +38349,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bqZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -38351,10 +38368,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bra" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -38403,7 +38420,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"brf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -38419,7 +38436,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"brh" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
@@ -38444,7 +38461,7 @@
/area/security/execution/transfer)
"brk" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -38467,7 +38484,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"brm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -38501,7 +38518,7 @@
/area/security/brig)
"bro" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/security/glass{
@@ -38532,10 +38549,10 @@
/turf/open/floor/plasteel,
/area/security/main)
"brq" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/security_officer,
@@ -38622,7 +38639,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"brw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -38656,7 +38673,7 @@
/area/security/main)
"bry" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -38670,7 +38687,7 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
"brz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -38679,7 +38696,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"brA" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -38706,7 +38723,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -39011,7 +39028,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bsg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
@@ -39043,7 +39060,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bsi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -39115,7 +39132,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -39155,7 +39172,7 @@
/turf/closed/wall,
/area/storage/tech)
"bsv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -39235,7 +39252,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bsA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -39511,7 +39528,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bsU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -39543,17 +39560,17 @@
/turf/closed/wall,
/area/hallway/primary/central)
"bta" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/execution/transfer)
"btb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -39561,17 +39578,17 @@
/turf/open/floor/plating,
/area/security/execution/transfer)
"btc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/execution/transfer)
"btd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -39580,10 +39597,10 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"bte" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -39654,7 +39671,7 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
"bti" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -39668,13 +39685,13 @@
/area/security/execution/transfer)
"btj" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -39697,7 +39714,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"btk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -39715,13 +39732,13 @@
/turf/open/floor/plasteel,
/area/security/brig)
"btl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -39744,7 +39761,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"btm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -39759,13 +39776,13 @@
/area/security/brig)
"btn" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -39784,7 +39801,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"bto" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -39793,13 +39810,13 @@
/turf/open/floor/plasteel,
/area/security/main)
"btp" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/landmark/start/security_officer,
@@ -39814,7 +39831,7 @@
/area/security/main)
"btq" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/folder/red,
@@ -39836,7 +39853,7 @@
/area/security/main)
"btr" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/paper_bin,
@@ -39857,7 +39874,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"bts" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -39872,7 +39889,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"btt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -39892,7 +39909,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"btu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -39911,10 +39928,10 @@
/turf/open/floor/plasteel,
/area/security/main)
"btv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -39957,13 +39974,13 @@
pixel_x = -24;
pixel_y = -32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hos)
"btz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -40221,10 +40238,10 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"btX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -40244,7 +40261,7 @@
"btY" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -40261,13 +40278,13 @@
name = "Atmospherics Desk";
req_access_txt = "24"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -40284,7 +40301,7 @@
/area/engine/atmos)
"bua" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -40294,7 +40311,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bub" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
@@ -40305,7 +40322,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"buc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/portable_atmospherics/canister/nitrogen,
@@ -40346,11 +40363,11 @@
/area/hallway/primary/port)
"buh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -40370,9 +40387,9 @@
dir = 4;
name = "Port Primary Hallway APC";
areastring = "/area/hallway/primary/port";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -40383,7 +40400,7 @@
"buj" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -40424,7 +40441,7 @@
/area/hallway/primary/central)
"buo" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -40458,7 +40475,7 @@
/area/hallway/primary/central)
"bus" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -40521,10 +40538,10 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"buD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment,
@@ -40537,7 +40554,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"buE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -40549,10 +40566,10 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"buF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -40564,10 +40581,10 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"buG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -40579,7 +40596,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"buH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -40592,7 +40609,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"buI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
@@ -40615,7 +40632,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"buK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -40655,7 +40672,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"buO" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/security_officer,
@@ -40690,7 +40707,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"buR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -40724,7 +40741,7 @@
dir = 2;
name = "Head of Security's Office APC";
areastring = "/area/crew_quarters/heads/hos";
- pixel_y = -26
+ pixel_y = -23
},
/obj/structure/cable/white,
/obj/effect/turf_decal/tile/neutral{
@@ -40757,7 +40774,7 @@
/area/crew_quarters/heads/hos)
"buV" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/storage/fancy/donut_box,
@@ -40955,7 +40972,7 @@
/area/engine/atmos)
"bvj" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -41019,7 +41036,7 @@
/area/engine/atmos)
"bvo" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -41050,7 +41067,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bvr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -41077,7 +41094,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction,
@@ -41108,27 +41125,27 @@
/turf/closed/wall/r_wall,
/area/storage/tech)
"bvw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/storage/tech)
"bvx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/storage/tech)
"bvy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -41199,7 +41216,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bvG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -41243,7 +41260,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bvM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -41267,7 +41284,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bvO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -41354,7 +41371,7 @@
/area/security/nuke_storage)
"bvX" = (
/obj/structure/closet/emcloset,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -41363,10 +41380,10 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"bvY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -41392,7 +41409,7 @@
dir = 2;
name = "Security Transferring APC";
areastring = "/area/security/execution/transfer";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/tile/red,
/obj/effect/turf_decal/tile/red{
@@ -41401,7 +41418,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"bwb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red,
@@ -41429,7 +41446,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"bwd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -41499,7 +41516,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"bwk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -41528,10 +41545,10 @@
/area/security/main)
"bwm" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -41546,7 +41563,7 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai)
"bwo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -41557,10 +41574,10 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/sign/warning/electricshock{
@@ -41575,7 +41592,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bwq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -41679,7 +41696,7 @@
/area/engine/atmos)
"bwA" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -41737,10 +41754,10 @@
/area/engine/atmos)
"bwD" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -41759,7 +41776,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bwE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -41780,7 +41797,7 @@
/area/engine/atmos)
"bwF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -41797,14 +41814,14 @@
"bwG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/plasticflaps/opaque,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/door/poddoor/preopen{
id = "atmoslock";
name = "Atmospherics Lockdown Blast door"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -41831,7 +41848,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -41852,7 +41869,7 @@
/area/hallway/primary/port)
"bwJ" = (
/obj/structure/rack,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -41863,13 +41880,13 @@
/area/storage/tech)
"bwK" = (
/obj/structure/rack,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line,
@@ -41878,7 +41895,7 @@
/area/storage/tech)
"bwL" = (
/obj/structure/rack,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -41943,10 +41960,10 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bwR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -41957,10 +41974,10 @@
/turf/open/floor/plating,
/area/bridge)
"bwS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -41971,10 +41988,10 @@
/turf/open/floor/plating,
/area/bridge)
"bwT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -41988,7 +42005,7 @@
/turf/closed/wall/r_wall,
/area/bridge)
"bwV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -41999,13 +42016,13 @@
/turf/open/floor/plating,
/area/bridge)
"bwW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -42016,7 +42033,7 @@
/turf/open/floor/plating,
/area/bridge)
"bwX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -42036,7 +42053,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bwZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -42066,11 +42083,11 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bxb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -42080,7 +42097,7 @@
/turf/open/floor/plating,
/area/hallway/primary/central)
"bxc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -42133,10 +42150,10 @@
/area/security/nuke_storage)
"bxm" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/door/airlock/security/glass{
@@ -42157,7 +42174,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"bxn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -42208,20 +42225,20 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"bxr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
/area/security/main)
"bxs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/security{
@@ -42242,7 +42259,7 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"bxt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
@@ -42319,7 +42336,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bxy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -42507,7 +42524,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bxO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -42553,7 +42570,7 @@
/area/engine/atmos)
"bxS" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -42577,7 +42594,7 @@
/turf/open/floor/plasteel/dark/corner,
/area/engine/atmos)
"bxU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -42601,7 +42618,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -42644,7 +42661,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bya" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -42664,7 +42681,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"byc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -42686,7 +42703,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bye" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -42731,7 +42748,7 @@
/area/bridge)
"byi" = (
/obj/machinery/computer/med_data,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -42763,7 +42780,7 @@
/area/bridge)
"byl" = (
/obj/machinery/computer/security,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -42794,7 +42811,7 @@
/area/bridge)
"byo" = (
/obj/machinery/computer/station_alert,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/yellow{
@@ -42823,10 +42840,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"byr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -42842,7 +42859,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bys" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -42855,13 +42872,13 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"byt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -42888,7 +42905,7 @@
/turf/open/floor/plasteel/dark,
/area/hallway/primary/central)
"byu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -42915,7 +42932,7 @@
name = "Vault Door";
req_access_txt = "53"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/electricshock{
@@ -42940,7 +42957,7 @@
/turf/open/floor/plasteel/dark,
/area/security/nuke_storage)
"byw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -42952,7 +42969,7 @@
/obj/machinery/nuclearbomb/selfdestruct{
layer = 2
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -42971,20 +42988,20 @@
/turf/open/floor/plasteel/dark,
/area/security/nuke_storage)
"byy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/circuit/green,
/area/security/nuke_storage)
"byz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 4;
name = "Vault APC";
areastring = "/area/security/nuke_storage";
- pixel_x = 26
+ pixel_x = 24
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -43003,7 +43020,7 @@
pixel_y = 28
},
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -43012,10 +43029,10 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"byE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -43143,14 +43160,14 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"byO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
/area/security/main)
"byP" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -43167,7 +43184,7 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"byQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -43223,7 +43240,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"byT" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
@@ -43239,7 +43256,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"byU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43248,17 +43265,17 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"byV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"byW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43267,13 +43284,13 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"byX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/ai_slipper{
@@ -43285,10 +43302,10 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"byY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43297,7 +43314,7 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"byZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43307,7 +43324,7 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bza" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43473,7 +43490,7 @@
/area/engine/break_room)
"bzr" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -43500,7 +43517,7 @@
/obj/machinery/status_display/evac{
pixel_x = -32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/modular_computer/console/preset/engineering{
@@ -43514,10 +43531,10 @@
},
/area/engine/atmos)
"bzu" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -43533,19 +43550,19 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bzv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/holopad,
/obj/effect/landmark/start/atmospheric_technician,
/obj/effect/turf_decal/bot,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/engine/atmos)
"bzw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -43562,10 +43579,10 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bzx" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -43575,10 +43592,10 @@
/area/engine/atmos)
"bzy" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/item/folder/yellow,
@@ -43608,7 +43625,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -43641,13 +43658,13 @@
/area/hallway/primary/port)
"bzC" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/highsecurity{
@@ -43668,10 +43685,10 @@
/turf/closed/wall/r_wall,
/area/storage/tech)
"bzE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -43684,7 +43701,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"bzF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43698,7 +43715,7 @@
/area/maintenance/port/fore)
"bzG" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43715,10 +43732,10 @@
/area/maintenance/port/fore)
"bzH" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43734,7 +43751,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43749,7 +43766,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/fore)
"bzJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -43762,10 +43779,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bzK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43815,7 +43832,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bzN" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
@@ -43831,10 +43848,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bzO" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -43863,7 +43880,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bzQ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/turf_decal/tile/neutral{
@@ -43879,7 +43896,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bzR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -43895,7 +43912,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bzS" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/neutral{
@@ -43942,17 +43959,17 @@
/area/hallway/primary/central)
"bzW" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/primary/central)
"bzX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -44005,7 +44022,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"bAg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -44086,7 +44103,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bAm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -44138,7 +44155,7 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"bAp" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -44173,7 +44190,7 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"bAr" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -44191,20 +44208,20 @@
/area/security/main)
"bAs" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
/area/security/main)
"bAt" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -44220,7 +44237,7 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"bAu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/item/radio/intercom{
@@ -44322,7 +44339,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bAA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -44348,7 +44365,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bAC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -44383,7 +44400,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bAE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -44392,7 +44409,7 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bAF" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -44456,7 +44473,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/gravity_generator)
"bAJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -44544,7 +44561,7 @@
"bAT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/bot,
@@ -44606,7 +44623,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bAY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -44668,7 +44685,7 @@
},
/area/engine/atmos)
"bBb" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
@@ -44685,7 +44702,7 @@
/area/engine/atmos)
"bBc" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -44754,7 +44771,7 @@
/area/hallway/primary/port)
"bBh" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -44818,7 +44835,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bBm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -44853,7 +44870,7 @@
"bBp" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -44896,7 +44913,7 @@
"bBt" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/plasticflaps/opaque,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -44928,7 +44945,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bBw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -45021,7 +45038,7 @@
/area/bridge)
"bBE" = (
/obj/machinery/computer/cargo/request,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/yellow{
@@ -45056,7 +45073,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bBH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -45073,7 +45090,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bBI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/beacon,
@@ -45104,7 +45121,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bBK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -45148,7 +45165,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bBN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/modular_computer/console/preset/command,
@@ -45274,10 +45291,10 @@
/turf/open/floor/plasteel/dark,
/area/security/nuke_storage)
"bBY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -45366,7 +45383,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bCf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -45412,7 +45429,7 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"bCj" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -45461,7 +45478,7 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"bCl" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -45489,7 +45506,7 @@
/turf/open/floor/plating,
/area/security/main)
"bCn" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -45554,7 +45571,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bCr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -45569,7 +45586,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai)
"bCu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit/green,
@@ -45634,7 +45651,7 @@
/area/engine/gravity_generator)
"bCA" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -45697,10 +45714,10 @@
name = "Power Tools Storage";
req_access_txt = "19"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -45727,10 +45744,10 @@
name = "Power Tools Storage";
req_access_txt = "19"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -45745,7 +45762,7 @@
/turf/open/floor/plasteel,
/area/engine/storage_shared)
"bCJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -45806,7 +45823,7 @@
/area/engine/storage_shared)
"bCO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -45891,9 +45908,9 @@
dir = 1;
name = "Engineering Foyer APC";
areastring = "/area/engine/break_room";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -45908,7 +45925,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bCV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -45923,10 +45940,10 @@
},
/area/engine/break_room)
"bCW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -46025,7 +46042,7 @@
/turf/open/floor/plasteel/dark/corner,
/area/engine/atmos)
"bDd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -46086,7 +46103,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bDh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -46189,7 +46206,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"bDq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -46307,10 +46324,10 @@
/turf/closed/wall,
/area/storage/primary)
"bDv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46332,7 +46349,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bDw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46348,10 +46365,10 @@
/area/hallway/primary/central)
"bDx" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -46367,7 +46384,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -46383,7 +46400,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46405,7 +46422,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -46432,13 +46449,13 @@
/area/bridge)
"bDA" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -46464,7 +46481,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46483,7 +46500,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -46503,10 +46520,10 @@
/area/bridge)
"bDD" = (
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/light{
@@ -46531,10 +46548,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDE" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -46553,16 +46570,16 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDF" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46581,10 +46598,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46596,7 +46613,7 @@
/area/bridge)
"bDH" = (
/obj/structure/window/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46609,7 +46626,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/window/brigdoor/southright{
@@ -46627,13 +46644,13 @@
/area/bridge)
"bDJ" = (
/obj/structure/window/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46646,10 +46663,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -46659,13 +46676,13 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDL" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -46684,10 +46701,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDM" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46706,7 +46723,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46727,10 +46744,10 @@
/area/bridge)
"bDO" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -46756,7 +46773,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -46780,10 +46797,10 @@
/area/bridge)
"bDQ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -46796,7 +46813,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -46812,7 +46829,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bDR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -46824,10 +46841,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bDS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -46882,7 +46899,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"bDX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -46965,7 +46982,7 @@
/turf/closed/wall,
/area/security/brig)
"bEd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/security{
@@ -47031,7 +47048,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bEh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/ai_slipper{
@@ -47119,7 +47136,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bEl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/ai_slipper{
@@ -47195,10 +47212,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -47210,7 +47227,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -47219,26 +47236,26 @@
/obj/machinery/holopad,
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bEs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bEt" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -47250,7 +47267,7 @@
name = "Gravity Generator Room";
req_access_txt = "19;23"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -47265,16 +47282,16 @@
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bEv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -47283,14 +47300,14 @@
"bEw" = (
/obj/machinery/holopad,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bEx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -47301,7 +47318,7 @@
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"bEy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47311,7 +47328,7 @@
/area/engine/storage_shared)
"bEz" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/highsecurity{
@@ -47334,7 +47351,7 @@
/turf/open/floor/plasteel,
/area/engine/storage_shared)
"bEA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47347,7 +47364,7 @@
/turf/open/floor/plasteel,
/area/engine/storage_shared)
"bEB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47366,7 +47383,7 @@
/turf/open/floor/plasteel,
/area/engine/storage_shared)
"bEC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -47383,13 +47400,13 @@
/turf/open/floor/plasteel,
/area/engine/storage_shared)
"bED" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -47403,7 +47420,7 @@
},
/area/engine/storage_shared)
"bEE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -47414,7 +47431,7 @@
/turf/open/floor/plasteel,
/area/engine/storage_shared)
"bEF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers,
@@ -47427,7 +47444,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bEG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47437,7 +47454,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bEH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -47453,7 +47470,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bEI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -47473,7 +47490,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bEJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47493,7 +47510,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bEK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47512,7 +47529,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bEL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -47531,10 +47548,10 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bEM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -47572,7 +47589,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -47657,17 +47674,17 @@
dir = 8;
name = "Primary Tool Storage APC";
areastring = "/area/storage/primary";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/storage/primary)
"bEX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -47682,7 +47699,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"bEY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -47697,7 +47714,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"bEZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -47712,7 +47729,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"bFa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -47774,7 +47791,7 @@
/area/hallway/primary/central)
"bFh" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -47842,7 +47859,7 @@
/area/bridge)
"bFk" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -47912,7 +47929,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bFn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -47951,7 +47968,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bFp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -48016,7 +48033,7 @@
/area/bridge)
"bFu" = (
/obj/machinery/computer/communications,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -48070,7 +48087,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bFz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -48124,7 +48141,7 @@
/area/bridge)
"bFC" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -48160,7 +48177,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bFE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -48189,7 +48206,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bFG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -48200,10 +48217,10 @@
/turf/open/floor/plating,
/area/security/execution/transfer)
"bFH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/door/airlock/security/glass{
@@ -48220,7 +48237,7 @@
/turf/open/floor/plasteel,
/area/security/execution/transfer)
"bFI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -48228,7 +48245,7 @@
/turf/open/floor/plating,
/area/security/execution/transfer)
"bFJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -48297,7 +48314,7 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"bFP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -48487,7 +48504,7 @@
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
"bGd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -48638,7 +48655,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bGq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -48761,7 +48778,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -48778,7 +48795,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bGA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -48920,7 +48937,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"bGN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -49028,7 +49045,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bGW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -49058,7 +49075,7 @@
dir = 2;
name = "Bridge APC";
areastring = "/area/bridge";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/tile/blue,
/obj/effect/turf_decal/tile/blue{
@@ -49125,7 +49142,7 @@
color = "#596479";
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -49198,7 +49215,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bHl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -49260,7 +49277,7 @@
/turf/closed/wall/r_wall,
/area/security/detectives_office)
"bHs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -49304,7 +49321,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bHw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -49351,7 +49368,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bHz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -49368,10 +49385,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bHB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49391,7 +49408,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bHC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49403,7 +49420,7 @@
/area/security/brig)
"bHD" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/security{
@@ -49423,7 +49440,7 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bHE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49442,10 +49459,10 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"bHF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49464,7 +49481,7 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"bHG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/blobstart,
@@ -49484,7 +49501,7 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"bHH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -49500,13 +49517,13 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"bHI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/door/airlock/security/glass{
@@ -49525,7 +49542,7 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bHJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -49535,7 +49552,7 @@
/area/security/warden)
"bHK" = (
/obj/structure/tank_dispenser/oxygen,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -49551,7 +49568,7 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"bHL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -49659,7 +49676,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -49756,10 +49773,10 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bId" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -49775,7 +49792,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bIe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -49792,7 +49809,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bIf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -49808,7 +49825,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bIg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow,
@@ -49820,7 +49837,7 @@
"bIh" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
@@ -49839,7 +49856,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bIi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -49847,7 +49864,7 @@
/area/engine/break_room)
"bIk" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -49856,17 +49873,17 @@
"bIl" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
name = "Engineering Foyer";
req_one_access_txt = "32;19"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -49882,7 +49899,7 @@
/area/engine/break_room)
"bIm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -49894,13 +49911,13 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bIn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -49927,7 +49944,7 @@
/area/hallway/primary/port)
"bIp" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/item/folder/yellow,
@@ -49936,7 +49953,7 @@
dir = 8;
name = "Technology Storage APC";
areastring = "/area/storage/tech";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/effect/turf_decal/tile/neutral{
@@ -49952,7 +49969,7 @@
/turf/open/floor/plasteel/dark,
/area/storage/tech)
"bIq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -49965,7 +49982,7 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bIr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -49984,10 +50001,10 @@
/turf/open/floor/plasteel,
/area/storage/tech)
"bIs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -50058,7 +50075,7 @@
/area/storage/tech)
"bIw" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -50171,7 +50188,7 @@
/area/bridge/meeting_room/council)
"bIJ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/command{
@@ -50263,7 +50280,7 @@
/turf/open/floor/carpet,
/area/bridge)
"bIQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -50336,7 +50353,7 @@
name = "Captain's Office";
req_access_txt = "20"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -50347,7 +50364,7 @@
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/captain)
"bIZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -50362,7 +50379,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -50375,7 +50392,7 @@
/area/maintenance/starboard)
"bJb" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -50388,23 +50405,23 @@
/area/maintenance/starboard)
"bJc" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
"bJd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"bJe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -50412,7 +50429,7 @@
"bJf" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -50445,10 +50462,10 @@
/area/security/detectives_office)
"bJh" = (
/obj/structure/closet/secure_closet/detective,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/clothing/head/fedora/det_hat{
@@ -50474,7 +50491,7 @@
/area/security/detectives_office)
"bJi" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/item/book/manual/wiki/security_space_law,
@@ -50493,14 +50510,14 @@
/area/security/detectives_office)
"bJj" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Detective's Office APC";
areastring = "/area/security/detectives_office";
- pixel_y = 24
+ pixel_y = 23
},
/obj/item/taperecorder,
/obj/item/restraints/handcuffs,
@@ -50518,7 +50535,7 @@
/area/security/detectives_office)
"bJk" = (
/obj/structure/filingcabinet/security,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -50534,10 +50551,10 @@
/turf/open/floor/plasteel/dark,
/area/security/detectives_office)
"bJl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/trunk,
@@ -50645,13 +50662,13 @@
/area/hallway/primary/starboard)
"bJs" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -50662,7 +50679,7 @@
/turf/open/floor/plating,
/area/security/brig)
"bJt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/event_spawn,
@@ -50675,7 +50692,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bJu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -50685,13 +50702,13 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bJv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/window/brigdoor/security/cell/westright{
@@ -50707,17 +50724,17 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bJw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
"bJx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -50759,7 +50776,7 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"bJA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -50819,7 +50836,7 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"bJF" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -50838,7 +50855,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bJG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -50881,7 +50898,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bJJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -50891,7 +50908,7 @@
dir = 1;
name = "AI Chamber APC";
areastring = "/area/ai_monitored/turret_protected/ai";
- pixel_y = 24
+ pixel_y = 23
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -50920,7 +50937,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bJL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -50929,7 +50946,7 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bJM" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -50964,7 +50981,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bJO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/hatch{
@@ -51125,7 +51142,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/chief)
"bJW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -51227,7 +51244,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bKd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -51328,7 +51345,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bKn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -51467,19 +51484,19 @@
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
"bKC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc/highcap/ten_k{
dir = 1;
name = "Council Chambers APC";
areastring = "/area/bridge/meeting_room/council";
- pixel_y = 26
+ pixel_y = 23
},
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
"bKD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -51488,7 +51505,7 @@
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
"bKE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/light_switch{
@@ -51518,7 +51535,7 @@
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
"bKJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -51559,7 +51576,7 @@
pixel_x = -26;
pixel_y = 26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51654,7 +51671,7 @@
name = "Auxiliary Tool Storage Maintenance";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -51667,7 +51684,7 @@
/area/maintenance/starboard)
"bKX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -51677,7 +51694,7 @@
name = "Detective's Office Maintenance";
req_access_txt = "4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -51693,7 +51710,7 @@
pixel_x = -26;
pixel_y = 32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -51709,10 +51726,10 @@
/turf/open/floor/plasteel/dark,
/area/security/detectives_office)
"bLa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -51731,7 +51748,7 @@
/turf/open/floor/plasteel/dark,
/area/security/detectives_office)
"bLb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51740,13 +51757,13 @@
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"bLc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51755,7 +51772,7 @@
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"bLd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -51764,7 +51781,7 @@
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"bLe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/reagent_dispensers/peppertank{
@@ -51893,7 +51910,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bLo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -51924,7 +51941,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bLq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -51932,10 +51949,10 @@
/area/security/warden)
"bLr" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/security/glass{
@@ -52052,20 +52069,20 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bLy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bLz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bLA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/ai_slipper{
@@ -52074,17 +52091,17 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bLB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai)
"bLC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/circuit/green,
@@ -52158,7 +52175,7 @@
dir = 1;
name = "Transit Tube Access APC";
areastring = "/area/engine/transit_tube";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/turf_decal/tile/neutral{
@@ -52174,7 +52191,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/transit_tube)
"bLJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -52268,7 +52285,7 @@
},
/area/crew_quarters/heads/chief)
"bLP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -52287,10 +52304,10 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/chief)
"bLQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/firedoor,
@@ -52298,7 +52315,7 @@
name = "Chief Engineer's Office";
req_access_txt = "56"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -52317,7 +52334,7 @@
id = "ceblast";
name = "Chief's Lockdown Shutters"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -52332,7 +52349,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bLS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -52342,7 +52359,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bLT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -52360,7 +52377,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bLU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -52382,7 +52399,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bLV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -52404,7 +52421,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bLW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -52426,10 +52443,10 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bLX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -52451,10 +52468,10 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bLY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -52486,7 +52503,7 @@
/turf/closed/wall,
/area/security/checkpoint/engineering)
"bMb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -52496,10 +52513,10 @@
/turf/open/floor/plating,
/area/security/checkpoint/engineering)
"bMc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -52523,7 +52540,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bMd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -52631,7 +52648,7 @@
/turf/open/floor/plasteel,
/area/storage/primary)
"bMm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -52669,7 +52686,7 @@
/turf/open/floor/carpet,
/area/bridge/meeting_room/council)
"bMr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/chair/comfy/brown,
@@ -52679,7 +52696,7 @@
/turf/open/floor/carpet,
/area/bridge/meeting_room/council)
"bMs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/chair/comfy/black,
@@ -52764,10 +52781,10 @@
dir = 1;
name = "Telecomms Monitoring APC";
areastring = "/area/tcommsat/computer";
- pixel_y = 28
+ pixel_y = 23
},
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -52788,7 +52805,7 @@
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bMB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -52874,7 +52891,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bMJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -52914,7 +52931,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bMP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -52948,7 +52965,7 @@
/turf/open/floor/plasteel,
/area/storage/tools)
"bMS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -52958,7 +52975,7 @@
dir = 1;
name = "Auxiliary Tool Storage APC";
areastring = "/area/storage/tools";
- pixel_y = 24
+ pixel_y = 23
},
/obj/effect/turf_decal/tile/yellow{
dir = 1
@@ -52966,7 +52983,7 @@
/turf/open/floor/plasteel,
/area/storage/tools)
"bMT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -53044,10 +53061,10 @@
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"bNa" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -53099,7 +53116,7 @@
/turf/closed/wall/r_wall,
/area/security/detectives_office)
"bNf" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -53202,7 +53219,7 @@
pixel_x = -32;
pixel_y = 32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -53217,10 +53234,10 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bNn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -53475,7 +53492,7 @@
/turf/open/floor/plasteel/dark,
/area/aisat)
"bND" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53494,7 +53511,7 @@
/turf/open/floor/plasteel/dark,
/area/aisat)
"bNE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/hatch{
@@ -53518,7 +53535,7 @@
/area/aisat)
"bNF" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53528,7 +53545,7 @@
/area/space/nearstation)
"bNG" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53538,7 +53555,7 @@
/area/space/nearstation)
"bNH" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53547,7 +53564,7 @@
/turf/open/space,
/area/space/nearstation)
"bNI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53573,7 +53590,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/transit_tube)
"bNJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53592,7 +53609,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/transit_tube)
"bNK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53618,7 +53635,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/transit_tube)
"bNL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -53635,7 +53652,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/transit_tube)
"bNM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53745,7 +53762,7 @@
},
/area/crew_quarters/heads/chief)
"bNT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -53843,7 +53860,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bOb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -53883,7 +53900,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bOf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -53935,7 +53952,7 @@
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
"bOk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -54012,7 +54029,7 @@
"bOo" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -54079,10 +54096,10 @@
/area/storage/primary)
"bOv" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -54093,7 +54110,7 @@
/turf/open/floor/plating,
/area/bridge/meeting_room/council)
"bOw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/photocopier,
@@ -54101,7 +54118,7 @@
/area/bridge/meeting_room/council)
"bOx" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
@@ -54110,14 +54127,14 @@
/obj/structure/chair/comfy/brown{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/carpet,
/area/bridge/meeting_room/council)
"bOz" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/folder/blue,
@@ -54126,10 +54143,10 @@
/area/bridge/meeting_room/council)
"bOA" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/item/folder/red,
@@ -54138,10 +54155,10 @@
/area/bridge/meeting_room/council)
"bOB" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/item/folder/yellow,
@@ -54204,13 +54221,13 @@
/turf/open/floor/plasteel/dark,
/area/tcommsat/computer)
"bOH" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bOI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -54219,7 +54236,7 @@
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bOJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -54228,11 +54245,11 @@
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bOK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/grimy,
@@ -54250,7 +54267,7 @@
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bON" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/grimy,
@@ -54294,10 +54311,10 @@
/area/crew_quarters/heads/captain)
"bOR" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -54305,14 +54322,14 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bOS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/event_spawn,
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bOT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -54322,7 +54339,7 @@
/obj/structure/chair/comfy/brown{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
@@ -54336,7 +54353,7 @@
pixel_x = -3
},
/obj/item/clothing/mask/cigarette/cigar,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/grimy,
@@ -54370,7 +54387,7 @@
/turf/open/floor/plasteel,
/area/storage/tools)
"bOY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -54389,7 +54406,7 @@
/turf/open/floor/plasteel,
/area/storage/tools)
"bOZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -54492,10 +54509,10 @@
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"bPh" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -54508,7 +54525,7 @@
/turf/open/floor/carpet,
/area/security/detectives_office)
"bPj" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/detective,
@@ -54607,7 +54624,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bPr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -54632,7 +54649,7 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bPt" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/warden,
@@ -54645,10 +54662,10 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bPu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -54668,7 +54685,7 @@
/obj/machinery/computer/secure_data{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -54681,7 +54698,7 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bPw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -54836,7 +54853,7 @@
/area/aisat)
"bPK" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -54971,7 +54988,7 @@
/area/crew_quarters/heads/chief)
"bPT" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/item/folder/blue{
@@ -54996,7 +55013,7 @@
/obj/structure/chair/office/light{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -55011,10 +55028,10 @@
},
/area/crew_quarters/heads/chief)
"bPV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/light{
@@ -55048,7 +55065,7 @@
/area/engine/break_room)
"bPZ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -55076,7 +55093,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bQc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/cable/white,
@@ -55131,7 +55148,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -55330,7 +55347,7 @@
/turf/open/floor/carpet,
/area/bridge/meeting_room/council)
"bQC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/chair/comfy/brown{
@@ -55391,7 +55408,7 @@
/turf/open/floor/plasteel/dark,
/area/tcommsat/computer)
"bQI" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/grimy,
@@ -55404,7 +55421,7 @@
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bQL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -55414,7 +55431,7 @@
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bQN" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bQO" = (
@@ -55472,7 +55489,7 @@
/area/crew_quarters/heads/captain)
"bQS" = (
/obj/structure/chair/comfy/brown,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -55499,7 +55516,7 @@
dir = 2;
name = "Captain's Office APC";
areastring = "/area/crew_quarters/heads/captain";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/white,
/turf/open/floor/wood,
@@ -55642,33 +55659,33 @@
/turf/open/floor/plasteel/dark,
/area/security/detectives_office)
"bRh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"bRi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"bRj" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/item/paper_bin,
@@ -55703,7 +55720,7 @@
/turf/open/floor/carpet,
/area/security/detectives_office)
"bRm" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/turf_decal/tile/neutral{
@@ -55736,7 +55753,7 @@
/turf/open/floor/plasteel/dark,
/area/security/detectives_office)
"bRo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -55748,13 +55765,13 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bRp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/window/brigdoor/security/cell/westright{
@@ -55773,7 +55790,7 @@
/obj/structure/table/reinforced,
/obj/item/paper_bin,
/obj/item/pen,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -55785,13 +55802,13 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bRr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -55811,7 +55828,7 @@
/obj/machinery/computer/security{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -55910,7 +55927,7 @@
/area/ai_monitored/turret_protected/aisat_interior)
"bRz" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/portable_atmospherics/canister/air,
@@ -55926,7 +55943,7 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/light{
@@ -56108,7 +56125,7 @@
/area/space/nearstation)
"bRT" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -56118,7 +56135,7 @@
/area/space/nearstation)
"bRU" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -56192,7 +56209,7 @@
/area/crew_quarters/heads/chief)
"bSa" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/clipboard,
@@ -56225,7 +56242,7 @@
},
/area/crew_quarters/heads/chief)
"bSc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
@@ -56308,7 +56325,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bSj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -56331,17 +56348,17 @@
/turf/closed/wall,
/area/engine/engineering)
"bSm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/engineering)
"bSn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor{
@@ -56363,7 +56380,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bSo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -56391,7 +56408,7 @@
/area/storage/tech)
"bSs" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -56502,7 +56519,7 @@
/turf/open/floor/wood,
/area/bridge/meeting_room/council)
"bSB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -56612,7 +56629,7 @@
/obj/item/folder/blue,
/obj/item/pen/fourcolor,
/obj/item/stamp/captain,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -56712,7 +56729,7 @@
name = "Detective's Office";
req_access_txt = "4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -56731,7 +56748,7 @@
name = "Detective Privacy Blast door"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -56743,7 +56760,7 @@
name = "Detective Privacy Blast door"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -56792,7 +56809,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bTe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -56831,10 +56848,10 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bTg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -56854,14 +56871,14 @@
/obj/machinery/computer/prisoner{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 4;
name = "Warden's Office APC";
areastring = "/area/security/warden";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Security - Warden's Office";
@@ -57031,7 +57048,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
"bTp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -57154,7 +57171,6 @@
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/aisat_interior";
enabled = 1;
- icon_state = "control_standby";
name = "Antechamber Turret Control";
pixel_x = -32;
req_access = null;
@@ -57348,7 +57364,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/transit_tube)
"bTM" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/flasher{
@@ -57446,7 +57462,7 @@
/area/crew_quarters/heads/chief)
"bTR" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/cartridge/engineering{
@@ -57486,7 +57502,7 @@
},
/area/crew_quarters/heads/chief)
"bTT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57505,13 +57521,13 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/chief)
"bTU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -57531,7 +57547,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"bTV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57550,7 +57566,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/chief)
"bTW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57559,10 +57575,10 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/chief)
"bTX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/chief_engineer,
@@ -57572,7 +57588,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/chief)
"bTY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -57584,7 +57600,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"bTZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -57603,7 +57619,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bUb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/beacon,
@@ -57631,7 +57647,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bUd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -57644,7 +57660,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"bUe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -57667,7 +57683,7 @@
dir = 1;
name = "Security Post - Engineering APC";
areastring = "/area/security/checkpoint/engineering";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -57680,7 +57696,7 @@
pixel_x = 7;
pixel_y = 36
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/red{
@@ -57704,7 +57720,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bUh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -57743,10 +57759,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bUj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -57765,7 +57781,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -57778,7 +57794,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -57793,7 +57809,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -57805,7 +57821,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -57818,7 +57834,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -57827,11 +57843,11 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -57840,7 +57856,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57852,7 +57868,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57864,7 +57880,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -57876,10 +57892,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -57889,7 +57905,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -57907,7 +57923,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57923,7 +57939,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -57933,7 +57949,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -57946,7 +57962,7 @@
/area/hallway/primary/port)
"bUy" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57964,10 +57980,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bUz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57996,7 +58012,7 @@
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hop)
"bUC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -58045,7 +58061,7 @@
/turf/open/floor/plating,
/area/tcommsat/server)
"bUK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -58090,7 +58106,7 @@
color = "#c45c57";
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/captain,
@@ -58260,7 +58276,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bVb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -58413,7 +58429,7 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bVm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -58447,7 +58463,7 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bVo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -58469,12 +58485,12 @@
/area/ai_monitored/security/armory)
"bVq" = (
/obj/structure/rack,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler{
pixel_x = -3;
pixel_y = 3
},
-/obj/item/gun/energy/e_gun/advtaser,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler,
+/obj/item/gun/energy/disabler{
pixel_x = 3;
pixel_y = -3
},
@@ -58584,7 +58600,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -58600,13 +58616,13 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -58622,7 +58638,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/holopad,
@@ -58640,7 +58656,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -58659,7 +58675,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -58681,7 +58697,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -58711,7 +58727,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -58730,41 +58746,41 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
"bVD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
"bVE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/mob/living/simple_animal/bot/secbot/pingsky,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
"bVF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
"bVG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -58773,7 +58789,7 @@
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
"bVH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -58789,7 +58805,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -58813,7 +58829,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/ai_slipper{
@@ -58832,7 +58848,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -58849,7 +58865,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -58868,7 +58884,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -58892,7 +58908,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bVN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -58908,7 +58924,7 @@
/turf/open/floor/plasteel/dark,
/area/aisat)
"bVO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -58927,7 +58943,7 @@
/turf/open/floor/plasteel/dark,
/area/aisat)
"bVP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -58946,7 +58962,7 @@
/turf/open/floor/plasteel/dark,
/area/aisat)
"bVQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/beacon,
@@ -58963,7 +58979,7 @@
/turf/open/floor/plasteel/dark,
/area/aisat)
"bVR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/holopad,
@@ -58980,7 +58996,7 @@
/turf/open/floor/plasteel/dark,
/area/aisat)
"bVT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -59191,7 +59207,7 @@
},
/area/crew_quarters/heads/chief)
"bWi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -59251,7 +59267,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/chief)
"bWo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -59277,7 +59293,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bWr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -59305,24 +59321,24 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bWt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/engine/engineering)
"bWu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -59335,11 +59351,11 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bWv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -59355,8 +59371,8 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bWw" = (
-/obj/structure/chair/office/dark,
-/obj/structure/cable/white{
+/obj/structure/chair/office,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -59372,10 +59388,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bWx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -59415,7 +59431,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/port)
"bWA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/navbeacon{
@@ -59579,7 +59595,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bWM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/navbeacon{
@@ -59690,7 +59706,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"bWT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -59737,7 +59753,7 @@
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bWZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -59787,7 +59803,7 @@
pixel_x = 26;
pixel_y = -26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -59851,10 +59867,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bXk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/navbeacon{
@@ -59874,7 +59890,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bXl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -59896,7 +59912,7 @@
/area/hallway/primary/central)
"bXm" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/public/glass{
@@ -59911,7 +59927,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -59927,7 +59943,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/event_spawn,
@@ -59945,7 +59961,7 @@
/area/hallway/primary/starboard)
"bXp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -59962,7 +59978,7 @@
/area/hallway/primary/starboard)
"bXq" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -59978,7 +59994,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -59991,10 +60007,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -60010,10 +60026,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -60029,7 +60045,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -60046,7 +60062,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -60065,10 +60081,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -60086,7 +60102,7 @@
/area/hallway/primary/starboard)
"bXy" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -60099,7 +60115,7 @@
/area/hallway/primary/starboard)
"bXz" = (
/obj/item/beacon,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/navbeacon{
@@ -60123,7 +60139,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bXA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -60139,7 +60155,7 @@
/area/hallway/primary/starboard)
"bXB" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -60164,10 +60180,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bXC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -60182,10 +60198,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bXD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -60203,7 +60219,7 @@
/area/security/brig)
"bXE" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -60228,7 +60244,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bXF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -60241,10 +60257,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bXG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -60276,7 +60292,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bXI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -60302,10 +60318,10 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bXK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -60322,7 +60338,7 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bXL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -60336,13 +60352,13 @@
/area/security/warden)
"bXM" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/security{
@@ -60361,7 +60377,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"bXN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -60373,7 +60389,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"bXO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -60395,7 +60411,7 @@
pixel_x = 3;
pixel_y = -3
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -60409,7 +60425,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"bXQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -60490,7 +60506,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -60584,7 +60600,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"bYb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -60598,7 +60614,7 @@
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
"bYd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -60705,7 +60721,7 @@
dir = 2;
name = "AI Satellite Exterior APC";
areastring = "/area/aisat";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -60880,7 +60896,7 @@
dir = 2;
name = "Chief Engineer's APC";
areastring = "/area/crew_quarters/heads/chief";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -60927,7 +60943,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/chief)
"bYx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -60939,10 +60955,10 @@
/area/crew_quarters/heads/chief)
"bYy" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -60972,7 +60988,7 @@
/area/engine/engineering)
"bYA" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -60994,7 +61010,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"bYD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -61044,7 +61060,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bYG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/computer/secure_data{
@@ -61091,7 +61107,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -61273,7 +61289,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hop)
"bYZ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/head_of_personnel,
@@ -61297,7 +61313,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hop)
"bZc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -61344,7 +61360,7 @@
/turf/open/floor/plasteel/white/telecomms,
/area/tcommsat/server)
"bZi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -61400,7 +61416,7 @@
name = "Captain's Quarters";
req_access_txt = "20"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -61520,7 +61536,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bZy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -61529,7 +61545,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral,
@@ -61546,9 +61562,9 @@
dir = 2;
name = "Starboard Primary Hallway APC";
areastring = "/area/hallway/primary/starboard";
- pixel_y = -26
+ pixel_y = -23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -61577,7 +61593,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bZD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -61658,7 +61674,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
"bZK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -61669,7 +61685,7 @@
/turf/open/floor/plating,
/area/security/brig)
"bZL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -61679,7 +61695,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bZM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -61690,17 +61706,17 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bZN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/brig)
"bZO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/landmark/event_spawn,
@@ -61717,7 +61733,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"bZP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -61726,13 +61742,13 @@
/area/security/brig)
"bZQ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -61742,7 +61758,7 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bZR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -61751,10 +61767,10 @@
/turf/open/floor/plasteel,
/area/security/warden)
"bZS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/button/door{
@@ -61804,7 +61820,7 @@
/area/security/warden)
"bZU" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/security{
@@ -61828,7 +61844,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"bZX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -61867,7 +61883,7 @@
dir = 2;
name = "MiniSat APC";
areastring = "/area/ai_monitored/turret_protected/aisat_interior";
- pixel_y = -27
+ pixel_y = -23
},
/obj/structure/cable/white,
/obj/effect/turf_decal/stripes/line{
@@ -61955,7 +61971,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"cag" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -62177,7 +62193,7 @@
/area/engine/engineering)
"cax" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -62202,7 +62218,7 @@
/turf/closed/wall,
/area/engine/engineering)
"caz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -62237,7 +62253,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/yellow,
@@ -62330,7 +62346,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"caM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -62344,7 +62360,7 @@
/obj/machinery/computer/card{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -62360,23 +62376,23 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hop)
"caO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"caP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hop)
"caQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/grimy,
@@ -62433,7 +62449,7 @@
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"caX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -62499,7 +62515,7 @@
pixel_x = 26;
pixel_y = 26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -62588,7 +62604,7 @@
name = "Courtroom";
req_access_txt = "42"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -62608,7 +62624,7 @@
/area/lawoffice)
"cbr" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock{
@@ -62774,7 +62790,7 @@
/turf/open/floor/plasteel,
/area/security/warden)
"cbE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -62838,7 +62854,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"cbJ" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -62853,7 +62869,7 @@
dir = 2;
name = "Armoury APC";
areastring = "/area/ai_monitored/security/armory";
- pixel_y = -26
+ pixel_y = -23
},
/obj/machinery/camera{
c_tag = "Armory - Interior";
@@ -62862,6 +62878,9 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/e_gun/dragnet,
+/obj/item/gun/energy/e_gun/dragnet,
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
"cbL" = (
@@ -62894,7 +62913,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
"cbM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -62924,7 +62943,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cbO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/grille,
@@ -62932,7 +62951,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cbP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/grille,
@@ -62940,7 +62959,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cbQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/grille,
@@ -62950,7 +62969,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cbR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/grille,
@@ -62958,10 +62977,10 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cbS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/grille,
@@ -62969,7 +62988,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cbT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/grille,
@@ -63066,13 +63085,13 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ccc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -63085,7 +63104,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ccd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -63098,7 +63117,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cce" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -63113,13 +63132,13 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ccf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -63131,20 +63150,20 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ccg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/engine/engineering)
"cch" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/power/smes/engineering{
@@ -63153,7 +63172,7 @@
/turf/open/floor/circuit/green,
/area/engine/engineering)
"cci" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/smes/engineering{
@@ -63167,7 +63186,7 @@
req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -63305,7 +63324,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"ccx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -63347,7 +63366,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hop)
"ccB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -63365,7 +63384,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"ccD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/camera{
@@ -63387,7 +63406,7 @@
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"ccE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -63403,7 +63422,7 @@
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"ccF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -63425,7 +63444,7 @@
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"ccH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -63443,17 +63462,17 @@
/area/tcommsat/server)
"ccI" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/folder/yellow,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"ccJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
@@ -63474,7 +63493,7 @@
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"ccL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -63500,7 +63519,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain/private)
"ccN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -63700,7 +63719,7 @@
pixel_x = 26;
pixel_y = 26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -63748,7 +63767,7 @@
/turf/open/floor/wood,
/area/lawoffice)
"cdi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -63819,7 +63838,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cdo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -63856,10 +63875,10 @@
"cdq" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/door/window/brigdoor/northright{
@@ -63960,7 +63979,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"cdy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -64029,7 +64048,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cdE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/grille,
@@ -64039,7 +64058,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cdF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/grille,
@@ -64049,7 +64068,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cdG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -64064,7 +64083,7 @@
req_access_txt = "10; 13"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -64077,7 +64096,7 @@
/area/engine/engineering)
"cdI" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -64095,7 +64114,7 @@
req_access_txt = "10; 13"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -64110,7 +64129,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cdK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -64123,7 +64142,7 @@
/area/engine/engineering)
"cdL" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -64142,7 +64161,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cdM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -64161,7 +64180,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cdN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -64177,7 +64196,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cdO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -64193,7 +64212,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cdP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -64213,11 +64232,11 @@
/area/engine/engineering)
"cdQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -64269,13 +64288,13 @@
/area/engine/engineering)
"cdT" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -64285,10 +64304,10 @@
/area/engine/engineering)
"cdU" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/airlock/engineering/glass{
@@ -64377,7 +64396,7 @@
"cdZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -64432,7 +64451,7 @@
/turf/open/floor/plasteel/dark,
/area/library)
"cef" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/librarian,
@@ -64489,7 +64508,7 @@
/turf/open/floor/plasteel/dark,
/area/library)
"cek" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -64536,7 +64555,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cep" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -64553,13 +64572,13 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hop)
"ceq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -64569,9 +64588,9 @@
dir = 4;
name = "HoP Office APC";
areastring = "/area/crew_quarters/heads/hop";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -64591,7 +64610,7 @@
dir = 8;
name = "Telecomms Server Room APC";
areastring = "/area/tcommsat/server";
- pixel_x = -26
+ pixel_x = -25
},
/obj/structure/cable/white,
/obj/effect/turf_decal/tile/neutral{
@@ -64607,7 +64626,7 @@
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"ceu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -64624,7 +64643,7 @@
/area/tcommsat/server)
"cev" = (
/obj/machinery/telecomms/broadcaster/preset_left,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -64633,7 +64652,7 @@
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cew" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -64652,8 +64671,8 @@
/turf/open/floor/plasteel/dark/telecomms,
/area/tcommsat/server)
"cex" = (
-/obj/machinery/telecomms/message_server,
-/obj/structure/cable/white{
+/obj/machinery/telecomms/message_server/preset,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
@@ -64662,7 +64681,7 @@
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"cey" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -64683,13 +64702,13 @@
/area/tcommsat/server)
"cez" = (
/obj/machinery/telecomms/hub/preset,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -64699,7 +64718,7 @@
/area/tcommsat/server)
"ceA" = (
/obj/machinery/blackbox_recorder,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
@@ -64709,7 +64728,7 @@
/area/tcommsat/server)
"ceB" = (
/obj/machinery/telecomms/broadcaster/preset_right,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -64718,13 +64737,13 @@
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"ceC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/power/terminal{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -64770,7 +64789,7 @@
/obj/structure/chair/comfy/brown{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/landmark/start/captain,
@@ -64780,7 +64799,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain/private)
"ceG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -64791,10 +64810,10 @@
/area/crew_quarters/heads/captain/private)
"ceH" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -64804,7 +64823,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
"ceI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -64817,7 +64836,7 @@
name = "Captain's Bedroom";
req_access_txt = "20"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/grimy,
@@ -64905,7 +64924,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"ceR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -64924,7 +64943,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"ceS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -64943,10 +64962,10 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"ceT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -64963,7 +64982,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"ceU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -64977,7 +64996,7 @@
/area/security/courtroom)
"ceV" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -64991,10 +65010,10 @@
/turf/open/floor/plasteel,
/area/lawoffice)
"ceW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -65003,7 +65022,7 @@
/turf/open/floor/wood,
/area/lawoffice)
"ceX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -65014,10 +65033,10 @@
/area/lawoffice)
"ceY" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -65027,7 +65046,7 @@
/turf/open/floor/plasteel/grimy,
/area/lawoffice)
"ceZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/landmark/start/lawyer,
@@ -65048,7 +65067,7 @@
/obj/machinery/computer/security{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -65063,7 +65082,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cfc" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/security_officer,
@@ -65080,7 +65099,7 @@
/obj/machinery/computer/secure_data{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/button/flasher{
@@ -65150,10 +65169,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cfh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -65173,7 +65192,7 @@
/area/security/brig)
"cfi" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -65186,7 +65205,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cfj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -65204,7 +65223,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cfk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -65219,10 +65238,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cfl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -65237,14 +65256,14 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cfm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc/highcap/ten_k{
dir = 1;
name = "Brig APC";
areastring = "/area/security/brig";
- pixel_y = 28
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -65377,7 +65396,7 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai_upload)
"cfw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -65519,7 +65538,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cfJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -65558,7 +65577,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -65568,7 +65587,7 @@
/area/engine/engineering)
"cfN" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -65597,7 +65616,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cfP" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/station_engineer,
/obj/structure/cable{
icon_state = "4-8"
@@ -65634,7 +65653,7 @@
/area/maintenance/port)
"cfS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -65750,7 +65769,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hop)
"cgf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -65809,7 +65828,7 @@
/area/tcommsat/server)
"cgm" = (
/obj/machinery/ntnet_relay,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit/green/telecomms/mainframe,
@@ -65867,7 +65886,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain/private)
"cgu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -65903,7 +65922,7 @@
dir = 2;
name = "Captain's Quarters APC";
areastring = "/area/crew_quarters/heads/captain/private";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/white,
/turf/open/floor/plasteel/grimy,
@@ -66016,7 +66035,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"cgF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -66088,7 +66107,7 @@
/obj/machinery/light{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/newscaster{
@@ -66113,7 +66132,7 @@
/turf/open/floor/plasteel/grimy,
/area/lawoffice)
"cgM" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -66125,7 +66144,7 @@
/turf/open/floor/plasteel/grimy,
/area/lawoffice)
"cgN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -66144,7 +66163,7 @@
/turf/open/floor/wood,
/area/lawoffice)
"cgP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/table/reinforced,
@@ -66178,7 +66197,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cgR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/filingcabinet/chestdrawer,
@@ -66201,20 +66220,20 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cgT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
"cgU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/window/brigdoor/security/holding/westright{
@@ -66226,7 +66245,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cgV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -66236,13 +66255,13 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cgW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -66258,7 +66277,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cgX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -66269,7 +66288,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"cgY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -66315,10 +66334,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"chb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/landmark/start/security_officer,
@@ -66338,7 +66357,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"chc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/security_officer,
@@ -66356,14 +66375,14 @@
/area/security/brig)
"chd" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/security/brig)
"che" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/security_officer,
@@ -66383,7 +66402,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"chf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -66407,7 +66426,7 @@
pixel_x = 32;
pixel_y = 32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -66431,10 +66450,10 @@
/turf/open/space,
/area/space/nearstation)
"chi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -66445,7 +66464,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai_upload)
"chj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/table/reinforced,
@@ -66477,7 +66496,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"chk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -66493,10 +66512,10 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"chl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -66505,7 +66524,7 @@
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai_upload)
"chm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -66524,13 +66543,13 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"chn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -66550,7 +66569,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"cho" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -66569,14 +66588,14 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"chp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai_upload)
"chq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/table/reinforced,
@@ -66608,10 +66627,10 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"chr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -66710,7 +66729,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"chB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -66732,7 +66751,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"chD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -66740,7 +66759,7 @@
"chE" = (
/obj/structure/cable/white,
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -66754,7 +66773,7 @@
/obj/machinery/status_display/evac{
pixel_y = -32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/camera{
@@ -66821,7 +66840,7 @@
/area/maintenance/port)
"chJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -66856,7 +66875,7 @@
/turf/open/floor/wood,
/area/library)
"chN" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/wood,
/area/library)
"chO" = (
@@ -66939,7 +66958,7 @@
/obj/machinery/computer/security/mining{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -66955,8 +66974,8 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hop)
"cia" = (
-/obj/structure/chair/office/dark,
-/obj/structure/cable/white{
+/obj/structure/chair/office,
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/head_of_personnel,
@@ -66972,7 +66991,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"cic" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit/green/telecomms/mainframe,
@@ -67060,7 +67079,7 @@
name = "Emergency Escape";
req_access_txt = "20"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -67138,7 +67157,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"ciq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -67199,7 +67218,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"ciu" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/structure/cable/white,
@@ -67207,7 +67226,7 @@
dir = 8;
name = "Law Office APC";
areastring = "/area/lawoffice";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/effect/landmark/start/lawyer,
@@ -67232,14 +67251,14 @@
/turf/open/floor/plasteel/grimy,
/area/lawoffice)
"ciw" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/lawoffice)
"cix" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -67258,7 +67277,7 @@
/turf/open/floor/wood,
/area/lawoffice)
"ciz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/table/reinforced,
@@ -67280,7 +67299,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ciA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/nanotrasen{
@@ -67300,10 +67319,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ciB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/extinguisher_cabinet{
@@ -67327,10 +67346,10 @@
name = "Security Desk";
req_access_txt = "63"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -67345,7 +67364,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ciD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -67355,7 +67374,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ciE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/chair{
@@ -67382,7 +67401,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ciG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -67446,7 +67465,7 @@
/area/security/brig)
"ciK" = (
/obj/machinery/vending/wardrobe/sec_wardrobe,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/sign/poster/official/do_not_question{
@@ -67469,7 +67488,7 @@
/obj/machinery/status_display/evac{
pixel_y = -32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/bot,
@@ -67486,10 +67505,10 @@
/obj/structure/table/reinforced,
/obj/machinery/recharger,
/obj/machinery/light,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -67503,7 +67522,7 @@
/obj/structure/sign/nanotrasen{
pixel_y = -32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -67515,7 +67534,7 @@
"ciO" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/red,
@@ -67565,7 +67584,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"ciS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -67923,7 +67942,7 @@
/area/crew_quarters/heads/hop)
"cjC" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -67961,7 +67980,7 @@
/turf/open/floor/plasteel/telecomms,
/area/tcommsat/server)
"cjG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -68018,7 +68037,7 @@
/turf/closed/wall,
/area/teleporter)
"cjM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/camera/motion{
@@ -68045,7 +68064,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"cjN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -68058,7 +68077,7 @@
/turf/open/floor/plating,
/area/teleporter)
"cjO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -68155,7 +68174,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"cka" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -68245,7 +68264,7 @@
/turf/open/floor/wood,
/area/lawoffice)
"ckh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -68262,7 +68281,7 @@
/turf/open/floor/wood,
/area/lawoffice)
"ckj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -68272,13 +68291,13 @@
/turf/open/floor/plating,
/area/security/brig)
"ckk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -68298,7 +68317,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"ckl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -68364,14 +68383,14 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"ckp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/circuit/green,
/area/ai_monitored/turret_protected/ai_upload)
"ckq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/ai_slipper{
@@ -68527,11 +68546,11 @@
/area/engine/engineering)
"ckF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -68540,7 +68559,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ckG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -68552,7 +68571,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ckH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/station_engineer,
@@ -68570,14 +68589,14 @@
/area/engine/engineering)
"ckI" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 4;
name = "Engine Room APC";
areastring = "/area/engine/engineering";
- pixel_x = 26
+ pixel_x = 24
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -68613,7 +68632,7 @@
"ckM" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -68633,7 +68652,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"ckO" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/assistant,
@@ -68687,13 +68706,13 @@
/turf/closed/wall,
/area/crew_quarters/heads/hop)
"ckW" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"ckX" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/structure/disposalpipe/segment,
@@ -68730,7 +68749,7 @@
/turf/closed/wall,
/area/teleporter)
"cld" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -68898,7 +68917,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"clo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -68958,7 +68977,7 @@
/turf/closed/wall,
/area/lawoffice)
"clt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -69051,7 +69070,7 @@
/turf/open/floor/plasteel,
/area/security/range)
"clC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -69155,7 +69174,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"clN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/flasher{
@@ -69176,7 +69195,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"clO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit/green,
@@ -69377,7 +69396,7 @@
"cmj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -69386,7 +69405,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -69396,7 +69415,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -69407,20 +69426,20 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port)
"cmn" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -69431,7 +69450,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69446,7 +69465,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cmp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69455,7 +69474,7 @@
/turf/open/floor/wood,
/area/library)
"cmq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69514,17 +69533,17 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"cmA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hop)
"cmB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -69549,7 +69568,7 @@
/turf/open/floor/plating,
/area/tcommsat/server)
"cmF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -69601,9 +69620,9 @@
dir = 1;
name = "Teleporter APC";
areastring = "/area/teleporter";
- pixel_y = 28
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/disposalpipe/segment{
@@ -69624,7 +69643,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"cmL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -69763,7 +69782,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"cmV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral,
@@ -69814,7 +69833,7 @@
/area/security/courtroom)
"cmZ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/landmark/blobstart,
@@ -69834,7 +69853,7 @@
/area/maintenance/starboard)
"cna" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -69846,7 +69865,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"cnb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -69857,10 +69876,10 @@
/area/maintenance/starboard)
"cnc" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69873,7 +69892,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"cnd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small{
@@ -69890,7 +69909,7 @@
},
/area/maintenance/starboard)
"cne" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69902,7 +69921,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"cnf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/blobstart,
@@ -69916,7 +69935,7 @@
/area/maintenance/starboard)
"cng" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69930,7 +69949,7 @@
/area/maintenance/starboard)
"cnh" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69953,7 +69972,7 @@
/area/maintenance/starboard)
"cni" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -69965,10 +69984,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"cnj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -69993,13 +70012,13 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"cnl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -70015,16 +70034,16 @@
/turf/open/floor/plasteel,
/area/security/range)
"cnm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -70045,7 +70064,7 @@
/turf/open/floor/plasteel,
/area/security/range)
"cnn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -70061,7 +70080,7 @@
/turf/open/floor/plasteel,
/area/security/range)
"cno" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/window/brigdoor/westright{
@@ -70071,13 +70090,13 @@
/turf/open/floor/plating,
/area/security/range)
"cnp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/security/range)
"cnq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -70085,10 +70104,10 @@
/turf/open/floor/plating,
/area/security/range)
"cnr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/target/syndicate,
@@ -70097,7 +70116,7 @@
/turf/open/floor/plasteel,
/area/security/range)
"cns" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -70138,7 +70157,7 @@
dir = 2;
name = "AI Upload Access APC";
areastring = "/area/ai_monitored/turret_protected/ai_upload";
- pixel_y = -27
+ pixel_y = -23
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -70170,7 +70189,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"cnw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/table/reinforced,
@@ -70340,7 +70359,7 @@
"cnK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -70363,7 +70382,7 @@
/turf/open/floor/wood,
/area/library)
"cnN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -70456,7 +70475,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"coa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -70466,14 +70485,14 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hop)
"cob" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/hop)
"coc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -70514,7 +70533,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/server)
"coh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -70592,7 +70611,7 @@
/area/teleporter)
"con" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -70605,7 +70624,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"coo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -70628,10 +70647,10 @@
/turf/open/floor/plasteel,
/area/teleporter)
"cop" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -70653,7 +70672,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"coq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -70757,7 +70776,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"cox" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -70816,7 +70835,7 @@
/area/security/courtroom)
"coB" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -70911,7 +70930,7 @@
/area/maintenance/starboard)
"coL" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -70933,9 +70952,9 @@
dir = 8;
name = "Shooting Range APC";
areastring = "/area/security/range";
- pixel_x = -26
+ pixel_x = -25
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -70951,10 +70970,10 @@
/turf/open/floor/plasteel,
/area/security/range)
"coO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -71034,7 +71053,7 @@
/turf/open/floor/plating,
/area/security/range)
"coV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -71212,7 +71231,7 @@
/area/maintenance/port)
"cpq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -71227,22 +71246,22 @@
dir = 8;
name = "Library APC";
areastring = "/area/library";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/wood,
/area/library)
"cps" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/wood,
/area/library)
"cpt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -71272,7 +71291,7 @@
/turf/open/floor/carpet,
/area/library)
"cpx" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/librarian,
@@ -71316,7 +71335,7 @@
/area/crew_quarters/heads/hop)
"cpE" = (
/obj/machinery/disposal/bin,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/trunk{
@@ -71337,7 +71356,7 @@
pixel_x = 26;
pixel_y = -26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -71372,7 +71391,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/server)
"cpK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -71463,7 +71482,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"cpT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -71539,7 +71558,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"cpZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral,
@@ -71549,7 +71568,7 @@
/turf/open/floor/plasteel,
/area/security/courtroom)
"cqa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -71563,9 +71582,9 @@
dir = 4;
name = "Courtroom APC";
areastring = "/area/security/courtroom";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -71579,7 +71598,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -71604,7 +71623,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -71633,7 +71652,7 @@
name = "Security Maintenance";
req_access_txt = "63"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -71787,7 +71806,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cqA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -71881,7 +71900,7 @@
/turf/closed/wall/r_wall,
/area/maintenance/port)
"cqL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -71951,7 +71970,7 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/hop)
"cqX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -71970,7 +71989,7 @@
/turf/closed/wall/r_wall,
/area/hallway/secondary/command)
"cqZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -71982,7 +72001,7 @@
/turf/closed/wall/r_wall,
/area/hallway/secondary/command)
"crb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -72199,7 +72218,7 @@
/turf/open/floor/plasteel/dark,
/area/security/courtroom)
"crq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -72287,7 +72306,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"crx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -72300,7 +72319,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"crz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -72313,7 +72332,7 @@
},
/area/maintenance/starboard)
"crB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -72506,7 +72525,7 @@
/area/engine/engineering)
"crS" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/cable{
@@ -72517,7 +72536,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"crT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -72665,7 +72684,7 @@
/area/maintenance/port)
"csg" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -72721,7 +72740,7 @@
/turf/open/floor/plasteel/grimy,
/area/library)
"csm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72781,7 +72800,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"csr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -72813,7 +72832,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"csu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -72832,9 +72851,9 @@
dir = 1;
name = "Command Hall APC";
areastring = "/area/hallway/secondary/command";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -72855,7 +72874,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"csx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -72903,7 +72922,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"csB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -73136,7 +73155,7 @@
/turf/open/floor/plasteel/dark,
/area/security/courtroom)
"csS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/extinguisher_cabinet{
@@ -73237,7 +73256,7 @@
},
/area/maintenance/starboard)
"ctb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -73260,7 +73279,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"cte" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -73268,13 +73287,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
"ctf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -73294,10 +73313,10 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"ctg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -73460,7 +73479,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ctw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -73620,13 +73639,13 @@
/turf/open/floor/plasteel/grimy,
/area/library)
"ctP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73648,7 +73667,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"ctQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -73659,7 +73678,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"ctR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -73678,7 +73697,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"ctS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73690,10 +73709,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"ctT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -73705,7 +73724,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"ctU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73721,7 +73740,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"ctV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73737,7 +73756,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"ctW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73754,10 +73773,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"ctX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -73770,7 +73789,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"ctY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -73780,7 +73799,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"ctZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73793,13 +73812,13 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cua" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73811,7 +73830,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cub" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73824,7 +73843,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cuc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/electricshock{
@@ -73834,7 +73853,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -73843,7 +73862,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cud" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73858,7 +73877,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cue" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair/comfy/black,
@@ -73869,13 +73888,13 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cuf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/item/beacon,
@@ -73888,7 +73907,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cug" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair/comfy/black,
@@ -73902,7 +73921,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cuh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/table/wood,
@@ -73916,7 +73935,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cui" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/electricshock{
@@ -73931,7 +73950,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cuj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73942,13 +73961,13 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cuk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73958,7 +73977,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cul" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73968,7 +73987,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cum" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -73981,7 +74000,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cun" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -73991,10 +74010,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cuo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -74005,7 +74024,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cup" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -74019,7 +74038,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cuq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -74031,7 +74050,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cur" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -74042,7 +74061,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cus" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -74054,10 +74073,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cut" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -74089,7 +74108,7 @@
/turf/open/floor/plating,
/area/security/courtroom)
"cuw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -74183,7 +74202,7 @@
/area/maintenance/starboard)
"cuE" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -74207,7 +74226,7 @@
dir = 2;
name = "Starboard Maintenance APC";
areastring = "/area/maintenance/starboard";
- pixel_y = -26
+ pixel_y = -23
},
/obj/structure/cable/white,
/turf/open/floor/plating,
@@ -74371,7 +74390,7 @@
/area/engine/engineering)
"cuX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -74527,7 +74546,7 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/storage/eva)
"cvp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -74605,7 +74624,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cvv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -74656,7 +74675,7 @@
/turf/closed/wall/r_wall,
/area/gateway)
"cvB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -74858,7 +74877,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
"cvR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75021,7 +75040,7 @@
/area/crew_quarters/locker)
"cwb" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -75039,7 +75058,6 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"cwd" = (
-/obj/machinery/vr_sleeper,
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -75140,7 +75158,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cwn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/status_display/evac{
@@ -75157,7 +75175,7 @@
/area/engine/storage)
"cwp" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -75305,7 +75323,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"cwD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -75326,9 +75344,9 @@
dir = 1;
name = "E.V.A. Storage APC";
areastring = "/area/ai_monitored/storage/eva";
- pixel_y = 26
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -75378,20 +75396,20 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/storage/eva)
"cwJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/hallway/secondary/command)
"cwK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -75401,7 +75419,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cwL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/table/wood,
@@ -75410,7 +75428,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cwM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair/comfy/black{
@@ -75421,10 +75439,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cwN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/landmark/event_spawn,
@@ -75432,7 +75450,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cwO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair/comfy/black{
@@ -75442,7 +75460,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cwP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/twohanded/required/kirbyplants{
@@ -75452,7 +75470,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cwQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -75460,10 +75478,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cwR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -75476,14 +75494,14 @@
/turf/open/floor/plasteel,
/area/gateway)
"cwT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc/highcap/ten_k{
dir = 1;
name = "Gateway APC";
areastring = "/area/gateway";
- pixel_y = 28
+ pixel_y = 23
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -75491,7 +75509,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cwU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -75666,7 +75684,7 @@
/turf/open/floor/plating,
/area/crew_quarters/locker)
"cxj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -75799,7 +75817,7 @@
/area/crew_quarters/locker)
"cxs" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75812,7 +75830,7 @@
/area/maintenance/starboard)
"cxt" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75832,7 +75850,7 @@
},
/area/maintenance/starboard)
"cxu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75850,7 +75868,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75868,7 +75886,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard)
"cxw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -75883,7 +75901,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"cxx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -75980,7 +75998,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cxH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/airalarm{
@@ -76052,14 +76070,14 @@
/turf/open/floor/plasteel,
/area/engine/storage)
"cxN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/port)
"cxO" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -76067,7 +76085,7 @@
"cxP" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -76076,14 +76094,14 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cxQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port)
"cxR" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -76093,20 +76111,20 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cxS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
"cxT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -76132,14 +76150,14 @@
/turf/open/floor/plasteel/grimy,
/area/library)
"cxW" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plasteel/grimy,
/area/library)
"cxX" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -76305,7 +76323,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"cyk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -76316,7 +76334,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"cyl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -76326,17 +76344,17 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"cym" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"cyn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -76346,7 +76364,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"cyo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -76357,7 +76375,7 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"cyp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -76367,7 +76385,7 @@
/area/ai_monitored/storage/eva)
"cyq" = (
/obj/machinery/cell_charger,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/table/reinforced,
@@ -76385,14 +76403,14 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/storage/eva)
"cyr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
"cys" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -76424,7 +76442,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/command)
"cyx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -76432,7 +76450,7 @@
/area/gateway)
"cyy" = (
/obj/structure/closet/secure_closet/medical1,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -76440,10 +76458,10 @@
/turf/open/floor/plasteel,
/area/gateway)
"cyz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -76453,10 +76471,10 @@
/turf/open/floor/plasteel,
/area/gateway)
"cyA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -76484,7 +76502,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cyD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -76659,7 +76677,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
"cyP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -76868,7 +76886,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"czh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -77032,7 +77050,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"czu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -77090,7 +77108,7 @@
/turf/open/floor/plasteel,
/area/engine/storage)
"czz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -77101,7 +77119,7 @@
/area/maintenance/port)
"czB" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -77144,7 +77162,7 @@
/turf/open/floor/plasteel/dark,
/area/library)
"czD" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/structure/disposalpipe/segment{
@@ -77172,7 +77190,7 @@
/turf/open/floor/carpet,
/area/library)
"czG" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/structure/disposalpipe/segment{
@@ -77378,7 +77396,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/storage/eva)
"czY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -77392,7 +77410,7 @@
/turf/closed/wall/r_wall,
/area/bridge/showroom/corporate)
"cAa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -77430,10 +77448,10 @@
/turf/open/floor/plasteel,
/area/gateway)
"cAe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -77453,7 +77471,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cAf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -77464,7 +77482,7 @@
/area/gateway)
"cAg" = (
/obj/structure/table,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/clipboard,
@@ -77477,7 +77495,7 @@
/area/gateway)
"cAh" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -77503,7 +77521,7 @@
/area/gateway)
"cAj" = (
/obj/machinery/gateway/centerstation,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -77564,7 +77582,7 @@
dir = 4;
pixel_x = -24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -77641,7 +77659,7 @@
/area/crew_quarters/locker)
"cAt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -77658,7 +77676,7 @@
/area/crew_quarters/locker)
"cAu" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -77674,14 +77692,14 @@
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
"cAv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 4;
name = "Lockerroom APC";
areastring = "/area/crew_quarters/locker";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/tile/neutral,
@@ -77716,7 +77734,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"cAz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -77877,7 +77895,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cAO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -77890,7 +77908,7 @@
/area/engine/engineering)
"cAP" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -77969,7 +77987,7 @@
/area/engine/storage)
"cAV" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -78025,7 +78043,7 @@
/turf/open/floor/plasteel/dark,
/area/library)
"cBb" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/grimy,
@@ -78041,7 +78059,7 @@
/turf/open/floor/carpet,
/area/library)
"cBe" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/grimy,
@@ -78145,7 +78163,7 @@
/turf/closed/wall,
/area/ai_monitored/storage/eva)
"cBo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/window/reinforced,
@@ -78164,14 +78182,14 @@
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"cBq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"cBr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -78232,7 +78250,7 @@
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"cBw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/window/reinforced,
@@ -78276,7 +78294,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cBz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -78337,10 +78355,10 @@
/area/gateway)
"cBE" = (
/obj/machinery/gateway,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -78465,14 +78483,14 @@
/turf/open/floor/plasteel,
/area/crew_quarters/toilet/restrooms)
"cBN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Primary Restroom APC";
areastring = "/area/crew_quarters/toilet/restrooms";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -78533,10 +78551,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/toilet/restrooms)
"cBS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -78550,7 +78568,7 @@
},
/area/crew_quarters/locker)
"cBT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -78570,7 +78588,7 @@
/area/crew_quarters/locker)
"cBU" = (
/obj/structure/chair/stool,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -78592,7 +78610,7 @@
/obj/structure/table,
/obj/item/folder,
/obj/item/pen,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -78613,7 +78631,7 @@
"cBW" = (
/obj/structure/table,
/obj/item/paicard,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -78633,7 +78651,7 @@
/area/crew_quarters/locker)
"cBX" = (
/obj/structure/table,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/toy/gun,
@@ -78654,7 +78672,7 @@
/area/crew_quarters/locker)
"cBY" = (
/obj/structure/chair/stool,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/landmark/start/assistant,
@@ -78662,7 +78680,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -78818,7 +78836,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"cCl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -78927,10 +78945,10 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cCv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -78945,13 +78963,13 @@
name = "Engineering Storage";
req_access_txt = "32"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -78964,7 +78982,7 @@
/area/engine/storage)
"cCx" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/delivery,
@@ -79021,7 +79039,7 @@
/area/engine/storage)
"cCC" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/blobstart,
@@ -79052,7 +79070,7 @@
/area/maintenance/port)
"cCG" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -79084,14 +79102,14 @@
/turf/open/floor/plasteel/dark,
/area/library)
"cCI" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/library)
"cCJ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -79199,25 +79217,25 @@
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
"cCU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Corporate Lounge APC";
areastring = "/area/bridge/showroom/corporate";
- pixel_x = -26
+ pixel_x = -25
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"cCV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -79226,13 +79244,13 @@
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"cCW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -79241,10 +79259,10 @@
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"cCX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair/comfy/brown{
@@ -79254,10 +79272,10 @@
/area/bridge/showroom/corporate)
"cCY" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/reagent_containers/food/drinks/bottle/whiskey,
@@ -79265,10 +79283,10 @@
/area/bridge/showroom/corporate)
"cCZ" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/storage/fancy/donut_box,
@@ -79276,20 +79294,20 @@
/area/bridge/showroom/corporate)
"cDa" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/paper_bin,
/turf/open/floor/carpet,
/area/bridge/showroom/corporate)
"cDb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair/comfy/black{
@@ -79298,7 +79316,7 @@
/turf/open/floor/carpet,
/area/bridge/showroom/corporate)
"cDc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -79307,7 +79325,7 @@
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"cDd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -79316,10 +79334,10 @@
/turf/open/floor/wood,
/area/bridge/showroom/corporate)
"cDe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/airalarm{
@@ -79409,7 +79427,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cDg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -79446,7 +79464,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cDj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -79465,7 +79483,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cDl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -79546,7 +79564,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/toilet/restrooms)
"cDt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -79616,7 +79634,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/toilet/restrooms)
"cDy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -79627,7 +79645,7 @@
},
/area/crew_quarters/locker)
"cDz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -79692,7 +79710,7 @@
/turf/open/floor/wood,
/area/crew_quarters/dorms)
"cDF" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/wood,
@@ -79893,7 +79911,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cEc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -79907,7 +79925,7 @@
/area/engine/engineering)
"cEd" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -79918,7 +79936,7 @@
/area/engine/storage)
"cEe" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -79928,7 +79946,7 @@
/turf/open/floor/plasteel,
/area/engine/storage)
"cEf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -79947,7 +79965,7 @@
/turf/open/floor/plasteel,
/area/engine/storage)
"cEg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -79966,7 +79984,7 @@
/turf/open/floor/plasteel,
/area/engine/storage)
"cEh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -79992,9 +80010,9 @@
dir = 4;
name = "Engineering Storage APC";
areastring = "/area/engine/storage";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/delivery,
@@ -80071,7 +80089,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cEo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -80329,7 +80347,7 @@
/area/ai_monitored/storage/eva)
"cEK" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/clipboard,
@@ -80347,7 +80365,7 @@
/area/bridge/showroom/corporate)
"cEN" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/folder/blue,
@@ -80356,7 +80374,7 @@
/area/bridge/showroom/corporate)
"cEO" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/clothing/mask/cigarette/cigar/cohiba{
@@ -80370,7 +80388,7 @@
/area/bridge/showroom/corporate)
"cEP" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/lighter,
@@ -80384,7 +80402,7 @@
/area/bridge/showroom/corporate)
"cER" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/storage/secure/briefcase,
@@ -80414,7 +80432,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cEU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80424,7 +80442,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cEV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80435,7 +80453,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cEW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80447,13 +80465,13 @@
/turf/open/floor/plasteel,
/area/gateway)
"cEX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/command/glass{
@@ -80473,7 +80491,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"cEY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80486,7 +80504,7 @@
/area/gateway)
"cEZ" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80562,7 +80580,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/toilet/restrooms)
"cFg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80578,10 +80596,10 @@
"cFh" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80595,7 +80613,7 @@
},
/area/crew_quarters/toilet/restrooms)
"cFi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80612,7 +80630,7 @@
/obj/machinery/status_display/evac{
pixel_y = -32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80626,7 +80644,7 @@
},
/area/crew_quarters/toilet/restrooms)
"cFk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -80638,7 +80656,7 @@
/obj/machinery/status_display/evac{
pixel_y = -32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80648,7 +80666,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/toilet/restrooms)
"cFm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80659,7 +80677,7 @@
/area/crew_quarters/toilet/restrooms)
"cFn" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -80677,7 +80695,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/toilet/restrooms)
"cFo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -80725,7 +80743,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
"cFs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -80802,7 +80820,7 @@
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
"cFB" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/carpet,
@@ -80851,14 +80869,14 @@
},
/area/holodeck/rec_center)
"cFH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cFI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/grille,
@@ -80868,7 +80886,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cFJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/grille,
@@ -80878,7 +80896,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cFK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/grille,
@@ -80888,7 +80906,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cFL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating/airless,
@@ -80901,7 +80919,7 @@
name = "External Containment Access";
req_access_txt = "10; 13"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -80913,7 +80931,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cFN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -80930,7 +80948,7 @@
name = "External Containment Access";
req_access_txt = "10; 13"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -80945,7 +80963,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cFP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -80965,7 +80983,7 @@
/area/engine/engineering)
"cFQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -80985,7 +81003,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cFR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -81007,13 +81025,13 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cFS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -81034,7 +81052,7 @@
"cFT" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -81095,7 +81113,7 @@
/turf/open/floor/plasteel,
/area/engine/storage)
"cFZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -81243,7 +81261,7 @@
/area/ai_monitored/storage/eva)
"cGo" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/folder/blue,
@@ -81276,7 +81294,7 @@
/turf/open/floor/plasteel/grimy,
/area/bridge/showroom/corporate)
"cGr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/chair/comfy/brown{
@@ -81285,14 +81303,14 @@
/turf/open/floor/plasteel/grimy,
/area/bridge/showroom/corporate)
"cGs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/grimy,
/area/bridge/showroom/corporate)
"cGt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/chair/comfy/black{
@@ -81322,7 +81340,7 @@
/area/bridge/showroom/corporate)
"cGw" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/folder/red,
@@ -81425,7 +81443,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/toilet/restrooms)
"cGI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -81529,7 +81547,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/locker)
"cGQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -81667,7 +81685,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cHc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/grille,
@@ -81677,7 +81695,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cHd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/grille,
@@ -81687,7 +81705,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cHe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/grille,
@@ -81697,10 +81715,10 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cHf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/grille,
@@ -81710,7 +81728,7 @@
/turf/open/floor/plating/airless,
/area/engine/engineering)
"cHg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/grille,
@@ -81772,7 +81790,7 @@
/area/engine/engineering)
"cHn" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -81784,7 +81802,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cHo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -81893,7 +81911,7 @@
/area/maintenance/port)
"cHz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -81950,7 +81968,7 @@
/turf/open/floor/plasteel,
/area/vacant_room/commissary)
"cHG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -82060,7 +82078,7 @@
name = "Corporate Lounge";
req_access_txt = "19"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -82166,7 +82184,7 @@
/area/crew_quarters/toilet/restrooms)
"cHZ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -82212,7 +82230,7 @@
/area/crew_quarters/toilet/restrooms)
"cId" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock{
@@ -82347,7 +82365,7 @@
name = "Engineering Maintenance";
req_access_txt = "10"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -82469,7 +82487,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cIJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82624,7 +82642,7 @@
req_access_txt = "12"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -82680,7 +82698,7 @@
},
/area/crew_quarters/dorms)
"cJf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -82694,7 +82712,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82711,7 +82729,7 @@
},
/area/crew_quarters/dorms)
"cJh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -82723,7 +82741,7 @@
/area/crew_quarters/dorms)
"cJi" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -82741,7 +82759,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -82751,7 +82769,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82763,7 +82781,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82776,10 +82794,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82794,7 +82812,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82811,7 +82829,7 @@
},
/area/crew_quarters/dorms)
"cJo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82824,7 +82842,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82841,7 +82859,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -82851,7 +82869,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82864,7 +82882,7 @@
/area/crew_quarters/dorms)
"cJs" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -82882,7 +82900,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cJt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -82894,10 +82912,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"cJu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -83207,7 +83225,7 @@
/area/maintenance/port)
"cJQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -83225,7 +83243,7 @@
/area/maintenance/port)
"cJR" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -83235,7 +83253,7 @@
/area/maintenance/port)
"cJS" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -83244,7 +83262,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"cJT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -83254,7 +83272,7 @@
/area/maintenance/port)
"cJU" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -83271,7 +83289,7 @@
},
/area/maintenance/port)
"cJV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -83289,10 +83307,10 @@
/area/maintenance/port)
"cJW" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/delivery,
@@ -83301,10 +83319,10 @@
/area/maintenance/port)
"cJX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -83322,16 +83340,16 @@
/area/maintenance/port)
"cJY" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -83341,7 +83359,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cJZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83354,7 +83372,7 @@
/area/maintenance/port)
"cKa" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83367,7 +83385,7 @@
/area/maintenance/port)
"cKb" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83388,10 +83406,10 @@
/area/maintenance/port)
"cKc" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83404,7 +83422,7 @@
/area/maintenance/port)
"cKd" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83420,10 +83438,10 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cKe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83436,7 +83454,7 @@
/area/maintenance/port)
"cKf" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83451,7 +83469,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cKg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83466,7 +83484,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cKh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83480,10 +83498,10 @@
/area/maintenance/port)
"cKi" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -83494,7 +83512,7 @@
/area/maintenance/port)
"cKj" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83507,7 +83525,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cKk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83517,7 +83535,7 @@
/area/maintenance/port)
"cKl" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83526,7 +83544,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"cKm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/blobstart,
@@ -83545,7 +83563,7 @@
"cKn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -83566,7 +83584,7 @@
},
/area/maintenance/port)
"cKo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83581,7 +83599,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cKp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -83590,16 +83608,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
/area/maintenance/port)
"cKq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83611,7 +83629,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"cKr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83628,7 +83646,7 @@
req_access_txt = "12"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -83643,7 +83661,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cKt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -83658,10 +83676,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -83684,7 +83702,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -83696,10 +83714,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -83709,7 +83727,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -83718,7 +83736,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -83727,7 +83745,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -83741,7 +83759,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -83755,7 +83773,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -83764,7 +83782,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/plaque{
@@ -83773,7 +83791,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -83792,16 +83810,16 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/navbeacon{
@@ -83821,7 +83839,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cKF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83842,7 +83860,7 @@
req_access_txt = "12"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83860,7 +83878,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cKH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83873,7 +83891,7 @@
/area/maintenance/starboard/aft)
"cKI" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83917,14 +83935,14 @@
/area/maintenance/starboard/aft)
"cKM" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -83935,7 +83953,7 @@
/area/maintenance/starboard/aft)
"cKN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83948,7 +83966,7 @@
/area/maintenance/starboard/aft)
"cKO" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83968,7 +83986,7 @@
req_access_txt = "12"
},
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -83986,7 +84004,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cKQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -84121,7 +84139,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"cLb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -84248,7 +84266,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"cLk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -84401,7 +84419,7 @@
/area/maintenance/port)
"cLz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -84474,7 +84492,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cLE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -84516,7 +84534,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cLH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -84560,7 +84578,7 @@
/area/maintenance/port)
"cLN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -84769,7 +84787,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cMh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -84779,7 +84797,7 @@
/area/maintenance/starboard/aft)
"cMi" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/spawner/lootdrop/maintenance,
@@ -84799,7 +84817,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cMj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/blobstart,
@@ -84809,14 +84827,14 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cMk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cMl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -84835,7 +84853,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -84975,7 +84993,7 @@
dir = 2;
name = "Dormitories APC";
areastring = "/area/crew_quarters/dorms";
- pixel_y = -26
+ pixel_y = -23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -85090,7 +85108,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"cMG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
@@ -85216,7 +85234,7 @@
name = "Engineering Auxiliary Power";
req_access_txt = "10"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -85250,7 +85268,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -85678,7 +85696,7 @@
/area/medical/storage)
"cNQ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -85994,7 +86012,7 @@
/area/maintenance/department/electrical)
"cOx" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -86119,7 +86137,7 @@
/area/maintenance/port)
"cOH" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -86132,7 +86150,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cOI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -86152,7 +86170,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"cOJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -86164,7 +86182,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cOK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/landmark/blobstart,
@@ -86224,7 +86242,7 @@
/turf/closed/wall/r_wall,
/area/science/research)
"cOT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -86292,7 +86310,6 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"cPb" = (
-/obj/item/twohanded/required/kirbyplants/random,
/obj/machinery/light{
dir = 1
},
@@ -86302,6 +86319,7 @@
/obj/effect/turf_decal/tile/purple{
dir = 4
},
+/obj/machinery/vending/modularpc,
/turf/open/floor/plasteel/white,
/area/science/research)
"cPc" = (
@@ -86325,7 +86343,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"cPe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
@@ -86530,14 +86548,14 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cPD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Medbay Storage APC";
areastring = "/area/medical/storage";
- pixel_x = -26
+ pixel_x = -25
},
/obj/machinery/camera{
c_tag = "Medbay - Storage";
@@ -86553,10 +86571,10 @@
/turf/open/floor/plasteel,
/area/medical/storage)
"cPE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -86571,7 +86589,7 @@
/turf/open/floor/plasteel/white,
/area/medical/storage)
"cPF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -86586,7 +86604,7 @@
/turf/open/floor/plasteel/white,
/area/medical/storage)
"cPG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -86606,7 +86624,7 @@
},
/area/medical/storage)
"cPH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -86630,10 +86648,10 @@
/area/maintenance/starboard/aft)
"cPI" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -86648,7 +86666,7 @@
/area/maintenance/starboard/aft)
"cPJ" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -86657,7 +86675,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cPK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -86666,7 +86684,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cPL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -86679,7 +86697,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cPM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -86698,7 +86716,7 @@
req_access_txt = "12"
},
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -86716,7 +86734,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cPO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -86954,10 +86972,10 @@
/turf/open/floor/plasteel,
/area/maintenance/department/electrical)
"cQo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -86968,7 +86986,7 @@
/area/maintenance/department/electrical)
"cQp" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -86979,7 +86997,7 @@
/area/maintenance/department/electrical)
"cQq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -86989,7 +87007,7 @@
/area/maintenance/department/electrical)
"cQr" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -86999,20 +87017,20 @@
/obj/structure/table/reinforced,
/obj/item/stock_parts/cell/high,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 4;
name = "Auxiliary Power APC";
areastring = "/area/maintenance/department/electrical";
- pixel_x = 26
+ pixel_x = 24
},
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"cQt" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -87026,7 +87044,7 @@
/area/maintenance/port)
"cQu" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/research{
@@ -87127,7 +87145,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"cQB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/purple{
@@ -87496,7 +87514,7 @@
/turf/open/floor/plasteel,
/area/medical/storage)
"cRg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -87607,7 +87625,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cRq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -87641,7 +87659,7 @@
/turf/open/floor/carpet,
/area/crew_quarters/dorms)
"cRu" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/machinery/newscaster{
@@ -87772,7 +87790,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -87833,7 +87851,7 @@
/turf/open/floor/plating,
/area/maintenance/department/electrical)
"cRO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -87871,7 +87889,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"cRR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -87881,20 +87899,20 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"cRS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cRT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/status_display/evac{
pixel_y = 32
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/camera{
@@ -87911,7 +87929,7 @@
pixel_x = 26;
pixel_y = 26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -87933,7 +87951,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cRW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -87944,10 +87962,10 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"cRX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor{
@@ -87972,7 +87990,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"cRY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -87984,7 +88002,7 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"cRZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -87995,10 +88013,10 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"cSa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor{
@@ -88023,7 +88041,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"cSb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -88035,7 +88053,7 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"cSc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -88046,10 +88064,10 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"cSd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor{
@@ -88074,7 +88092,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"cSe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -88086,7 +88104,7 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"cSf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -88094,10 +88112,10 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"cSg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/airlock/research/glass{
@@ -88113,7 +88131,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cSh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -88127,7 +88145,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"cSj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/purple{
@@ -88150,7 +88168,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"cSl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -88681,7 +88699,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cSZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -88698,7 +88716,7 @@
/turf/open/floor/wood,
/area/crew_quarters/dorms)
"cTb" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/wood,
/area/crew_quarters/dorms)
"cTc" = (
@@ -88894,7 +88912,7 @@
/area/maintenance/department/electrical)
"cTu" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/bot,
@@ -88933,7 +88951,7 @@
/turf/open/floor/plasteel,
/area/maintenance/department/electrical)
"cTy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -88950,7 +88968,7 @@
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"cTB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -88970,7 +88988,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cTD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -89023,7 +89041,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cTI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/window/brigdoor{
@@ -89122,7 +89140,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cTS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -89165,7 +89183,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"cTX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -89184,7 +89202,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"cTY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -89198,13 +89216,13 @@
/area/science/research)
"cTZ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/door/airlock/security{
@@ -89223,7 +89241,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"cUa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -89238,13 +89256,13 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"cUb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/neutral{
@@ -89260,7 +89278,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"cUc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/computer/security{
@@ -89280,10 +89298,10 @@
/area/security/checkpoint/science/research)
"cUd" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -89644,7 +89662,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"cUG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -89690,7 +89708,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"cUK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -90230,7 +90248,7 @@
/area/maintenance/port)
"cVC" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -90256,7 +90274,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cVE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -90310,7 +90328,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cVJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -90334,7 +90352,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cVL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -90377,7 +90395,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cVO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -90404,7 +90422,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cVQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -90508,7 +90526,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"cVY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -90683,11 +90701,11 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"cWo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -90697,7 +90715,7 @@
/obj/machinery/computer/security{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -90713,13 +90731,13 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"cWq" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -90735,7 +90753,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"cWr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -90746,10 +90764,10 @@
/area/security/checkpoint/medical)
"cWs" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/airlock/security{
@@ -90790,7 +90808,7 @@
/turf/open/floor/plasteel,
/area/medical/storage)
"cWv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue,
@@ -90866,7 +90884,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"cWA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -90886,7 +90904,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cWC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -90894,7 +90912,7 @@
dir = 8;
name = "Recreation Area APC";
areastring = "/area/crew_quarters/fitness/recreation";
- pixel_x = -26
+ pixel_x = -25
},
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -90902,10 +90920,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"cWD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -91052,7 +91070,7 @@
/area/maintenance/department/electrical)
"cWU" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/blobstart,
@@ -91088,10 +91106,10 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"cWW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/door/window/brigdoor{
@@ -91116,7 +91134,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"cWX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/window/brigdoor{
@@ -91128,13 +91146,13 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cWY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -91143,7 +91161,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cWZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -91161,7 +91179,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cXa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -91170,7 +91188,7 @@
/area/science/xenobiology)
"cXb" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -91182,7 +91200,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cXc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/shower{
@@ -91196,7 +91214,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cXd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -91208,13 +91226,13 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cXe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -91226,7 +91244,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cXf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -91239,7 +91257,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cXg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/shower{
@@ -91255,13 +91273,13 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cXh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -91270,7 +91288,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cXi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/purple{
@@ -91282,10 +91300,10 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cXj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/landmark/start/scientist,
@@ -91340,7 +91358,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"cXo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door_timer{
@@ -91353,7 +91371,7 @@
dir = 8;
name = "Security Post - Science APC";
areastring = "/area/security/checkpoint/science/research";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -91377,10 +91395,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"cXp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/red,
@@ -91656,7 +91674,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"cXT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -91721,7 +91739,7 @@
name = "Medbay Storage";
req_access_txt = "5"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -92156,7 +92174,7 @@
/area/science/xenobiology)
"cYL" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -92225,7 +92243,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cYR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92279,7 +92297,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cYV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92295,7 +92313,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"cYW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92325,7 +92343,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"cYY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92399,20 +92417,20 @@
/turf/open/floor/plasteel,
/area/science/research)
"cZe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/science/research)
"cZf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/window/brigdoor{
@@ -92433,7 +92451,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"cZg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -92639,7 +92657,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"cZC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door_timer{
@@ -92652,7 +92670,7 @@
dir = 8;
name = "Security Post - Medical APC";
areastring = "/area/security/checkpoint/medical";
- pixel_x = -26
+ pixel_x = -25
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
@@ -92671,10 +92689,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"cZD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -92748,7 +92766,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"cZI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -92838,7 +92856,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"cZQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -92850,10 +92868,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cZR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92866,7 +92884,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cZS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -92884,7 +92902,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cZT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92901,7 +92919,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cZU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -92914,7 +92932,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cZV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -92931,7 +92949,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cZW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92947,7 +92965,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"cZX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -92959,7 +92977,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cZY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -92972,7 +92990,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"cZZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -92991,7 +93009,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -93009,7 +93027,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dab" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -93025,7 +93043,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"dac" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -93217,7 +93235,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"das" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -93264,7 +93282,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"daw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/window/brigdoor{
@@ -93349,7 +93367,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"daD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/scientist,
@@ -93377,17 +93395,17 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"daF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/science/research)
"daG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair{
@@ -93405,13 +93423,13 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"daH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/red{
@@ -93423,7 +93441,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"daI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/closet/secure_closet/brig{
@@ -93440,7 +93458,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"daJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -93670,14 +93688,14 @@
/turf/open/floor/plasteel,
/area/medical/chemistry)
"dbg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Chemistry Lab APC";
areastring = "/area/medical/chemistry";
- pixel_y = 24
+ pixel_y = 23
},
/obj/effect/turf_decal/tile/yellow{
dir = 4
@@ -93738,20 +93756,20 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dbn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/medical)
"dbo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/window/brigdoor{
@@ -93772,7 +93790,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"dbp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -93799,7 +93817,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"dbs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -93922,7 +93940,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dbB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -94165,9 +94183,9 @@
dir = 1;
name = "Port Maintenance APC";
areastring = "/area/maintenance/port";
- pixel_y = 28
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -94177,7 +94195,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -94194,7 +94212,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -94213,7 +94231,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -94224,7 +94242,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -94258,7 +94276,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"dcc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -94268,7 +94286,7 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"dcd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/airalarm{
@@ -94300,7 +94318,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"dcg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -94312,10 +94330,10 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"dch" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/door/window/brigdoor{
@@ -94340,7 +94358,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"dci" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -94351,7 +94369,7 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"dcj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -94363,10 +94381,10 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"dck" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/door/window/brigdoor{
@@ -94391,7 +94409,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"dcl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -94402,7 +94420,7 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"dcm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -94414,10 +94432,10 @@
/turf/open/floor/plating,
/area/science/xenobiology)
"dcn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -94442,7 +94460,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"dco" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -94471,10 +94489,10 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"dcr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -94488,7 +94506,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"dcs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -94501,7 +94519,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"dct" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -94513,7 +94531,7 @@
/obj/structure/table/reinforced,
/obj/item/folder/white,
/obj/item/pen,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/light{
@@ -94523,7 +94541,7 @@
dir = 4;
name = "Xenobiology Lab APC";
areastring = "/area/science/xenobiology";
- pixel_x = 26
+ pixel_x = 24
},
/obj/effect/turf_decal/stripes/line,
/obj/item/storage/box/monkeycubes,
@@ -94543,7 +94561,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/science/research)
"dcw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red,
@@ -94773,7 +94791,7 @@
/turf/open/floor/plasteel,
/area/medical/chemistry)
"dcS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -94877,17 +94895,17 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dda" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/medical)
"ddb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/chair{
@@ -94905,10 +94923,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"ddc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/red{
@@ -94934,7 +94952,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"dde" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -95041,12 +95059,13 @@
dir = 4;
pixel_x = -23
},
-/obj/machinery/sleeper{
- dir = 4
- },
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/obj/item/stack/rods/ten,
+/obj/item/stock_parts/capacitor,
+/obj/item/circuitboard/machine/stasis,
+/obj/item/stock_parts/manipulator,
/turf/open/floor/plasteel,
/area/medical/abandoned)
"ddn" = (
@@ -95269,13 +95288,13 @@
/area/maintenance/port)
"ddL" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/delivery,
@@ -95283,7 +95302,7 @@
/area/maintenance/port)
"ddM" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -95294,7 +95313,7 @@
/area/maintenance/port)
"ddN" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -95307,10 +95326,10 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"ddO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -95396,10 +95415,10 @@
/area/science/research)
"ddX" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -95695,10 +95714,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"dez" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/red,
@@ -95708,7 +95727,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"deA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -95721,27 +95740,25 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"deB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/medical)
"deC" = (
-/obj/machinery/sleeper{
- dir = 4
- },
/obj/effect/turf_decal/stripes/end{
dir = 4
},
+/obj/machinery/stasis,
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"deD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -95757,15 +95774,13 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"deF" = (
-/obj/machinery/sleeper{
- dir = 8
- },
/obj/effect/turf_decal/stripes/end{
dir = 8
},
/obj/machinery/light{
dir = 4
},
+/obj/machinery/stasis,
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"deG" = (
@@ -95821,7 +95836,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"deM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -95906,7 +95921,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/barricade/wooden,
@@ -96002,7 +96017,7 @@
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"dfd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -96028,17 +96043,17 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/science/xenobiology)
"dff" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -96153,14 +96168,14 @@
/obj/item/stack/sheet/glass,
/obj/item/stack/sheet/glass,
/obj/item/stack/sheet/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Research and Development Lab APC";
areastring = "/area/science/lab";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/effect/turf_decal/stripes/line{
@@ -96169,7 +96184,7 @@
/turf/open/floor/plasteel,
/area/science/lab)
"dfr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -96186,7 +96201,7 @@
/turf/open/floor/plasteel,
/area/science/lab)
"dfs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/purple{
@@ -96201,7 +96216,7 @@
/obj/machinery/holopad{
pixel_x = -16
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/purple,
@@ -96337,13 +96352,13 @@
/area/security/checkpoint/medical)
"dfE" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -96387,7 +96402,7 @@
/area/medical/medbay/central)
"dfI" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -96434,10 +96449,10 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dfN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -96457,7 +96472,7 @@
req_access_txt = "12"
},
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -96477,7 +96492,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -96594,7 +96609,7 @@
/area/crew_quarters/abandoned_gambling_den)
"dgd" = (
/obj/structure/table/wood,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/item/clothing/gloves/color/fyellow,
@@ -96603,7 +96618,7 @@
dir = 1;
name = "Abandoned Gambling Den APC";
areastring = "/area/crew_quarters/abandoned_gambling_den";
- pixel_y = 24
+ pixel_y = 23
},
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
@@ -96642,7 +96657,7 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"dgi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -96669,7 +96684,7 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"dgl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -96680,7 +96695,7 @@
"dgm" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -96693,7 +96708,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"dgn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -96707,7 +96722,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"dgo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -96720,7 +96735,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"dgp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -96731,7 +96746,7 @@
"dgq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -97029,7 +97044,7 @@
/turf/open/floor/plasteel/white,
/area/science/lab)
"dgN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/table,
@@ -97176,7 +97191,7 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"dgZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -97308,7 +97323,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dhk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -97411,7 +97426,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dhu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -97426,7 +97441,7 @@
dir = 4;
name = "emergency shower"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -97549,10 +97564,10 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/abandoned_gambling_den)
"dhI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -97561,7 +97576,7 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"dhJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -97580,7 +97595,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/abandoned_gambling_den)
"dhK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -97600,7 +97615,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/abandoned_gambling_den)
"dhL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -97621,10 +97636,10 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/abandoned_gambling_den)
"dhM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -97695,7 +97710,7 @@
/area/science/research/abandoned)
"dhT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -97938,7 +97953,7 @@
/turf/open/floor/plasteel/white,
/area/science/lab)
"dik" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/scientist,
@@ -98070,7 +98085,7 @@
/turf/closed/wall,
/area/medical/chemistry)
"div" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/yellow{
@@ -98082,7 +98097,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"diw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -98099,7 +98114,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"dix" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -98115,7 +98130,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -98131,7 +98146,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/event_spawn,
@@ -98148,7 +98163,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -98164,7 +98179,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"diB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -98181,10 +98196,10 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"diC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/beacon,
@@ -98202,7 +98217,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"diD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -98219,7 +98234,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"diE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -98232,10 +98247,10 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -98251,7 +98266,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -98270,7 +98285,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -98287,10 +98302,10 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -98306,7 +98321,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -98323,10 +98338,10 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/blue{
@@ -98342,7 +98357,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -98361,7 +98376,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -98378,7 +98393,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"diN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue,
@@ -98388,7 +98403,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"diO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -98404,7 +98419,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"diP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -98413,10 +98428,10 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"diQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -98435,7 +98450,7 @@
/obj/structure/mirror{
pixel_x = -28
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -98543,7 +98558,7 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"dje" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -98585,7 +98600,7 @@
/area/crew_quarters/abandoned_gambling_den)
"djj" = (
/obj/structure/table/wood/poker,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/storage/wallet/random,
@@ -98665,7 +98680,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"djx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -99056,7 +99071,7 @@
/turf/open/floor/plasteel,
/area/science/lab)
"dkb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -99178,7 +99193,7 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"dkk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -99189,7 +99204,7 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"dkl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light_switch{
@@ -99212,7 +99227,7 @@
name = "Chemistry Lab";
req_access_txt = "5; 33"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -99227,7 +99242,7 @@
/turf/open/floor/plasteel,
/area/medical/chemistry)
"dkn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -99281,7 +99296,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dks" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -99354,7 +99369,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dkz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -99444,7 +99459,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dkH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -99461,7 +99476,7 @@
name = "Abandoned Medical Lab APC";
areastring = "/area/medical/abandoned";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/turf/open/floor/plating,
/area/medical/abandoned)
@@ -99589,7 +99604,7 @@
/area/maintenance/starboard/aft)
"dkS" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/wood,
@@ -99611,22 +99626,22 @@
},
/area/crew_quarters/abandoned_gambling_den)
"dkW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/hollow/reinforced/end{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"dkX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/door/window/northright,
@@ -99644,22 +99659,22 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/abandoned_gambling_den)
"dkY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/hollow/reinforced/directional{
dir = 9
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"dkZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/hollow/reinforced/directional{
@@ -99668,10 +99683,10 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"dla" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable/white,
@@ -99744,7 +99759,7 @@
/turf/closed/wall,
/area/maintenance/port)
"dlm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/landmark/event_spawn,
@@ -99766,7 +99781,7 @@
/turf/open/floor/plasteel/white,
/area/maintenance/department/science)
"dln" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -99838,7 +99853,7 @@
"dlt" = (
/obj/effect/turf_decal/bot,
/obj/machinery/power/apc/auto_name/west,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -99854,7 +99869,7 @@
/turf/open/floor/plasteel/dark,
/area/science/nanite)
"dlu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -99933,7 +99948,7 @@
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hor)
"dlF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -99949,7 +99964,7 @@
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hor)
"dlH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -99960,10 +99975,10 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/hor)
"dlI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -99974,10 +99989,10 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/hor)
"dlJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -100018,7 +100033,7 @@
name = "Research and Development Lab";
req_one_access_txt = "7;29"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -100097,7 +100112,7 @@
/turf/closed/wall,
/area/medical/genetics/cloning)
"dlY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -100111,7 +100126,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"dlZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -100170,7 +100185,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dmg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -100203,7 +100218,7 @@
/area/crew_quarters/abandoned_gambling_den)
"dmm" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/hollow/reinforced/directional{
@@ -100241,7 +100256,7 @@
/area/crew_quarters/abandoned_gambling_den)
"dmp" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/hollow/reinforced/directional{
@@ -100272,7 +100287,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -100369,7 +100384,7 @@
/turf/open/floor/plasteel/dark,
/area/science/nanite)
"dmH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -100473,7 +100488,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hor)
"dmT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -100506,7 +100521,7 @@
/area/crew_quarters/heads/hor)
"dmX" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -100540,7 +100555,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dna" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -100549,7 +100564,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dnb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -100558,11 +100573,11 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dnc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -100571,7 +100586,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dnd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -100581,14 +100596,14 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dne" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc/highcap/ten_k{
dir = 1;
name = "Mech Bay APC";
areastring = "/area/science/robotics/mechbay";
- pixel_y = 28
+ pixel_y = 23
},
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -100719,14 +100734,14 @@
/area/medical/genetics/cloning)
"dnr" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc/highcap/five_k{
dir = 1;
name = "Cloning Lab APC";
areastring = "/area/medical/genetics/cloning";
- pixel_y = 24
+ pixel_y = 23
},
/obj/item/folder/white,
/obj/item/book/manual/wiki/medical_cloning,
@@ -100743,7 +100758,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dnt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -100823,7 +100838,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dnA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -100957,7 +100972,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/surgery)
"dnL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -100965,7 +100980,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dnM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -101216,10 +101231,10 @@
/turf/open/floor/plasteel,
/area/maintenance/department/science)
"dor" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -101253,7 +101268,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -101268,10 +101283,10 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -101294,7 +101309,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -101317,7 +101332,7 @@
dir = 4
},
/obj/structure/chair/office/light,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -101337,7 +101352,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -101367,7 +101382,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -101389,7 +101404,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -101414,7 +101429,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/stripes/corner{
@@ -101537,7 +101552,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hor)
"doN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -101580,7 +101595,7 @@
/area/crew_quarters/heads/hor)
"doR" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -101646,7 +101661,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"doX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -101866,7 +101881,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics/cloning)
"dpr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -101887,7 +101902,7 @@
/obj/effect/mapping_helpers/airlock/unres{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -101902,7 +101917,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics/cloning)
"dpt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -101915,10 +101930,10 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dpu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -101976,7 +101991,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"dpz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -102044,7 +102059,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/surgery)
"dpE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -102214,14 +102229,14 @@
/turf/open/floor/plating,
/area/science/research/abandoned)
"dqa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel/white,
/area/science/misc_lab/range)
"dqb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -102233,7 +102248,7 @@
/turf/open/floor/plasteel/white,
/area/science/misc_lab/range)
"dqc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -102245,7 +102260,7 @@
/turf/open/floor/plasteel/white,
/area/science/misc_lab/range)
"dqd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -102274,13 +102289,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/science/misc_lab/range)
"dqf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -102299,7 +102314,7 @@
/turf/open/floor/plasteel/white,
/area/maintenance/department/science)
"dqg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -102314,10 +102329,10 @@
/turf/open/floor/plasteel/white,
/area/maintenance/department/science)
"dqh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -102562,7 +102577,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"dqC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/delivery,
@@ -102572,10 +102587,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hor)
"dqD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -102587,10 +102602,10 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/hor)
"dqE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -102608,7 +102623,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/hor)
"dqF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -102624,7 +102639,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/hor)
"dqG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -102638,10 +102653,10 @@
/area/crew_quarters/heads/hor)
"dqH" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/door/airlock/command{
@@ -102670,7 +102685,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/purple{
@@ -102685,7 +102700,7 @@
/obj/structure/disposalpipe/junction/flip{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/purple{
@@ -102717,7 +102732,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dqM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -102972,7 +102987,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dri" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -103098,7 +103113,7 @@
/area/crew_quarters/abandoned_gambling_den)
"drw" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/hollow/reinforced/directional{
@@ -103142,7 +103157,7 @@
dir = 2;
name = "Testing Range APC";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/table/reinforced,
/obj/machinery/recharger,
@@ -103184,7 +103199,7 @@
/turf/open/floor/plasteel/white,
/area/maintenance/department/science)
"drH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -103339,7 +103354,7 @@
dir = 8;
name = "Research Director's Office APC";
areastring = "/area/crew_quarters/heads/hor";
- pixel_x = -26
+ pixel_x = -25
},
/obj/structure/cable/white,
/obj/structure/disposalpipe/segment,
@@ -103356,7 +103371,7 @@
/area/crew_quarters/heads/hor)
"drZ" = (
/obj/structure/chair/office/light,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -103406,7 +103421,7 @@
/area/science/research)
"dsd" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -103442,7 +103457,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dsg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -103543,7 +103558,7 @@
/turf/open/floor/plating,
/area/maintenance/department/medical/central)
"dsq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -103552,7 +103567,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/tile/blue,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -103560,7 +103575,7 @@
"dss" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/blue,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc/auto_name/south,
@@ -103645,7 +103660,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dsB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -103869,7 +103884,7 @@
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"dsS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -103906,7 +103921,7 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"dsY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/window/eastleft,
@@ -104039,7 +104054,7 @@
/area/crew_quarters/heads/hor)
"dts" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/button/door{
@@ -104099,7 +104114,7 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/purple{
@@ -104150,7 +104165,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -104163,7 +104178,7 @@
/turf/closed/wall/r_wall,
/area/medical/genetics)
"dtD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -104175,10 +104190,10 @@
name = "Genetics Lab";
req_access_txt = "9"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -104191,7 +104206,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dtF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -104199,14 +104214,14 @@
/turf/open/floor/plating,
/area/medical/genetics)
"dtG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Medbay APC";
areastring = "/area/medical/medbay/central";
- pixel_x = -26
+ pixel_x = -25
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/tile/blue{
@@ -104215,10 +104230,10 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dtH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -104383,10 +104398,10 @@
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"dtV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -104401,7 +104416,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dtW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -104417,7 +104432,7 @@
req_access_txt = "12"
},
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -104493,7 +104508,7 @@
/area/crew_quarters/abandoned_gambling_den)
"dug" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/hollow/reinforced/directional{
@@ -104502,10 +104517,10 @@
/turf/open/floor/plating,
/area/crew_quarters/abandoned_gambling_den)
"duh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/hollow/reinforced/directional,
@@ -104513,7 +104528,7 @@
/area/crew_quarters/abandoned_gambling_den)
"dui" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/hollow/reinforced/end{
@@ -104615,7 +104630,7 @@
/area/maintenance/port)
"duv" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -104747,10 +104762,10 @@
/obj/machinery/computer/aifixer{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -104762,7 +104777,7 @@
/obj/structure/chair/office/light{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/research_director,
@@ -104774,14 +104789,14 @@
/obj/machinery/computer/mecha{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hor)
"duP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -104805,7 +104820,7 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -104846,7 +104861,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"duV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -104931,7 +104946,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"dvf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/purple{
@@ -105022,7 +105037,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"dvn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -105062,7 +105077,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dvq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -105073,7 +105088,7 @@
/turf/open/floor/plating,
/area/medical/genetics)
"dvr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -105156,10 +105171,10 @@
},
/area/crew_quarters/heads/cmo)
"dvx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105178,7 +105193,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"dvy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -105190,7 +105205,7 @@
/area/medical/medbay/central)
"dvz" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/medical{
@@ -105211,7 +105226,7 @@
/turf/open/floor/plasteel,
/area/medical/surgery)
"dvA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105226,7 +105241,7 @@
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"dvB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/medical_doctor,
@@ -105246,7 +105261,7 @@
/turf/open/floor/plasteel,
/area/medical/surgery)
"dvC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105264,7 +105279,7 @@
name = "Surgery Theatre";
req_access_txt = "45"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105282,7 +105297,7 @@
/turf/open/floor/plasteel,
/area/medical/surgery)
"dvE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105297,7 +105312,7 @@
/obj/machinery/computer/operating{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -105318,10 +105333,10 @@
"dvG" = (
/obj/structure/table/optable,
/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105341,7 +105356,7 @@
/area/medical/surgery)
"dvH" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105351,7 +105366,7 @@
/turf/open/floor/plasteel,
/area/medical/surgery)
"dvI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105365,7 +105380,7 @@
name = "Surgery Maintenance";
req_access_txt = "45"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -105380,10 +105395,10 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dvK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -105543,7 +105558,7 @@
/turf/open/floor/plasteel,
/area/science/research/abandoned)
"dwc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/blobstart,
@@ -105622,7 +105637,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/hor)
"dwq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -105660,7 +105675,7 @@
/area/crew_quarters/heads/hor)
"dwt" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/purple{
@@ -105688,7 +105703,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"dww" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -105698,14 +105713,14 @@
/area/science/robotics/mechbay)
"dwx" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dwy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/camera{
@@ -105718,14 +105733,14 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dwz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"dwA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/line,
@@ -105812,7 +105827,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"dwJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -105821,7 +105836,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -105837,7 +105852,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dwK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -105858,7 +105873,7 @@
/area/medical/genetics)
"dwL" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/item/clipboard,
@@ -105867,7 +105882,7 @@
dir = 4;
name = "Genetics Lab APC";
areastring = "/area/medical/genetics";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -105953,7 +105968,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"dwR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -105998,7 +106013,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dwU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
@@ -106019,10 +106034,10 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dwW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -106042,7 +106057,7 @@
/turf/open/floor/plasteel,
/area/medical/medbay/central)
"dwX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -106057,13 +106072,13 @@
name = "Chief Medical Officer's Office";
req_access_txt = "40"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -106081,7 +106096,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/cmo)
"dwZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -106094,10 +106109,10 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/cmo)
"dxa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -106112,7 +106127,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/cmo)
"dxb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -106124,7 +106139,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/cmo)
"dxc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -106139,7 +106154,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/cmo)
"dxd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -106160,13 +106175,13 @@
name = "Chief Medical Officer's Office";
req_access_txt = "40"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -106184,7 +106199,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/cmo)
"dxf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -106196,10 +106211,10 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dxg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -106275,7 +106290,7 @@
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"dxn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue,
@@ -106299,7 +106314,7 @@
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"dxq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -106525,7 +106540,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -106535,7 +106550,7 @@
/area/crew_quarters/heads/hor)
"dxX" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
@@ -106543,13 +106558,13 @@
/area/crew_quarters/heads/hor)
"dxY" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/door/airlock/command{
@@ -106566,7 +106581,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/hor)
"dxZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
@@ -106575,7 +106590,7 @@
/area/crew_quarters/heads/hor)
"dya" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -106620,7 +106635,7 @@
/area/science/robotics/lab)
"dyf" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/research/glass{
@@ -106676,10 +106691,10 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"dyj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -106699,7 +106714,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dyk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -106721,7 +106736,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dyl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -106742,10 +106757,10 @@
name = "Genetics Lab";
req_access_txt = "9"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -106763,7 +106778,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dyn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -106785,7 +106800,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/genetics)
"dyo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -106803,7 +106818,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"dyp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -106825,7 +106840,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dyq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -106847,7 +106862,7 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dyr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/holopad,
@@ -106897,11 +106912,11 @@
/turf/open/floor/plasteel,
/area/medical/genetics)
"dyu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -106912,7 +106927,7 @@
/turf/open/floor/plating,
/area/medical/genetics)
"dyv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -106924,10 +106939,10 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dyw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -106964,7 +106979,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/cmo)
"dyz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -107098,7 +107113,7 @@
dir = 2;
name = "Surgery APC";
areastring = "/area/medical/surgery";
- pixel_y = -26
+ pixel_y = -23
},
/obj/machinery/camera{
c_tag = "Medbay - Surgery";
@@ -107154,11 +107169,11 @@
/turf/open/floor/plasteel/dark,
/area/medical/surgery)
"dyL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -107171,14 +107186,14 @@
/area/maintenance/starboard/aft)
"dyM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
areastring = "/area/maintenance/starboard/aft";
dir = 4;
name = "Starboard Quarter Maintenance APC";
- pixel_x = 26
+ pixel_x = 24
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
@@ -107202,9 +107217,9 @@
dir = 2;
name = "Auxiliary Construction Zone APC";
areastring = "/area/hallway/secondary/construction";
- pixel_y = -26
+ pixel_y = -23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/bot,
@@ -107213,7 +107228,7 @@
"dyQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/delivery,
@@ -107343,7 +107358,7 @@
dir = 4
},
/obj/effect/landmark/xeno_spawn,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -107362,7 +107377,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -107384,7 +107399,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -107394,7 +107409,7 @@
dir = 4
},
/obj/effect/turf_decal/delivery,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -107410,7 +107425,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -107421,19 +107436,19 @@
/area/science/research/abandoned)
"dzn" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port)
"dzo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -107449,7 +107464,7 @@
/area/maintenance/port)
"dzp" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -107464,7 +107479,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"dzq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -107480,7 +107495,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"dzr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -107526,7 +107541,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -107548,7 +107563,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/hor)
"dzC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -107632,7 +107647,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dzJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -107711,7 +107726,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"dzP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -107870,7 +107885,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/cmo)
"dAc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -107895,7 +107910,7 @@
/area/crew_quarters/heads/cmo)
"dAe" = (
/obj/structure/chair/office/light,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -107909,7 +107924,7 @@
/area/crew_quarters/heads/cmo)
"dAf" = (
/obj/item/twohanded/required/kirbyplants/random,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/light{
@@ -107919,7 +107934,7 @@
dir = 4;
name = "Chief Medical Officer's Office APC";
areastring = "/area/crew_quarters/heads/cmo";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Medbay - Chief Medical Officer's Office";
@@ -107946,7 +107961,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dAh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -107974,7 +107989,7 @@
},
/obj/effect/mapping_helpers/airlock/abandoned,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -107994,7 +108009,7 @@
/turf/closed/wall/r_wall,
/area/maintenance/solars/starboard/aft)
"dAl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/item/radio/intercom{
@@ -108007,7 +108022,7 @@
/area/maintenance/solars/starboard/aft)
"dAm" = (
/obj/machinery/power/smes,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/light/small{
@@ -108073,7 +108088,7 @@
/area/maintenance/port)
"dAv" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -108092,21 +108107,21 @@
/turf/open/floor/plasteel,
/area/maintenance/port)
"dAw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Toxins Lab APC";
areastring = "/area/science/mixing";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/science/mixing)
"dAx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -108118,7 +108133,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"dAy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -108133,7 +108148,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -108172,7 +108187,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/hor)
"dAG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/research_director,
@@ -108231,7 +108246,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dAK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -108241,7 +108256,7 @@
/area/science/robotics/lab)
"dAL" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -108250,7 +108265,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dAM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -108259,7 +108274,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dAN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -108295,7 +108310,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dAQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -108307,7 +108322,7 @@
/area/medical/genetics)
"dAR" = (
/obj/structure/filingcabinet/chestdrawer,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/button/door{
@@ -108327,10 +108342,10 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"dAS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -108472,7 +108487,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dBf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -108497,7 +108512,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dBh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -108515,7 +108530,7 @@
/area/crew_quarters/heads/cmo)
"dBi" = (
/obj/machinery/disposal/bin,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -108528,13 +108543,13 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/cmo)
"dBj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -108551,7 +108566,7 @@
/area/crew_quarters/heads/cmo)
"dBk" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/paper_bin,
@@ -108568,10 +108583,10 @@
/area/crew_quarters/heads/cmo)
"dBl" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/item/folder/blue{
@@ -108594,7 +108609,7 @@
"dBm" = (
/obj/machinery/computer/med_data/laptop,
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -108608,7 +108623,7 @@
},
/area/crew_quarters/heads/cmo)
"dBn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -108707,7 +108722,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dBu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -108725,7 +108740,7 @@
},
/area/maintenance/starboard/aft)
"dBv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -108743,7 +108758,7 @@
},
/area/maintenance/starboard/aft)
"dBw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -108753,17 +108768,17 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dBx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dBy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -108773,7 +108788,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dBz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -108782,7 +108797,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dBA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -108801,7 +108816,7 @@
},
/area/maintenance/starboard/aft)
"dBB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -108818,10 +108833,10 @@
},
/area/maintenance/starboard/aft)
"dBC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -108832,10 +108847,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dBD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -108853,7 +108868,7 @@
},
/area/maintenance/starboard/aft)
"dBE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -108863,7 +108878,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dBF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -108878,7 +108893,7 @@
name = "Starboard Quarter Solar Access";
req_access_txt = "10"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -108893,10 +108908,10 @@
/turf/open/floor/plasteel,
/area/maintenance/solars/starboard/aft)
"dBH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -109096,7 +109111,7 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"dCc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -109132,7 +109147,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/hor)
"dCk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/camera{
@@ -109148,7 +109163,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/hor)
"dCl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/purple,
@@ -109207,7 +109222,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dCq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -109227,7 +109242,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dCw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -109249,9 +109264,9 @@
dir = 4;
name = "Aft Primary Hallway APC";
areastring = "/area/hallway/primary/aft";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -109262,7 +109277,7 @@
/area/medical/morgue)
"dCz" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/grunge{
@@ -109294,7 +109309,7 @@
/area/maintenance/department/medical/morgue)
"dCE" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -109328,7 +109343,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/cmo)
"dCH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -109474,7 +109489,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dCQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -109569,7 +109584,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dCZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -109596,7 +109611,7 @@
dir = 2;
name = "Starboard Quarter Solar APC";
areastring = "/area/maintenance/solars/starboard/aft";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -109604,7 +109619,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard/aft)
"dDd" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/stripes/line,
@@ -109685,7 +109700,7 @@
/turf/open/floor/plating,
/area/science/research/abandoned)
"dDm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -109747,7 +109762,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"dDp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -109862,7 +109877,7 @@
/area/science/robotics/lab)
"dDA" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -109908,7 +109923,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dDG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -109957,7 +109972,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/morgue)
"dDK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -110074,7 +110089,7 @@
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
"dDU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -110112,7 +110127,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/cmo)
"dDX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/vending/wallmed{
@@ -110284,7 +110299,7 @@
},
/obj/effect/mapping_helpers/airlock/abandoned,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -110371,7 +110386,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"dEs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/scientist,
@@ -110517,7 +110532,7 @@
/area/science/server)
"dEF" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -110549,7 +110564,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dEI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -110593,7 +110608,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -110633,7 +110648,7 @@
/area/medical/morgue)
"dET" = (
/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -110736,7 +110751,7 @@
/area/maintenance/department/medical/morgue)
"dFc" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -110754,7 +110769,7 @@
/area/crew_quarters/heads/cmo)
"dFf" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
@@ -110766,7 +110781,7 @@
name = "Chief Medical Officer's Quarters";
req_access_txt = "40"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -110778,7 +110793,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/cmo)
"dFh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced/tinted,
@@ -110825,14 +110840,14 @@
/turf/open/floor/plating,
/area/crew_quarters/theatre/abandoned)
"dFm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Abandoned Theatre APC";
areastring = "/area/crew_quarters/theatre/abandoned";
- pixel_y = 24
+ pixel_y = 23
},
/turf/open/floor/plating,
/area/crew_quarters/theatre/abandoned)
@@ -110916,7 +110931,7 @@
/turf/open/floor/plating,
/area/security/detectives_office/private_investigators_office)
"dFu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -110969,7 +110984,7 @@
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/starboard/aft)
"dFz" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/item/radio/intercom{
@@ -111035,7 +111050,7 @@
/turf/open/floor/plasteel,
/area/science/misc_lab)
"dFG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -111158,7 +111173,7 @@
/turf/open/floor/plasteel,
/area/science/storage)
"dFR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/computer/rdservercontrol{
@@ -111168,7 +111183,7 @@
dir = 8;
name = "Research Division Server Room APC";
areastring = "/area/science/server";
- pixel_x = -26
+ pixel_x = -25
},
/obj/machinery/light_switch{
pixel_x = -28;
@@ -111190,10 +111205,10 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -111213,7 +111228,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -111236,7 +111251,7 @@
name = "Research Division Server Room";
req_access_txt = "30"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -111256,7 +111271,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/purple{
@@ -111268,11 +111283,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -111296,14 +111311,14 @@
/area/science/research)
"dFY" = (
/obj/machinery/disposal/bin,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Robotics Lab APC";
areastring = "/area/science/robotics/lab";
- pixel_x = -26
+ pixel_x = -25
},
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -111312,10 +111327,10 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dFZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -111409,10 +111424,10 @@
},
/area/medical/morgue)
"dGj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -111433,7 +111448,7 @@
/area/medical/morgue)
"dGk" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -111453,7 +111468,7 @@
/turf/open/floor/plasteel,
/area/medical/morgue)
"dGl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -111473,7 +111488,7 @@
/area/medical/morgue)
"dGm" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/medical_doctor,
@@ -111495,7 +111510,7 @@
"dGn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/old,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/blobstart,
@@ -111515,7 +111530,7 @@
/turf/open/floor/plasteel,
/area/medical/morgue)
"dGo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -111532,7 +111547,7 @@
/turf/open/floor/plasteel,
/area/medical/morgue)
"dGp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light_switch{
@@ -111561,7 +111576,7 @@
/area/medical/morgue)
"dGq" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/grunge{
@@ -111580,7 +111595,7 @@
/turf/open/floor/plasteel,
/area/maintenance/department/medical/morgue)
"dGr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -111599,7 +111614,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/department/medical/morgue)
"dGs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/blobstart,
@@ -111610,7 +111625,7 @@
/area/maintenance/department/medical/morgue)
"dGt" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -111620,13 +111635,13 @@
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
"dGu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -111698,7 +111713,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/cmo)
"dGA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -111731,7 +111746,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dGC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -111747,7 +111762,7 @@
/turf/open/floor/wood,
/area/crew_quarters/theatre/abandoned)
"dGF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -111811,7 +111826,7 @@
/turf/open/floor/plating,
/area/security/detectives_office/private_investigators_office)
"dGM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -111973,7 +111988,7 @@
dir = 4
},
/obj/machinery/power/apc/auto_name/east,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -111989,7 +112004,7 @@
/turf/open/floor/plasteel,
/area/science/misc_lab)
"dHf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -112033,7 +112048,7 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"dHj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -112088,7 +112103,7 @@
/turf/open/floor/plasteel,
/area/science/storage)
"dHq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -112103,10 +112118,10 @@
name = "Server Access";
req_access_txt = "30"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -112122,7 +112137,7 @@
/turf/open/floor/plasteel/dark,
/area/science/server)
"dHs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -112135,7 +112150,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -112173,7 +112188,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dHv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -112274,7 +112289,7 @@
"dHE" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -112428,7 +112443,7 @@
/area/maintenance/department/medical/morgue)
"dHP" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -112566,7 +112581,7 @@
},
/area/crew_quarters/theatre/abandoned)
"dHZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/wood,
@@ -112605,20 +112620,20 @@
/turf/open/floor/plating,
/area/crew_quarters/theatre/abandoned)
"dId" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Private Investigator's Office APC";
areastring = "/area/security/detectives_office/private_investigators_office";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/turf/open/floor/plating,
/area/security/detectives_office/private_investigators_office)
"dIe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/landmark/xeno_spawn,
@@ -112660,7 +112675,7 @@
id = "toxinsdriver";
pixel_x = -24
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -112714,7 +112729,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -112738,7 +112753,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -112757,29 +112772,29 @@
/obj/effect/turf_decal/tile/neutral{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/science/misc_lab)
"dIr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/blobstart,
/obj/item/beacon,
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/effect/turf_decal/bot,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/science/misc_lab)
"dIs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -112802,7 +112817,7 @@
/area/science/misc_lab)
"dIt" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -112829,7 +112844,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"dIu" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -112844,7 +112859,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"dIv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -112857,13 +112872,13 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"dIw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -112874,7 +112889,7 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"dIx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -112885,7 +112900,7 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"dIy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -112905,7 +112920,7 @@
id = "rdtoxins";
name = "Toxins Lab Shutters"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -112923,7 +112938,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -112932,7 +112947,7 @@
"dIB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -112941,7 +112956,7 @@
"dIC" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -112951,14 +112966,14 @@
/area/science/storage)
"dID" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/science/storage)
"dIE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/delivery,
@@ -113018,10 +113033,10 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"dIJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -113041,14 +113056,14 @@
/turf/open/floor/plasteel,
/area/science/research)
"dIK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 4;
name = "Research Division APC";
areastring = "/area/science/research";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -113068,7 +113083,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dIM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -113146,7 +113161,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/lab)
"dIT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/event_spawn,
@@ -113175,7 +113190,7 @@
dir = 2;
name = "Morgue APC";
areastring = "/area/medical/morgue";
- pixel_y = -26
+ pixel_y = -23
},
/turf/open/floor/plating,
/area/medical/morgue)
@@ -113270,11 +113285,11 @@
/turf/open/floor/plating,
/area/maintenance/department/medical/morgue)
"dJf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -113295,9 +113310,9 @@
dir = 2;
name = "Morgue Maintenance APC";
areastring = "/area/maintenance/department/medical/morgue";
- pixel_y = -26
+ pixel_y = -23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -113389,7 +113404,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"dJn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green,
@@ -113413,10 +113428,10 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dJq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -113437,7 +113452,7 @@
req_access_txt = "12"
},
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -113453,7 +113468,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/theatre/abandoned)
"dJs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -113462,7 +113477,7 @@
/turf/open/floor/wood,
/area/crew_quarters/theatre/abandoned)
"dJt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -113473,7 +113488,7 @@
/area/crew_quarters/theatre/abandoned)
"dJu" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -113544,11 +113559,11 @@
},
/area/security/detectives_office/private_investigators_office)
"dJC" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/wood,
/area/security/detectives_office/private_investigators_office)
"dJD" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
/area/security/detectives_office/private_investigators_office)
@@ -113686,7 +113701,7 @@
/turf/open/floor/plasteel,
/area/science/misc_lab)
"dJR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -113735,7 +113750,7 @@
/turf/open/floor/plasteel,
/area/science/mixing)
"dJV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -113827,7 +113842,7 @@
dir = 4;
name = "Toxins Storage APC";
areastring = "/area/science/storage";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/white,
/obj/effect/turf_decal/bot,
@@ -113871,7 +113886,7 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"dKi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -113888,7 +113903,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"dKj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -113930,7 +113945,7 @@
/area/hallway/primary/aft)
"dKm" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -113952,7 +113967,7 @@
/area/medical/medbay/central)
"dKo" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/virology{
@@ -114101,7 +114116,7 @@
/turf/open/floor/plasteel,
/area/science/misc_lab)
"dKD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -114119,7 +114134,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dKE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -114159,7 +114174,7 @@
name = "Break Room";
req_access_txt = "47"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -114188,7 +114203,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dKK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -114276,13 +114291,13 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"dKS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -114298,7 +114313,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"dKT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -114313,7 +114328,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"dKU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -114330,7 +114345,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -114348,7 +114363,7 @@
/turf/open/floor/plasteel,
/area/maintenance/aft)
"dKW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -114362,7 +114377,7 @@
/turf/open/floor/plasteel,
/area/maintenance/aft)
"dKX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -114374,7 +114389,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"dKY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -114387,7 +114402,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"dKZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -114408,7 +114423,7 @@
},
/area/maintenance/aft)
"dLa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -114428,16 +114443,16 @@
},
/area/maintenance/aft)
"dLb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -114446,7 +114461,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"dLc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -114475,7 +114490,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"dLe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/rack,
@@ -114497,7 +114512,7 @@
},
/area/maintenance/aft)
"dLf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/blobstart,
@@ -114516,10 +114531,10 @@
},
/area/maintenance/aft)
"dLg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -114533,7 +114548,7 @@
/turf/open/floor/plasteel,
/area/maintenance/aft)
"dLh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -114571,7 +114586,7 @@
/turf/open/floor/plasteel/white,
/area/maintenance/department/medical)
"dLk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -114723,7 +114738,7 @@
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office/private_investigators_office)
"dLx" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/grimy,
@@ -114854,7 +114869,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dLQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -114904,7 +114919,7 @@
/area/maintenance/port/aft)
"dLV" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -115008,7 +115023,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"dMf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -115048,10 +115063,10 @@
},
/area/maintenance/port/aft)
"dMi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -115060,7 +115075,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dMj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -115070,7 +115085,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dMk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115083,24 +115098,24 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dMl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dMm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115114,7 +115129,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dMn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -115129,7 +115144,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115144,7 +115159,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dMp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115155,7 +115170,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"dMq" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115169,7 +115184,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"dMr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115284,7 +115299,7 @@
name = "Aft Maintenance APC";
areastring = "/area/maintenance/aft";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/turf/open/floor/plating,
/area/maintenance/aft)
@@ -115306,7 +115321,7 @@
/turf/open/floor/plasteel,
/area/maintenance/aft)
"dME" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -115320,7 +115335,7 @@
/turf/open/floor/plasteel,
/area/maintenance/aft)
"dMF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115329,7 +115344,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"dMG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115386,7 +115401,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"dMM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -115399,7 +115414,7 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"dMN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -115413,7 +115428,7 @@
/turf/open/floor/plasteel,
/area/maintenance/aft)
"dMO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -115438,7 +115453,7 @@
/turf/open/floor/plasteel,
/area/maintenance/department/medical)
"dMP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -115451,22 +115466,22 @@
/obj/effect/turf_decal/tile/green{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/white,
/area/maintenance/department/medical)
"dMQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115475,10 +115490,10 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/bot,
@@ -115488,7 +115503,7 @@
/turf/open/floor/plasteel,
/area/maintenance/department/medical)
"dMR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115503,7 +115518,7 @@
/area/maintenance/department/medical)
"dMS" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -115525,7 +115540,7 @@
/turf/open/floor/plasteel,
/area/maintenance/department/medical)
"dMT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115535,7 +115550,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dMU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115544,7 +115559,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dMV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -115558,7 +115573,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dMW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -115568,7 +115583,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
"dMX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -115581,7 +115596,7 @@
/turf/open/floor/plasteel,
/area/maintenance/starboard/aft)
"dMY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -115734,11 +115749,11 @@
/area/maintenance/port/aft)
"dNu" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -115755,7 +115770,7 @@
/area/maintenance/port/aft)
"dNv" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -115764,7 +115779,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dNw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -115784,7 +115799,7 @@
/area/maintenance/port/aft)
"dNx" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -115804,10 +115819,10 @@
/area/maintenance/port/aft)
"dNy" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -115815,7 +115830,7 @@
/area/maintenance/port/aft)
"dNz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -115829,7 +115844,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dNA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -115889,7 +115904,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/red{
@@ -115905,7 +115920,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"dNG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -115927,7 +115942,7 @@
/turf/open/floor/plasteel,
/area/science/research)
"dNH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -115966,7 +115981,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dNK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -115978,7 +115993,7 @@
/area/security/checkpoint/customs/auxiliary)
"dNM" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/command/glass{
@@ -116066,7 +116081,7 @@
/turf/open/floor/plasteel/white,
/area/maintenance/department/medical)
"dNV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -116166,7 +116181,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/delivery,
@@ -116178,7 +116193,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -116189,7 +116204,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -116203,7 +116218,7 @@
/area/maintenance/port/aft)
"dOi" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -116248,7 +116263,7 @@
/area/maintenance/port/aft)
"dOn" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -116325,7 +116340,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -116400,7 +116415,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dOy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -116438,7 +116453,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs/auxiliary)
"dOA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light_switch{
@@ -116608,7 +116623,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/barricade/wooden,
@@ -116670,7 +116685,7 @@
dir = 1
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -116742,7 +116757,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dPb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/blobstart,
@@ -116770,7 +116785,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs/auxiliary)
"dPd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -116808,7 +116823,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs/auxiliary)
"dPg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -116870,7 +116885,7 @@
/area/maintenance/department/medical)
"dPo" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -116911,24 +116926,24 @@
/turf/closed/wall/r_wall,
/area/medical/virology)
"dPr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/medical/virology)
"dPs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/medical/virology)
"dPt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -116970,7 +116985,7 @@
/area/library/abandoned)
"dPy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -116999,12 +117014,12 @@
/turf/open/floor/plasteel/grimy,
/area/library/abandoned)
"dPC" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/grimy,
/area/library/abandoned)
"dPD" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/light/small{
dir = 1
},
@@ -117017,7 +117032,7 @@
/area/library/abandoned)
"dPF" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -117032,17 +117047,17 @@
/area/maintenance/port/aft)
"dPG" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dPH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -117078,9 +117093,9 @@
dir = 1;
name = "Port Quarter Maintenance APC";
areastring = "/area/maintenance/port/aft";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -117137,7 +117152,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral,
@@ -117191,7 +117206,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dPU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -117206,14 +117221,14 @@
/obj/machinery/computer/card{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
areastring = "/area/security/checkpoint/customs/auxiliary";
dir = 8;
name = "Departures Customs APC";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/machinery/camera{
@@ -117234,13 +117249,13 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs/auxiliary)
"dPW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -117259,7 +117274,7 @@
/obj/structure/chair/office/light{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -117277,7 +117292,7 @@
/area/security/checkpoint/customs/auxiliary)
"dPY" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/folder/blue,
@@ -117296,10 +117311,10 @@
/area/security/checkpoint/customs/auxiliary)
"dPZ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/door/window/brigdoor/southright{
@@ -117363,7 +117378,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dQf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -117384,7 +117399,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dQh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -117399,7 +117414,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dQj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -117448,7 +117463,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dQo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/filingcabinet/chestdrawer,
@@ -117480,7 +117495,7 @@
/turf/open/floor/plating,
/area/library/abandoned)
"dQr" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
@@ -117501,7 +117516,7 @@
"dQt" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -117520,7 +117535,7 @@
/turf/open/floor/plasteel/dark,
/area/library/abandoned)
"dQv" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/decal/cleanable/dirt,
@@ -117538,7 +117553,7 @@
/turf/open/floor/carpet,
/area/library/abandoned)
"dQy" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/grimy,
@@ -117549,7 +117564,7 @@
/area/maintenance/port/aft)
"dQA" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -117607,7 +117622,7 @@
/area/maintenance/port/aft)
"dQE" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -117628,7 +117643,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dQH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -117636,7 +117651,7 @@
req_access_txt = "47"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -117652,7 +117667,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dQJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -117681,7 +117696,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs/auxiliary)
"dQL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -117790,7 +117805,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dQV" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -117805,7 +117820,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dQW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -117821,7 +117836,7 @@
/area/medical/virology)
"dQX" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -117863,7 +117878,7 @@
pixel_y = 24;
req_access_txt = "39"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -117876,13 +117891,13 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dQZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/light/small{
@@ -117900,13 +117915,13 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dRa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/stripes/line{
@@ -117926,7 +117941,7 @@
name = "Virology Access";
req_access_txt = "39"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -117944,7 +117959,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dRc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light_switch{
@@ -117963,10 +117978,10 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dRd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -118033,7 +118048,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dRi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -118095,7 +118110,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/virology)
"dRm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/bed,
@@ -118167,7 +118182,7 @@
},
/area/library/abandoned)
"dRt" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/grimy,
@@ -118191,7 +118206,7 @@
/turf/open/floor/carpet,
/area/library/abandoned)
"dRw" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/decal/cleanable/dirt,
@@ -118223,10 +118238,10 @@
/area/maintenance/port/aft)
"dRz" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -118235,7 +118250,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dRA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -118245,7 +118260,7 @@
/area/maintenance/port/aft)
"dRB" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -118255,10 +118270,10 @@
/area/maintenance/port/aft)
"dRC" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -118268,22 +118283,22 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dRD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dRE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -118296,7 +118311,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dRF" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -118315,7 +118330,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dRG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -118325,10 +118340,10 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dRH" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -118338,14 +118353,14 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dRI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -118359,7 +118374,7 @@
},
/area/maintenance/port/aft)
"dRJ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -118374,7 +118389,7 @@
},
/area/maintenance/port/aft)
"dRK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -118384,7 +118399,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dRL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -118402,7 +118417,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dRM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -118413,7 +118428,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dRN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -118430,10 +118445,10 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dRO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -118461,7 +118476,7 @@
/area/security/checkpoint/customs/auxiliary)
"dRQ" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/storage/box/ids,
@@ -118586,10 +118601,10 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dSe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/green{
@@ -118605,7 +118620,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dSf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/green{
@@ -118619,7 +118634,7 @@
name = "Virology Break Room";
req_access_txt = "39"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -118631,7 +118646,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dSh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/green{
@@ -118640,7 +118655,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dSi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -118657,13 +118672,13 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dSj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -118682,7 +118697,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dSk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/green,
@@ -118693,7 +118708,7 @@
name = "Virology Cabin";
req_access_txt = "39"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -118705,7 +118720,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dSm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light_switch{
@@ -118718,10 +118733,10 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dSn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/landmark/start/virologist,
@@ -118779,7 +118794,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/blood/old,
@@ -118794,7 +118809,7 @@
/turf/open/floor/plating,
/area/library/abandoned)
"dSw" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/grimy,
@@ -118816,7 +118831,7 @@
/area/maintenance/port/aft)
"dSy" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -118836,7 +118851,7 @@
req_access_txt = "27"
},
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -118891,7 +118906,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dSG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -118934,7 +118949,7 @@
/turf/closed/wall,
/area/hallway/secondary/exit/departure_lounge)
"dSL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance_hatch{
@@ -118954,14 +118969,14 @@
/area/maintenance/port/aft)
"dSM" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/customs/auxiliary)
"dSN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -119040,7 +119055,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dSZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -119091,7 +119106,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dTe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -119123,7 +119138,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dTi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -119155,14 +119170,14 @@
/area/solar/starboard/aft)
"dTl" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Abandoned Library APC";
areastring = "/area/library/abandoned";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/turf/open/floor/wood{
@@ -119171,7 +119186,7 @@
/area/library/abandoned)
"dTm" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/wood{
@@ -119179,20 +119194,20 @@
},
/area/library/abandoned)
"dTn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/wood,
/area/library/abandoned)
"dTo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/grimy,
/area/library/abandoned)
"dTp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/grimy,
@@ -119231,7 +119246,7 @@
/turf/open/floor/plating,
/area/library/abandoned)
"dTv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -119255,7 +119270,7 @@
/area/chapel/office)
"dTy" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -119306,7 +119321,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 9
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -119331,14 +119346,14 @@
dir = 1;
name = "Departure Lounge APC";
areastring = "/area/hallway/secondary/exit/departure_lounge";
- pixel_y = 28
+ pixel_y = 23
},
/obj/machinery/camera{
c_tag = "Departures - Fore";
dir = 2;
name = "departures camera"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -119378,7 +119393,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dTS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green{
@@ -119449,7 +119464,7 @@
"dTW" = (
/obj/item/clothing/neck/stethoscope,
/obj/structure/table,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/storage/box/donkpockets,
@@ -119508,7 +119523,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/virology)
"dUa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -119565,7 +119580,7 @@
/area/maintenance/port/aft)
"dUh" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral,
@@ -119597,7 +119612,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"dUj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -119695,7 +119710,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main)
"dUp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -119777,7 +119792,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -119796,7 +119811,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dUy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -119839,37 +119854,37 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dUK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/medical/virology)
"dUL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/medical/virology)
"dUM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/medical/virology)
"dUN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -119887,10 +119902,10 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dUP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -119913,10 +119928,10 @@
dir = 4;
name = "Virology Satellite APC";
areastring = "/area/medical/virology";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/green{
@@ -119975,7 +119990,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"dUY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral,
@@ -119985,7 +120000,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"dUZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -120041,7 +120056,7 @@
/turf/open/floor/plasteel/grimy,
/area/chapel/main)
"dVd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -120085,7 +120100,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dVj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -120114,7 +120129,7 @@
/area/hallway/secondary/exit/departure_lounge)
"dVt" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/clothing/gloves/color/latex,
@@ -120140,7 +120155,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dVv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/computer/pandemic,
@@ -120166,7 +120181,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dVy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -120293,7 +120308,7 @@
/turf/open/floor/plasteel/dark,
/area/library/abandoned)
"dVL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -120309,7 +120324,7 @@
/area/maintenance/port/aft)
"dVM" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -120335,7 +120350,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"dVO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/chaplain,
@@ -120379,7 +120394,7 @@
/turf/open/floor/plasteel/grimy,
/area/chapel/main)
"dVS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -120418,7 +120433,7 @@
/turf/open/floor/plasteel,
/area/chapel/main)
"dVX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -120428,7 +120443,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dVY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -120448,10 +120463,10 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dVZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -120470,7 +120485,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dWa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -120489,7 +120504,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dWb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -120584,7 +120599,7 @@
pixel_x = -32
},
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/reagentgrinder{
@@ -120606,7 +120621,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dWo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green{
@@ -120630,7 +120645,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dWr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -120650,7 +120665,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dWt" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -120670,10 +120685,10 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dWv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -120689,7 +120704,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dWw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -120772,7 +120787,7 @@
/area/library/abandoned)
"dWI" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -120937,13 +120952,13 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dXa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/smartfridge/chemistry/virology/preloaded,
@@ -120953,7 +120968,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dXb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/green{
@@ -120965,13 +120980,13 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dXc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -120990,7 +121005,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dXd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/holopad,
@@ -121001,7 +121016,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dXe" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -121020,13 +121035,13 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dXf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -121042,7 +121057,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dXg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -121060,13 +121075,13 @@
name = "Virology Lab";
req_access_txt = "39"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -121084,7 +121099,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dXi" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -121100,10 +121115,10 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dXj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -121136,7 +121151,7 @@
/turf/closed/wall,
/area/medical/virology)
"dXm" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -121149,10 +121164,10 @@
name = "Virology Containment Cell";
req_access_txt = "39"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -121164,7 +121179,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dXo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -121178,12 +121193,12 @@
/turf/open/floor/wood,
/area/library/abandoned)
"dXq" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/library/abandoned)
"dXr" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/wood{
@@ -121272,7 +121287,7 @@
/turf/open/floor/plasteel/dark,
/area/library/abandoned)
"dXA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -121298,7 +121313,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"dXC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/blobstart,
@@ -121393,7 +121408,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dXK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -121444,7 +121459,7 @@
dir = 4;
pixel_x = -23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/book/manual/wiki/infections,
@@ -121473,7 +121488,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dXW" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -121494,7 +121509,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dXZ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -121516,7 +121531,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dYc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -121561,7 +121576,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dYg" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green{
@@ -121692,7 +121707,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"dYw" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -121713,7 +121728,7 @@
pixel_x = -26;
pixel_y = -26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -121770,7 +121785,7 @@
},
/area/chapel/main)
"dYD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -121835,7 +121850,7 @@
/area/hallway/secondary/exit/departure_lounge)
"dYP" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/storage/box/beakers{
@@ -121860,7 +121875,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dYR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/disposal/bin,
@@ -121887,7 +121902,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dYU" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -121923,10 +121938,10 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dYX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -121943,7 +121958,7 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dYY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -121958,13 +121973,13 @@
name = "Virology Access";
req_access_txt = "39"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -121979,10 +121994,10 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dZa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -121997,11 +122012,11 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dZb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/green{
@@ -122017,10 +122032,10 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dZc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/holopad,
@@ -122032,13 +122047,13 @@
/turf/open/floor/plasteel,
/area/medical/virology)
"dZd" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/green{
@@ -122055,10 +122070,10 @@
/area/medical/virology)
"dZe" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/folder/white,
@@ -122071,7 +122086,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"dZf" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -122100,7 +122115,7 @@
name = "Crematorium";
req_access_txt = "27"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -122191,14 +122206,14 @@
/area/hallway/secondary/exit/departure_lounge)
"dZw" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/medical/virology)
"dZx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable/white,
@@ -122206,7 +122221,7 @@
/turf/open/floor/plating,
/area/medical/virology)
"dZy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/cable/white,
@@ -122214,7 +122229,7 @@
/turf/open/floor/plating,
/area/medical/virology)
"dZz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -122249,7 +122264,7 @@
/turf/open/floor/plating,
/area/medical/virology)
"dZC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/sink{
@@ -122269,7 +122284,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green{
@@ -122297,7 +122312,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green,
@@ -122305,7 +122320,7 @@
/area/medical/virology)
"dZG" = (
/obj/structure/table/glass,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/newscaster{
@@ -122386,7 +122401,7 @@
/area/maintenance/port/aft)
"dZM" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -122420,7 +122435,7 @@
pixel_x = -26;
pixel_y = 26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -122441,10 +122456,10 @@
dir = 8;
name = "Chapel APC";
areastring = "/area/chapel/main";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel{
@@ -122453,7 +122468,7 @@
},
/area/chapel/main)
"dZR" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel{
@@ -122462,7 +122477,7 @@
},
/area/chapel/main)
"dZS" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel{
@@ -122471,7 +122486,7 @@
},
/area/chapel/main)
"dZT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -122519,7 +122534,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"dZY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -122595,7 +122610,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"eag" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/table,
@@ -122641,7 +122656,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -122655,7 +122670,7 @@
/area/maintenance/solars/port/aft)
"eam" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -122668,14 +122683,14 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"ean" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
"eao" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -122686,10 +122701,10 @@
/area/maintenance/port/aft)
"eap" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/blue,
@@ -122700,7 +122715,7 @@
/area/maintenance/port/aft)
"eaq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue,
@@ -122711,17 +122726,17 @@
/area/maintenance/port/aft)
"ear" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
"eas" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue,
@@ -122732,7 +122747,7 @@
/area/maintenance/port/aft)
"eat" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral,
@@ -122766,7 +122781,7 @@
/obj/item/radio/intercom{
pixel_x = 26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -122881,7 +122896,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green{
@@ -122901,7 +122916,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green{
@@ -122939,7 +122954,7 @@
/area/maintenance/solars/port/aft)
"eaS" = (
/obj/machinery/power/smes,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/light/small{
@@ -122951,7 +122966,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"eaT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/camera{
@@ -122973,7 +122988,7 @@
/area/maintenance/solars/port/aft)
"eaV" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -123037,7 +123052,7 @@
name = "Auxiliary E.V.A. Storage";
req_access_txt = "18"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/barricade/wooden,
@@ -123090,7 +123105,7 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -123209,7 +123224,7 @@
},
/obj/structure/chair/office/light,
/obj/effect/decal/cleanable/greenglow,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green,
@@ -123230,7 +123245,7 @@
dir = 8
},
/obj/structure/chair/office/light,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green{
@@ -123344,10 +123359,10 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"ebI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -123364,7 +123379,7 @@
name = "Port Quarter Solar Access";
req_access_txt = "10"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -123379,7 +123394,7 @@
/turf/open/floor/plasteel,
/area/maintenance/solars/port/aft)
"ebK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -123415,7 +123430,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"ebP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -123463,7 +123478,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"ebT" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -123579,7 +123594,7 @@
/obj/item/folder/white,
/obj/item/pen/red,
/obj/effect/turf_decal/delivery,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -123598,7 +123613,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
"ecl" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/airalarm{
@@ -123614,7 +123629,7 @@
dir = 2;
name = "Port Quarter Solar APC";
areastring = "/area/maintenance/solars/port/aft";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -123658,7 +123673,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"ecr" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -123669,7 +123684,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"ecs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -123739,7 +123754,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"ecx" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -123886,7 +123901,7 @@
/area/maintenance/port/aft)
"ecN" = (
/obj/structure/rack,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -123929,7 +123944,7 @@
name = "Relic Closet";
req_access_txt = "27"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -124021,7 +124036,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"ecY" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -124190,7 +124205,7 @@
/area/maintenance/port/aft)
"edi" = (
/obj/structure/rack,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -124298,7 +124313,7 @@
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
"edn" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
@@ -124468,7 +124483,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"edz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -124539,7 +124554,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/port/aft)
"edK" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -124549,10 +124564,10 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"edL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -124562,7 +124577,7 @@
/area/maintenance/port/aft)
"edM" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -124572,17 +124587,17 @@
/area/maintenance/port/aft)
"edN" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"edO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -124591,10 +124606,10 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"edP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -124604,7 +124619,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"edQ" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -124630,11 +124645,11 @@
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
"edU" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
"edV" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
@@ -124668,7 +124683,7 @@
/area/security/checkpoint/escape)
"eea" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/security/glass{
@@ -124685,7 +124700,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"eeb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -124693,10 +124708,10 @@
/area/security/checkpoint/escape)
"eec" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/line{
@@ -124708,7 +124723,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"eed" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -124720,10 +124735,10 @@
/turf/closed/wall,
/area/security/checkpoint/escape)
"eef" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -124732,10 +124747,10 @@
/area/security/checkpoint/escape)
"eeg" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/door/airlock/security/glass{
@@ -124751,10 +124766,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"eeh" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -124762,17 +124777,17 @@
/turf/open/floor/plating,
/area/security/checkpoint/escape)
"eei" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/escape)
"eej" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -124801,7 +124816,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/port/aft)
"eeo" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -124811,7 +124826,7 @@
/turf/open/floor/plasteel,
/area/maintenance/port/aft)
"eep" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -124838,7 +124853,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"ees" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -124846,7 +124861,7 @@
/turf/open/floor/plating,
/area/maintenance/port/aft)
"eet" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -124889,7 +124904,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"eew" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/grimy,
@@ -124902,9 +124917,9 @@
dir = 1;
name = "Chapel Quarters APC";
areastring = "/area/chapel/office";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/table/wood,
@@ -125051,7 +125066,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"eeI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -125078,7 +125093,7 @@
/area/security/checkpoint/escape)
"eeK" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/folder/red,
@@ -125152,7 +125167,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"eeP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red{
@@ -125361,7 +125376,7 @@
/turf/open/floor/carpet,
/area/chapel/office)
"efr" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/chaplain,
@@ -125402,7 +125417,7 @@
/area/hallway/secondary/exit/departure_lounge)
"efu" = (
/obj/structure/table/reinforced,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/light{
@@ -125412,7 +125427,7 @@
areastring = "/area/security/checkpoint/escape";
dir = 8;
name = "Departures Checkpoint APC";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/item/crowbar,
@@ -125427,10 +125442,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"efv" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -125450,23 +125465,23 @@
/area/security/checkpoint/escape)
"efw" = (
/obj/machinery/holopad,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"efx" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -125482,7 +125497,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"efy" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -125501,7 +125516,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"efz" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -125512,7 +125527,7 @@
/area/security/checkpoint/escape)
"efA" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -125528,7 +125543,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"efB" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -125543,7 +125558,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"efC" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -125562,13 +125577,13 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"efD" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -125610,7 +125625,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"efG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -125836,7 +125851,7 @@
/obj/machinery/computer/prisoner{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red,
@@ -125926,10 +125941,10 @@
/area/security/checkpoint/escape)
"egp" = (
/obj/structure/table,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/item/restraints/handcuffs,
@@ -125945,7 +125960,7 @@
/obj/structure/chair{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -125958,7 +125973,7 @@
/obj/structure/chair{
dir = 1
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -125980,11 +125995,11 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/escape)
"egs" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -126023,17 +126038,17 @@
/area/security/checkpoint/escape)
"egF" = (
/obj/structure/cable/white,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/checkpoint/escape)
"egG" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -126055,7 +126070,7 @@
/turf/open/space,
/area/solar/port/aft)
"ehb" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -126151,7 +126166,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"ehL" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/loading_area{
@@ -126188,7 +126203,7 @@
req_one_access_txt = "12;47"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -126198,7 +126213,7 @@
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
"eCM" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/purple,
@@ -126213,7 +126228,7 @@
/area/science/mixing/chamber)
"eMD" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -126236,7 +126251,7 @@
/area/science/mixing)
"eMS" = (
/obj/effect/turf_decal/delivery,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -126258,7 +126273,7 @@
/turf/open/floor/plasteel/dark,
/area/science/mixing)
"faI" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/twohanded/required/kirbyplants/random,
@@ -126278,7 +126293,7 @@
/turf/open/floor/plasteel/white,
/area/maintenance/department/science)
"fbA" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -126290,7 +126305,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"ffO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -126343,7 +126358,7 @@
/obj/machinery/airalarm/mixingchamber{
pixel_y = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -126377,7 +126392,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -126536,10 +126551,10 @@
/turf/open/floor/plasteel/dark,
/area/engine/atmospherics_engine)
"hcP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -126556,7 +126571,7 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"hrP" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -126591,10 +126606,10 @@
/turf/open/floor/plasteel/dark,
/area/security/nuke_storage)
"huX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable/white,
@@ -126626,10 +126641,10 @@
/area/science/explab)
"hGT" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/security/glass{
@@ -126654,7 +126669,7 @@
/obj/item/radio/intercom{
pixel_y = 26
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -126797,7 +126812,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -126864,9 +126879,9 @@
areastring = "/area/science/mixing/chamber";
dir = 4;
name = "Toxins Chamber APC";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -126877,20 +126892,6 @@
},
/turf/open/floor/engine,
/area/science/explab)
-"jBE" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/medical/morgue)
"jEz" = (
/obj/machinery/camera{
c_tag = "Science - Lab Access";
@@ -126909,7 +126910,7 @@
/turf/open/floor/plasteel/white,
/area/science/misc_lab/range)
"jIk" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -126978,7 +126979,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -127065,7 +127066,7 @@
/area/engine/gravity_generator)
"leh" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/highsecurity{
@@ -127153,14 +127154,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/science/research/abandoned)
"lEm" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -127211,7 +127212,7 @@
/turf/open/floor/plating,
/area/maintenance/port)
"lXl" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable/white,
@@ -127255,14 +127256,14 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
/area/science/mixing)
"mvm" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -127359,7 +127360,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -127433,7 +127434,7 @@
/obj/effect/turf_decal/tile/purple{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
@@ -127447,7 +127448,7 @@
/turf/closed/wall/r_wall,
/area/maintenance/disposal/incinerator)
"nSN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -127473,7 +127474,7 @@
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"oxa" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -127715,7 +127716,7 @@
},
/area/vacant_room/commissary)
"pCE" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -127725,7 +127726,7 @@
/area/engine/storage_shared)
"pQm" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/neutral{
@@ -127790,7 +127791,7 @@
name = "Maintenance Hatch";
req_access_txt = "12"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/barricade/wooden,
@@ -127834,7 +127835,7 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -128007,7 +128008,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -128017,7 +128018,7 @@
/turf/open/floor/engine/vacuum,
/area/science/mixing/chamber)
"sfN" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -128088,13 +128089,13 @@
/obj/effect/turf_decal/tile/purple{
dir = 4
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
"tkj" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -128115,7 +128116,6 @@
/turf/open/floor/plasteel,
/area/vacant_room/commissary)
"twt" = (
-/obj/machinery/vr_sleeper,
/obj/effect/turf_decal/tile/neutral{
dir = 4
},
@@ -128187,10 +128187,10 @@
areastring = "/area/vacant_room/commissary";
dir = 8;
name = "Vacant Commissary APC";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/brown{
@@ -128255,7 +128255,7 @@
/turf/open/floor/plasteel/white,
/area/maintenance/department/science)
"uCc" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -128303,7 +128303,7 @@
/turf/open/floor/plasteel/dark,
/area/science/mixing)
"uPp" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -128340,7 +128340,7 @@
/area/hallway/primary/central)
"vqo" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -128410,7 +128410,7 @@
dir = 1;
name = "Gravity Generator APC";
areastring = "/area/engine/gravity_generator";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-2"
@@ -128424,7 +128424,7 @@
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
"vGX" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -128484,7 +128484,7 @@
/turf/closed/wall/r_wall,
/area/science/misc_lab/range)
"wBO" = (
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -128657,9 +128657,9 @@
areastring = "/area/science/research/abandoned";
dir = 1;
name = "Abandoned Research Lab APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable/white{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -169452,7 +169452,7 @@ dzR
dAU
dCA
dDM
-jBE
+aaH
dGl
dHH
iQh
diff --git a/_maps/map_files/Donutstation/Donutstation.dmm b/_maps/map_files/Donutstation/Donutstation.dmm
index 84382356397..9eba5f6a3f9 100644
--- a/_maps/map_files/Donutstation/Donutstation.dmm
+++ b/_maps/map_files/Donutstation/Donutstation.dmm
@@ -5,10 +5,6 @@
"aab" = (
/turf/closed/wall,
/area/space/nearstation)
-"aac" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing)
"aad" = (
/turf/closed/wall/r_wall,
/area/engine/engineering)
@@ -23,44 +19,31 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aaf" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"aag" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "Gas to Cooling Loop"
},
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"aag" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/fore)
"aah" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/machinery/light,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
"aai" = (
/obj/effect/turf_decal/tile/red{
dir = 8
@@ -81,34 +64,16 @@
},
/area/hallway/secondary/exit/departure_lounge)
"aaj" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/sign/poster/contraband/power{
- pixel_y = 32
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/effect/mapping_helpers/dead_body_placer,
+/turf/open/floor/plasteel/dark,
+/area/medical/morgue)
"aak" = (
/turf/closed/wall,
/area/medical/morgue)
"aal" = (
/obj/structure/lattice,
/turf/open/space/basic,
-/area/space)
+/area/space/nearstation)
"aam" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -128,20 +93,6 @@
dir = 4
},
/area/hallway/secondary/exit/departure_lounge)
-"aan" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"aao" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"aap" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -178,57 +129,60 @@
/turf/open/space/basic,
/area/space/nearstation)
"aat" = (
-/obj/structure/grille,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"aau" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/space/nearstation)
-"aav" = (
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"aaw" = (
-/obj/structure/cable{
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"aav" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable{
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Engine Containment North";
- network = list("ss13","Engine","Engineering")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"aax" = (
-/obj/structure/grille,
/obj/structure/cable{
- icon_state = "1-4"
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"aaz" = (
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 1
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"aay" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"aaz" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"aaA" = (
/obj/structure/falsewall{
name = "suspicious wall"
@@ -261,17 +215,6 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"aaE" = (
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
"aaF" = (
/obj/structure/chair,
/obj/effect/turf_decal/stripes/line{
@@ -280,16 +223,19 @@
/turf/open/floor/plating/airless,
/area/space/nearstation)
"aaG" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"aaH" = (
-/turf/open/space/basic,
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"aaI" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -627,15 +573,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
-"abt" = (
-/obj/machinery/light/small,
-/obj/machinery/camera/motion{
- c_tag = "Secure - AI Upload Front Access";
- dir = 1;
- network = list("ss13","Secure")
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"abu" = (
/obj/machinery/light/small{
dir = 1
@@ -743,7 +680,6 @@
/area/quartermaster/miningdock)
"abJ" = (
/obj/machinery/computer/med_data{
- icon_state = "computer";
dir = 8
},
/turf/open/floor/carpet,
@@ -863,11 +799,14 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"abY" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
},
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"abZ" = (
/obj/machinery/computer/secure_data{
dir = 8
@@ -932,22 +871,10 @@
"ack" = (
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/fitness/recreation)
-"acl" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"acm" = (
/obj/machinery/door/poddoor/incinerator_toxmix,
/turf/open/floor/engine/vacuum,
/area/science/mixing)
-"acn" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"aco" = (
/turf/closed/wall/r_wall,
/area/science/mixing)
@@ -1003,8 +930,8 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/fore)
@@ -1035,20 +962,6 @@
},
/turf/open/floor/engine/vacuum,
/area/science/mixing)
-"acD" = (
-/obj/machinery/computer/teleporter,
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
"acE" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input,
/obj/machinery/sparker/toxmix{
@@ -1103,10 +1016,7 @@
dir = 1
},
/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"acM" = (
-/turf/open/space,
-/area/engine/engineering)
+/area/maintenance/fore)
"acN" = (
/obj/structure/table,
/obj/item/hand_labeler,
@@ -1152,19 +1062,6 @@
"acQ" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/hos)
-"acR" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/large{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/reagent_containers/glass/beaker{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/item/reagent_containers/dropper,
-/turf/open/floor/plasteel/white,
-/area/science/lab)
"acS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1266,8 +1163,7 @@
/area/science/storage)
"adj" = (
/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4;
- icon_state = "manifoldlayer"
+ dir = 4
},
/turf/closed/wall/r_wall,
/area/science/storage)
@@ -1350,26 +1246,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"ads" = (
-/obj/machinery/power/apc{
- areastring = "/area/science/lab";
- dir = 1;
- name = "Research Lab APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/white,
-/area/science/lab)
-"adt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3,
-/turf/open/floor/plasteel,
-/area/science/storage)
"adu" = (
/obj/structure/table/wood,
/turf/open/floor/plasteel/chapel{
@@ -1517,18 +1393,6 @@
},
/turf/open/floor/plasteel,
/area/science/mixing)
-"adM" = (
-/obj/machinery/power/apc{
- areastring = "/area/science/mixing";
- dir = 1;
- name = "Toxins Mixing APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
"adN" = (
/turf/open/floor/plasteel/white,
/area/science/mixing)
@@ -1536,7 +1400,6 @@
/turf/closed/wall,
/area/crew_quarters/fitness)
"adP" = (
-/obj/machinery/vr_sleeper,
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -1655,7 +1518,6 @@
/area/chapel/office)
"aec" = (
/obj/machinery/atmospherics/components/trinary/filter{
- icon_state = "filter_off";
dir = 1
},
/turf/open/floor/plasteel,
@@ -1814,15 +1676,6 @@
"aew" = (
/turf/closed/wall/r_wall,
/area/science/server)
-"aex" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera{
- c_tag = "Research - Toxins Storage";
- dir = 2;
- network = list("ss13","Research")
- },
-/turf/open/floor/plasteel,
-/area/science/storage)
"aey" = (
/obj/structure/chair/stool,
/obj/structure/disposalpipe/segment{
@@ -2002,9 +1855,6 @@
/obj/effect/spawner/lootdrop/techstorage/engineering,
/turf/open/floor/plating,
/area/storage/tech)
-"aeZ" = (
-/turf/open/floor/plating,
-/area/storage/tech)
"afa" = (
/turf/closed/wall,
/area/hydroponics)
@@ -2231,18 +2081,6 @@
/obj/structure/closet/crate/hydroponics,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"afx" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
"afy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
@@ -2254,7 +2092,6 @@
"afz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -2269,7 +2106,7 @@
network = list("AISat")
},
/turf/open/space/basic,
-/area/space)
+/area/space/nearstation)
"afB" = (
/obj/effect/turf_decal/tile/red,
/obj/effect/turf_decal/tile/red{
@@ -2296,8 +2133,8 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
@@ -2565,7 +2402,6 @@
/area/medical/medbay/central)
"agj" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- icon_state = "heater";
dir = 4
},
/obj/effect/turf_decal/stripes/line{
@@ -2700,7 +2536,6 @@
"agx" = (
/obj/machinery/mass_driver{
name = "Holy Driver";
- icon_state = "mass_driver";
dir = 1;
id = "chapelgun"
},
@@ -2778,6 +2613,9 @@
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/hor)
"agG" = (
@@ -2965,19 +2803,6 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"ahb" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
"ahc" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -3058,12 +2883,6 @@
},
/turf/open/floor/plasteel/dark,
/area/science/server)
-"ahm" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/science/server)
"ahn" = (
/obj/machinery/light/small{
dir = 4
@@ -3091,7 +2910,6 @@
/area/chapel/office)
"ahr" = (
/obj/machinery/computer/robotics{
- icon_state = "computer";
dir = 4
},
/obj/structure/window/reinforced{
@@ -3132,9 +2950,6 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
/turf/open/floor/plating,
/area/maintenance/fore)
"ahv" = (
@@ -3199,18 +3014,6 @@
},
/turf/open/floor/plasteel/dark,
/area/bridge)
-"ahD" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/heads/captain/private";
- dir = 1;
- name = "Captain's Private Quarters APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/heads/captain/private)
"ahE" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
@@ -3274,7 +3077,6 @@
/area/crew_quarters/heads/hor)
"ahL" = (
/obj/machinery/computer/mecha{
- icon_state = "computer";
dir = 4
},
/obj/structure/window/reinforced{
@@ -3359,6 +3161,9 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"ahW" = (
@@ -3393,15 +3198,6 @@
},
/turf/open/floor/plasteel,
/area/storage/tools)
-"ahZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/heads/captain/private)
"aia" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -3455,7 +3251,6 @@
/area/science/mixing)
"aig" = (
/obj/machinery/computer/rdservercontrol{
- icon_state = "computer";
dir = 4
},
/turf/open/floor/plasteel/dark,
@@ -3811,7 +3606,6 @@
/area/science/research)
"ajd" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
- icon_state = "freezer_1";
dir = 8
},
/turf/open/floor/plasteel/dark,
@@ -3930,18 +3724,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
-"ajn" = (
-/obj/machinery/power/apc{
- areastring = "/area/science/explab";
- dir = 1;
- name = "Experimentation APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/white,
-/area/science/explab)
"ajo" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -4014,21 +3796,6 @@
/obj/machinery/light/small,
/turf/open/floor/plasteel/white,
/area/science/research)
-"ajw" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - North Containment Arm";
- dir = 2;
- network = list("ss13","Engine","Engineering")
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"ajx" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
@@ -4046,10 +3813,6 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/hop)
-"ajz" = (
-/obj/machinery/computer/cargo,
-/turf/open/floor/wood,
-/area/crew_quarters/heads/hop)
"ajA" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -4152,7 +3915,6 @@
/area/bridge)
"ajL" = (
/obj/machinery/computer/monitor{
- icon_state = "computer";
dir = 8
},
/obj/effect/turf_decal/tile/yellow{
@@ -4237,18 +3999,6 @@
"ajT" = (
/turf/closed/wall,
/area/crew_quarters/heads/hos)
-"ajU" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/prison";
- dir = 8;
- name = "Prison APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
"ajV" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -4338,10 +4088,6 @@
},
/turf/open/floor/plasteel,
/area/security/prison)
-"akf" = (
-/obj/machinery/suit_storage_unit/hos,
-/turf/open/floor/carpet,
-/area/crew_quarters/heads/hos)
"akg" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -4402,8 +4148,8 @@
dir = 4
},
/obj/machinery/door/poddoor/preopen{
- id = "brigexternalblast";
- name = "External Security Blast Door"
+ id = "brigexternalblastentry";
+ name = "External Security Entry Blast Door"
},
/turf/open/floor/plasteel,
/area/security/brig)
@@ -4431,23 +4177,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"akn" = (
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_y = 3
- },
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/item/reagent_containers/spray/plantbgone{
- pixel_x = 13;
- pixel_y = 5
- },
-/obj/item/watertank,
-/obj/item/grenade/chem_grenade/antiweed,
-/obj/structure/table/glass,
-/turf/open/floor/plasteel,
-/area/hydroponics)
"ako" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -4458,12 +4187,6 @@
"akp" = (
/turf/open/floor/plasteel,
/area/hydroponics)
-"akq" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"akr" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -4506,18 +4229,6 @@
/obj/structure/cable,
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/aft)
-"akz" = (
-/obj/machinery/power/apc{
- areastring = "/area/hydroponics";
- dir = 1;
- name = "Hydroponics APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel,
-/area/hydroponics)
"akA" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
@@ -4538,18 +4249,6 @@
},
/turf/open/floor/plasteel,
/area/science/research)
-"akB" = (
-/obj/machinery/power/apc{
- areastring = "/area/science/research";
- dir = 2;
- name = "Science Main APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"akC" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -4572,10 +4271,12 @@
},
/obj/structure/disposalpipe/sorting/mail{
dir = 4;
- icon_state = "pipe-j1s";
name = "sorting disposal pipe (Bar)";
sortType = 19
},
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"akE" = (
@@ -4751,7 +4452,6 @@
/area/hydroponics)
"akV" = (
/obj/machinery/computer/rdconsole/core{
- icon_state = "computer";
dir = 8
},
/obj/effect/turf_decal/stripes/line{
@@ -4769,7 +4469,6 @@
/area/crew_quarters/bar)
"akX" = (
/obj/machinery/computer/prisoner{
- icon_state = "computer";
dir = 8
},
/obj/machinery/light{
@@ -4815,32 +4514,13 @@
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
"alc" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/engine/engineering)
-"ald" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/closed/wall,
-/area/maintenance/fore)
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
"ale" = (
/obj/machinery/seed_extractor,
/turf/open/floor/plasteel,
/area/hydroponics)
-"alf" = (
-/obj/machinery/power/emitter{
- icon_state = "emitter";
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
"alg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 4
@@ -4850,31 +4530,21 @@
},
/turf/open/floor/plasteel,
/area/security/prison)
-"alh" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/cable,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"alj" = (
/obj/effect/turf_decal/stripes/line{
- dir = 9
+ dir = 4
},
-/obj/item/disk/holodisk/donutstation/enginewars,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm"
+ },
+/turf/open/floor/plating,
+/area/engine/supermatter)
"alk" = (
/turf/closed/wall,
/area/storage/tools)
@@ -4886,14 +4556,6 @@
/obj/structure/chair,
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"alm" = (
-/obj/machinery/chem_master/condimaster{
- desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments.";
- name = "HoochMaster Deluxe";
- pixel_x = -4
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
"aln" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -4926,18 +4588,12 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"alr" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"als" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/engine,
+/area/engine/supermatter)
"alu" = (
/obj/effect/turf_decal/tile/bar{
dir = 1
@@ -4948,23 +4604,14 @@
/area/crew_quarters/bar)
"alv" = (
/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/cable,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"alw" = (
-/obj/machinery/vr_sleeper,
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -4979,17 +4626,6 @@
/obj/structure/closet/secure_closet/warden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aly" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"alz" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/the_singularitygen,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"alA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 4
@@ -5003,12 +4639,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/lab)
-"alB" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"alC" = (
/obj/machinery/teleport/station,
/obj/effect/turf_decal/tile/neutral,
@@ -5032,11 +4662,16 @@
/area/teleporter)
"alD" = (
/obj/effect/turf_decal/stripes/line{
- dir = 10
+ dir = 4
},
-/obj/item/screwdriver,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm"
+ },
+/turf/open/floor/plating,
+/area/engine/supermatter)
"alE" = (
/obj/machinery/conveyor_switch/oneway{
id = "robo1"
@@ -5093,58 +4728,26 @@
/obj/item/toy/figure/detective,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"alK" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/medical/morgue)
-"alL" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/item/wrench,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"alM" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"alN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
+/obj/structure/lattice,
+/obj/machinery/camera/autoname{
dir = 1
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
+/turf/open/space/basic,
+/area/space/nearstation)
"alO" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/computer/cargo,
/obj/machinery/button/door{
dir = 2;
- id = "cargounload";
+ id = "cargoload";
layer = 4;
name = "Loading Doors";
pixel_x = 8;
pixel_y = 24
},
/obj/machinery/button/door{
- id = "cargoload";
+ id = "cargounload";
layer = 4;
name = "Loading Doors";
pixel_x = -8;
@@ -5158,63 +4761,6 @@
"alP" = (
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"alQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"alR" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"alS" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"alT" = (
-/obj/machinery/door/airlock/external{
- name = "External Engine Access Airlock";
- req_access_txt = "32"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"alU" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"alV" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -5238,10 +4784,12 @@
},
/obj/structure/disposalpipe/sorting/mail{
dir = 4;
- icon_state = "pipe-j1s";
name = "sorting disposal pipe (Kitchen)";
sortType = 20
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"alX" = (
@@ -5349,25 +4897,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"amj" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/heads/captain";
- dir = 1;
- name = "Captain's Office APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/newscaster/security_unit{
- pixel_x = -32
- },
-/obj/machinery/door/window/southleft{
- name = "Suit Access";
- req_access_txt = "20"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/captain)
"amk" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -5452,24 +4981,13 @@
/obj/item/lighter,
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"amt" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"amu" = (
-/obj/structure/grille,
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"amv" = (
/obj/machinery/vending/hydronutrients,
/obj/effect/turf_decal/tile/green{
@@ -5480,34 +4998,9 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"amw" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"amx" = (
/turf/open/floor/plating,
/area/engine/engineering)
-"amy" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"amz" = (
-/obj/structure/particle_accelerator/particle_emitter/right{
- icon_state = "emitter_right";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"amA" = (
/obj/effect/turf_decal/tile/green{
dir = 1
@@ -5518,21 +5011,9 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"amB" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"amC" = (
-/obj/structure/particle_accelerator/particle_emitter/left{
- icon_state = "emitter_left";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"amD" = (
/obj/effect/turf_decal/tile/bar{
dir = 1
@@ -5565,28 +5046,8 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
"amH" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"amI" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"amJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
"amK" = (
/obj/machinery/door/airlock{
name = "Mass Driver";
@@ -5598,27 +5059,21 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"amL" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"amM" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
/turf/open/floor/plating,
/area/maintenance/fore)
-"amN" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
"amO" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -5629,40 +5084,13 @@
"amP" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/kitchen)
-"amQ" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/teleporter";
- dir = 1;
- name = "Teleporter APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/teleporter)
-"amR" = (
-/obj/machinery/power/emitter{
- icon_state = "emitter";
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
"amS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"amT" = (
/obj/effect/turf_decal/tile/bar{
dir = 1
@@ -5842,7 +5270,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"anl" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/head_of_personnel,
@@ -5928,36 +5356,13 @@
dir = 5
},
/area/crew_quarters/kitchen)
-"anw" = (
-/obj/machinery/door/airlock/external{
- name = "External Engine Access Airlock";
- req_access_txt = "32"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"anx" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/sign/warning/electricshock{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/fore)
-"any" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"anz" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -5965,13 +5370,6 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"anA" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"anB" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -5998,30 +5396,16 @@
},
/turf/open/space/basic,
/area/space/nearstation)
-"anE" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+"anG" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Engineering Maintenance Access";
+ req_access_txt = "10"
},
-/turf/open/space/basic,
-/area/space/nearstation)
-"anF" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"anG" = (
-/obj/machinery/suit_storage_unit/engine,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
"anH" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -6031,13 +5415,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"anI" = (
-/obj/structure/tank_dispenser,
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"anJ" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -6073,31 +5450,6 @@
initial_gas_mix = "n2o=1000;TEMP=293.15"
},
/area/engine/atmos)
-"anN" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"anO" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"anP" = (
-/turf/open/floor/circuit,
-/area/engine/engineering)
"anQ" = (
/obj/structure/sign/warning/docking{
pixel_x = 32
@@ -6139,14 +5491,6 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/warehouse)
-"anW" = (
-/obj/machinery/camera{
- c_tag = "Secure - EVA";
- dir = 8;
- network = list("ss13","Secure")
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
"anX" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
@@ -6177,18 +5521,6 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aoc" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
"aod" = (
/obj/structure/table,
/turf/open/floor/plating,
@@ -6260,8 +5592,8 @@
dir = 4
},
/obj/machinery/door/poddoor/preopen{
- id = "brigexternalblast";
- name = "External Security Blast Door"
+ id = "brigexternalblastentry";
+ name = "External Security Entry Blast Door"
},
/turf/open/floor/plasteel,
/area/security/brig)
@@ -6329,19 +5661,22 @@
/area/maintenance/starboard)
"aoq" = (
/obj/effect/turf_decal/stripes/line{
- dir = 8
+ dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/engineering)
"aor" = (
/turf/open/floor/plasteel,
/area/engine/engineering)
-"aos" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aot" = (
/obj/effect/turf_decal/tile/green,
/obj/effect/turf_decal/tile/green{
@@ -6352,20 +5687,6 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aou" = (
-/obj/machinery/vending/engivend,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aov" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 4
@@ -6389,19 +5710,6 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aoy" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aoz" = (
/obj/effect/turf_decal/tile/green{
dir = 1
@@ -6482,18 +5790,6 @@
},
/turf/open/floor/plating,
/area/hydroponics)
-"aoG" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/fore";
- dir = 1;
- name = "Fore Maintenance APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
"aoH" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -6504,20 +5800,7 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"aoI" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
+/area/maintenance/fore)
"aoJ" = (
/obj/effect/turf_decal/tile/green,
/obj/effect/turf_decal/tile/green{
@@ -6544,13 +5827,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aoL" = (
-/obj/machinery/particle_accelerator/control_box,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aoM" = (
/obj/machinery/camera{
c_tag = "Research - Main 4";
@@ -6603,24 +5879,6 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/science)
-"aoQ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aoR" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -6635,28 +5893,6 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/heads/cmo)
-"aoS" = (
-/obj/item/stack/sheet/plasteel{
- amount = 10;
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/structure/table,
-/obj/item/stack/sheet/rglass{
- amount = 30;
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
-/area/engine/engineering)
"aoT" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -6677,19 +5913,10 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/dorms)
"aoU" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/machinery/vending/tool,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
+/obj/machinery/suit_storage_unit/ce,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/heads/chief)
"aoV" = (
/obj/structure/dresser,
/turf/open/floor/wood,
@@ -6717,12 +5944,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"apa" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"apb" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -6769,34 +5990,38 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"apf" = (
-/obj/machinery/modular_computer/console/preset/engineering,
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Engineering";
- departmentType = 4;
- name = "Engineering RC";
- pixel_y = 30
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
},
-/obj/structure/cable{
- icon_state = "0-4"
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
+/turf/open/floor/plasteel,
/area/engine/engineering)
"apg" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"aph" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/plating,
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
"api" = (
/obj/structure/window/reinforced{
dir = 1;
@@ -6854,55 +6079,17 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/warehouse)
-"apm" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"apn" = (
-/obj/effect/turf_decal/bot{
- dir = 1
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor{
+ id = "Secure Storage";
+ name = "Engineering Secure Storage"
},
-/obj/machinery/power/port_gen/pacman,
-/obj/effect/turf_decal/stripes/line,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"apo" = (
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/structure/closet/crate/solarpanel_small,
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/engine/engineering)
"app" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/crowbar,
-/obj/item/grenade/chem_grenade/smart_metal_foam,
-/obj/item/grenade/chem_grenade/smart_metal_foam,
-/obj/effect/turf_decal/bot{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel{
- dir = 1
- },
+/obj/structure/closet/crate/solarpanel_small,
+/turf/open/floor/plating,
/area/engine/engineering)
"apq" = (
/obj/effect/landmark/start/station_engineer,
@@ -6925,23 +6112,6 @@
},
/turf/open/floor/plasteel,
/area/security/prison)
-"aps" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Engine Containment West";
- dir = 4;
- network = list("ss13","Engine","Engineering")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"apt" = (
/obj/structure/table,
/obj/item/kitchen/rollingpin,
@@ -6950,23 +6120,7 @@
},
/area/crew_quarters/kitchen)
"apu" = (
-/obj/structure/table,
-/obj/effect/turf_decal/delivery,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"apv" = (
-/obj/structure/table,
-/obj/effect/turf_decal/delivery,
-/obj/item/storage/box/lights/mixed,
-/obj/item/storage/box/lights/mixed{
- pixel_x = 3;
- pixel_y = 3
- },
+/obj/structure/closet/secure_closet/engineering_electrical,
/turf/open/floor/plasteel,
/area/engine/engineering)
"apw" = (
@@ -6976,54 +6130,54 @@
},
/area/crew_quarters/kitchen)
"apx" = (
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/clothing/suit/hazardvest,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/item/tank/internals/emergency_oxygen/engi,
-/obj/effect/turf_decal/delivery,
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"apy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room";
+ req_access_txt = "10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/circuit,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"apz" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"apA" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+/obj/effect/turf_decal/tile/neutral{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"apB" = (
-/obj/effect/turf_decal/stripes/corner{
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/closet/secure_closet/engineering_chief,
+/obj/machinery/light_switch{
+ pixel_x = 28;
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"apC" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"apC" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/camera{
+ c_tag = "Engineering - Job Equipment";
+ dir = 2;
+ network = list("ss13","Engineering","Engine")
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
@@ -7047,55 +6201,24 @@
/area/engine/engineering)
"apG" = (
/obj/machinery/light/small{
- brightness = 3;
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
dir = 8
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"apH" = (
-/obj/structure/table,
-/obj/item/airlock_painter{
- pixel_x = 2;
- pixel_y = 2
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
},
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment,
-/obj/item/airlock_painter,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"apI" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/obj/machinery/suit_storage_unit/engine,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
"apJ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/security/prison)
-"apK" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_y = 32
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"apL" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -7106,8 +6229,17 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"apM" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/closet/radiation,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/engineering)
"apN" = (
@@ -7120,18 +6252,9 @@
"apO" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/chief)
-"apP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"apQ" = (
-/obj/structure/closet/firecloset,
-/obj/effect/turf_decal/delivery,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
+/obj/structure/table,
+/obj/item/stack/rods/fifty,
/turf/open/floor/plasteel,
/area/engine/engineering)
"apR" = (
@@ -7187,10 +6310,19 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"apY" = (
-/obj/structure/closet/firecloset,
-/obj/effect/turf_decal/delivery,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stock_parts/cell/high/plus{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
},
/turf/open/floor/plasteel,
/area/engine/engineering)
@@ -7240,10 +6372,12 @@
},
/obj/structure/disposalpipe/sorting/mail{
dir = 4;
- icon_state = "pipe-j1s";
name = "sorting disposal pipe (Theatre)";
sortType = 18
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aqf" = (
@@ -7332,7 +6466,6 @@
dir = 1
},
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 8
},
/obj/structure/cable{
@@ -7390,21 +6523,17 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/dorms)
"aqs" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"aqt" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
},
+/obj/item/stack/cable_coil,
+/obj/item/electronics/airlock,
+/obj/item/electronics/airlock,
+/obj/machinery/light,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"aqu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aqv" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -7552,27 +6681,6 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aqN" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/hallway/secondary/exit/departure_lounge";
- dir = 1;
- name = "Departures APC";
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
"aqO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light{
@@ -7620,7 +6728,6 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"aqT" = (
-/obj/machinery/food_cart,
/obj/machinery/firealarm{
dir = 4;
pixel_x = -24
@@ -7688,23 +6795,6 @@
/obj/machinery/status_display,
/turf/closed/wall/r_wall,
/area/teleporter)
-"ara" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Engine Containment East";
- dir = 8;
- network = list("ss13","Engine","Engineering")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"arb" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -7971,17 +7061,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"arB" = (
-/obj/machinery/field/generator,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 1
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"arC" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
+/turf/open/floor/plasteel,
/area/engine/engineering)
"arD" = (
/obj/effect/turf_decal/tile/neutral{
@@ -7999,24 +7082,14 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"arE" = (
-/obj/structure/closet/crate,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/rods/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/electronics/airlock,
-/obj/item/electronics/airlock,
-/obj/item/stock_parts/cell/high{
- charge = 100;
- maxcharge = 15000
+/obj/effect/turf_decal/bot{
+ dir = 1
},
-/obj/item/stack/sheet/mineral/plasma{
- amount = 30
- },
-/obj/item/gps,
-/obj/effect/turf_decal/stripes/line{
+/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/plating,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel,
/area/engine/engineering)
"arF" = (
/obj/effect/turf_decal/tile/yellow,
@@ -8039,36 +7112,6 @@
/obj/structure/window/reinforced,
/turf/open/floor/plating,
/area/storage/tools)
-"arH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- icon_state = "pipe-j1s";
- name = "sorting disposal pipe (Atmospherics)";
- sortType = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"arI" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/effect/landmark/start/station_engineer,
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"arJ" = (
/obj/effect/turf_decal/tile/yellow{
dir = 1
@@ -8092,6 +7135,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"arL" = (
@@ -8105,22 +7151,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/storage/tools)
-"arN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"arO" = (
/obj/machinery/porta_turret/ai{
dir = 4
@@ -8187,7 +7217,6 @@
/area/medical/virology)
"arW" = (
/obj/machinery/computer/rdconsole/production{
- icon_state = "computer";
dir = 8
},
/obj/effect/turf_decal/tile/yellow,
@@ -8281,7 +7310,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness)
"asf" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/structure/cable/yellow{
@@ -8289,7 +7318,7 @@
},
/obj/machinery/button/door{
id = "brigexternalblast";
- name = "External Blast Door Toggle";
+ name = "Brig Cell Blast Door Toggle";
pixel_x = -6;
pixel_y = 30
},
@@ -8300,6 +7329,11 @@
pixel_y = 30
},
/obj/effect/landmark/start/warden,
+/obj/machinery/button/door{
+ id = "brigexternalblastentry";
+ name = "External Blast Door Toggle";
+ pixel_y = 38
+ },
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"asg" = (
@@ -8388,10 +7422,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
-"aso" = (
-/obj/machinery/computer/monitor,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/aisat/service)
"asp" = (
/obj/item/grenade/barrier{
pixel_x = 4
@@ -8582,24 +7612,6 @@
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel,
/area/engine/atmos)
-"asI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sorting/mail{
- dir = 4;
- icon_state = "pipe-j1s";
- name = "sorting disposal pipe (Custodial)";
- sortType = 22
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
"asJ" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel,
@@ -9037,7 +8049,7 @@
/turf/open/floor/plating,
/area/storage/tech)
"atI" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/lawyer,
@@ -9081,10 +8093,6 @@
},
/turf/open/floor/plating,
/area/lawoffice)
-"atN" = (
-/obj/machinery/photocopier,
-/turf/open/floor/wood,
-/area/lawoffice)
"atO" = (
/obj/machinery/door/airlock/hatch{
name = "TeleSat Space Access Airlock";
@@ -9185,6 +8193,9 @@
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"aua" = (
@@ -9214,11 +8225,9 @@
/obj/machinery/atmospherics/components/binary/pump/on{
name = "Waste to Filter"
},
-/turf/open/floor/plasteel,
-/area/engine/atmos)
-"auc" = (
-/obj/machinery/atmospherics/pipe/simple/purple/visible{
- dir = 5
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Engine"
},
/turf/open/floor/plasteel,
/area/engine/atmos)
@@ -9243,10 +8252,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/space/nearstation)
-"auh" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space/basic,
-/area/space)
"aui" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "Air to Mix"
@@ -9301,7 +8306,6 @@
/area/crew_quarters/dorms)
"aun" = (
/obj/machinery/computer/holodeck{
- icon_state = "computer";
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -9421,30 +8425,6 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/fitness/recreation)
-"auA" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/checkpoint";
- dir = 8;
- name = "Docks Checkpoint APC";
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint)
"auB" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -10000,28 +8980,6 @@
/obj/structure/grille,
/turf/open/space/basic,
/area/space/nearstation)
-"avQ" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Hallway - Escape Left Wing 1";
- dir = 1;
- network = list("ss13")
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
"avR" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -10096,7 +9054,18 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 8
},
-/turf/closed/wall/r_wall,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
/area/engine/atmos)
"avY" = (
/obj/effect/turf_decal/tile/red{
@@ -10112,19 +9081,6 @@
"avZ" = (
/turf/open/floor/plating,
/area/construction/mining/aux_base)
-"awa" = (
-/obj/machinery/power/apc/highcap/ten_k{
- areastring = "/area/janitor";
- dir = 8;
- name = "Custodial Closet APC";
- pixel_x = -26
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plating,
-/area/maintenance/aft)
"awb" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -10371,7 +9327,6 @@
},
/obj/structure/sign/directions/command{
dir = 4;
- icon_state = "direction_bridge";
pixel_x = 30;
pixel_y = 24
},
@@ -10381,7 +9336,6 @@
},
/obj/structure/sign/directions/security{
dir = 4;
- icon_state = "direction_sec";
pixel_x = 30;
pixel_y = 32
},
@@ -10441,6 +9395,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"awL" = (
@@ -10952,6 +9907,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/item/pipe_dispenser,
/turf/open/floor/plasteel,
/area/engine/atmos)
"axU" = (
@@ -10973,10 +9929,6 @@
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/engine/atmos)
-"axW" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
"axX" = (
/obj/machinery/atmospherics/components/trinary/mixer{
dir = 1;
@@ -11193,13 +10145,18 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/atmos)
"ayu" = (
-/obj/machinery/pipedispenser,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/obj/structure/closet/radiation,
/turf/open/floor/plasteel,
/area/engine/atmos)
"ayv" = (
@@ -11224,10 +10181,10 @@
/obj/item/radio/intercom{
pixel_y = 28
},
-/obj/machinery/pipedispenser/disposal/transit_tube,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/obj/structure/closet/radiation,
/turf/open/floor/plasteel,
/area/engine/atmos)
"ayy" = (
@@ -11278,12 +10235,6 @@
initial_gas_mix = "co2=1000;TEMP=293.15"
},
/area/engine/atmos)
-"ayE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
"ayF" = (
/obj/machinery/air_sensor/atmos/carbon_tank,
/turf/open/floor/engine/co2{
@@ -11335,8 +10286,7 @@
/area/engine/atmos)
"ayL" = (
/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4;
- icon_state = "manifoldlayer"
+ dir = 4
},
/turf/closed/wall/r_wall,
/area/engine/atmos)
@@ -11608,8 +10558,7 @@
/area/teleporter)
"azq" = (
/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4;
- icon_state = "manifoldlayer"
+ dir = 4
},
/turf/open/floor/plating,
/area/engine/atmos)
@@ -11885,56 +10834,12 @@
},
/turf/open/floor/plasteel/dark,
/area/bridge)
-"azT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"azU" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/medical/cryo)
-"azV" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"azW" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"azX" = (
-/obj/machinery/computer/security/telescreen{
- name = "Engine Monitor";
- network = list("Engine");
- pixel_y = 32
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Right SMES Bank";
- network = list("ss13","Engineering")
- },
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"azY" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"azZ" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -11956,13 +10861,6 @@
dir = 9
},
/area/science/research)
-"aAb" = (
-/obj/machinery/field/generator,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aAc" = (
/turf/closed/wall,
/area/maintenance/aft)
@@ -12040,17 +10938,23 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"aAm" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/effect/turf_decal/tile/neutral{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/computer/station_alert{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"aAn" = (
/turf/closed/wall,
@@ -12162,7 +11066,6 @@
dir = 4
},
/obj/structure/disposalpipe/junction/flip{
- icon_state = "pipe-j2";
dir = 4
},
/turf/open/floor/plasteel,
@@ -12172,10 +11075,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/sorting/mail{
dir = 1;
- icon_state = "pipe-j1s";
name = "sorting disposal pipe (Head of Personnel)";
sortType = 15
},
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aAB" = (
@@ -12227,7 +11132,6 @@
/area/crew_quarters/heads/hop)
"aAE" = (
/obj/machinery/modular_computer/console/preset/command{
- icon_state = "console";
dir = 8
},
/obj/effect/turf_decal/tile/green,
@@ -12408,7 +11312,6 @@
dir = 4
},
/obj/machinery/computer/med_data{
- icon_state = "computer";
dir = 8
},
/turf/open/floor/plasteel/dark,
@@ -12711,19 +11614,7 @@
"aBH" = (
/obj/machinery/rnd/production/techfab/department/service,
/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"aBI" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
+/area/maintenance/fore)
"aBJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
@@ -12733,22 +11624,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
-"aBK" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aBL" = (
/obj/machinery/door/airlock/highsecurity{
name = "AI Upload Access";
@@ -13396,21 +12271,6 @@
},
/turf/open/floor/plating,
/area/solar/starboard)
-"aDf" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/item/storage/toolbox/emergency,
-/obj/item/storage/toolbox/emergency{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel,
-/area/bridge)
"aDg" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -13432,15 +12292,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDi" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
"aDj" = (
/obj/effect/turf_decal/tile/neutral,
/obj/effect/turf_decal/tile/neutral{
@@ -13522,10 +12373,6 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/hallway/primary/central)
-"aDr" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aDs" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -13548,29 +12395,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
-"aDt" = (
-/obj/structure/table,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/item/folder/red,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
-"aDu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
"aDv" = (
/obj/structure/closet/crate,
/obj/item/kitchen/fork,
@@ -13694,6 +12518,9 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aDM" = (
@@ -13705,19 +12532,6 @@
},
/turf/open/floor/engine/airless,
/area/engine/atmos)
-"aDN" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - West Containment Arm";
- dir = 4;
- network = list("ss13","Engine","Engineering")
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"aDO" = (
/obj/machinery/door/airlock/research{
name = "Research Division Access";
@@ -13845,7 +12659,6 @@
/area/security/processing)
"aEc" = (
/obj/machinery/computer/security/labor{
- icon_state = "computer";
dir = 4
},
/turf/open/floor/plasteel,
@@ -14036,7 +12849,6 @@
/area/security/brig)
"aEs" = (
/obj/machinery/computer/gulag_teleporter_computer{
- icon_state = "computer";
dir = 4
},
/obj/machinery/gulag_item_reclaimer{
@@ -14050,16 +12862,6 @@
},
/turf/open/floor/plasteel,
/area/security/processing)
-"aEu" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
"aEv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -14148,6 +12950,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aEG" = (
@@ -14235,12 +13040,12 @@
/area/ai_monitored/security/armory)
"aEM" = (
/obj/structure/rack,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler{
pixel_x = -3;
pixel_y = 3
},
-/obj/item/gun/energy/e_gun/advtaser,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler,
+/obj/item/gun/energy/disabler{
pixel_x = 3;
pixel_y = -3
},
@@ -14575,10 +13380,6 @@
},
/turf/open/floor/plasteel/white,
/area/security/brig)
-"aFt" = (
-/obj/structure/closet/secure_closet/freezer/cream_pie,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
"aFu" = (
/obj/structure/chair/comfy/brown{
dir = 4
@@ -14755,18 +13556,6 @@
},
/turf/open/floor/plating,
/area/science/research)
-"aFJ" = (
-/obj/structure/table/glass,
-/obj/item/storage/box/rxglasses,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/storage/box/disks{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
"aFK" = (
/obj/machinery/vending/wardrobe/gene_wardrobe,
/turf/open/floor/plasteel/white,
@@ -14942,7 +13731,6 @@
/area/security/prison)
"aGd" = (
/obj/structure/bodycontainer/morgue{
- icon_state = "morgue1";
dir = 1
},
/turf/open/floor/plasteel/dark,
@@ -15119,10 +13907,6 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aGy" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
"aGz" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -15193,17 +13977,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/storage)
-"aGG" = (
-/obj/structure/closet/secure_closet/hop,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Bridge - Head of Personnel's Private Quarters";
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/heads/hop)
"aGH" = (
/obj/structure/cable/yellow{
icon_state = "2-8"
@@ -15220,13 +13993,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics/cloning)
-"aGJ" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/circuit,
-/area/engine/engineering)
"aGK" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -15332,9 +14098,9 @@
/turf/open/floor/plating,
/area/medical/chemistry)
"aGV" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/closet/radiation,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aGW" = (
@@ -15348,9 +14114,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/sorting/mail{
name = "sorting disposal pipe (Research)";
- sortType = 0;
sortTypes = list(12,24,25)
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aGY" = (
@@ -15495,18 +14263,6 @@
/obj/structure/window/reinforced,
/turf/open/floor/plating,
/area/medical/sleeper)
-"aHl" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 7;
- pixel_y = 1
- },
-/obj/item/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 7;
- pixel_y = 1
- },
-/turf/open/floor/plasteel,
-/area/medical/cryo)
"aHm" = (
/obj/machinery/atmospherics/components/unary/cryo_cell,
/turf/open/floor/plasteel,
@@ -15565,15 +14321,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/research)
-"aHr" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aHs" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -15633,6 +14380,12 @@
name = "sorting disposal pipe (Research Director)";
sortType = 13
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHx" = (
@@ -15673,17 +14426,16 @@
/turf/open/floor/plasteel/white,
/area/medical/storage)
"aHD" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 10
},
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Gas to Mix"
},
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"aHE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
@@ -15797,42 +14549,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/medical/storage)
-"aHR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"aHS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aHT" = (
/obj/effect/turf_decal/tile/red,
/obj/effect/turf_decal/tile/red{
@@ -15840,27 +14556,6 @@
},
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
-"aHU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/engine/engineering)
"aHV" = (
/obj/machinery/vending/medical{
pixel_x = -2
@@ -15916,12 +14611,6 @@
/obj/machinery/vending/wardrobe/viro_wardrobe,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"aIf" = (
-/obj/machinery/sleeper{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
"aIg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
@@ -15967,23 +14656,6 @@
},
/turf/open/floor/plasteel,
/area/medical/cryo)
-"aIm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/engine/engineering)
"aIn" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -16002,15 +14674,6 @@
"aIp" = (
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"aIq" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"aIr" = (
/obj/structure/chair/office/light{
dir = 4
@@ -16018,19 +14681,6 @@
/obj/effect/landmark/start/depsec/science,
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
-"aIs" = (
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - East Containment Arm";
- dir = 8;
- network = list("ss13","Engine","Engineering")
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"aIt" = (
/obj/machinery/chem_master,
/obj/effect/turf_decal/tile/yellow{
@@ -16158,29 +14808,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"aIG" = (
-/obj/machinery/dna_scannernew,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"aIH" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"aII" = (
/obj/machinery/smartfridge/chemistry,
/turf/closed/wall,
@@ -16224,33 +14851,6 @@
/obj/effect/landmark/start/roboticist,
/turf/open/floor/plasteel,
/area/science/robotics/lab)
-"aIO" = (
-/obj/machinery/computer/med_data,
-/obj/machinery/power/apc{
- areastring = "/area/medical/sleeper";
- dir = 1;
- name = "Sleepers APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"aIP" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/machinery/power/apc{
- areastring = "/area/medical/cryo";
- dir = 1;
- name = "Cryogenics APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel,
-/area/medical/cryo)
"aIQ" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -16262,22 +14862,19 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"aIS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor{
+ id = "Secure Storage";
+ name = "Engineering Secure Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
+/area/engine/engineering)
"aIT" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -16441,6 +15038,9 @@
name = "sorting disposal pipe (Xenobiology)";
sortType = 28
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJl" = (
@@ -16450,6 +15050,9 @@
name = "sorting disposal pipe (Medical)";
sortType = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJm" = (
@@ -16472,6 +15075,9 @@
name = "sorting disposal pipe (Genetics)";
sortType = 23
},
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJn" = (
@@ -16573,7 +15179,6 @@
req_access_txt = "5"
},
/obj/effect/mapping_helpers/airlock/unres{
- icon_state = "airlock_unres_helper";
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
@@ -16631,7 +15236,6 @@
dir = 8
},
/obj/machinery/computer/card/minor/cmo{
- icon_state = "computer";
dir = 8
},
/turf/open/floor/plasteel/cafeteria,
@@ -17180,10 +15784,16 @@
/area/crew_quarters/dorms)
"aKQ" = (
/obj/structure/cable/yellow{
- icon_state = "1-8"
+ icon_state = "4-8"
},
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"aKR" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -17250,34 +15860,6 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"aKZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/dorms";
- dir = 2;
- name = "Sleeping Quarters APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"aLa" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/storage)
"aLb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -17521,18 +16103,12 @@
/turf/open/floor/engine/cult,
/area/library)
"aLM" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/librarian,
/turf/open/floor/carpet,
/area/library)
-"aLN" = (
-/obj/structure/closet/secure_closet/detective,
-/obj/item/camera_film,
-/obj/item/camera_film,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
"aLO" = (
/obj/machinery/libraryscanner,
/turf/open/floor/carpet,
@@ -17554,21 +16130,6 @@
/obj/machinery/bookbinder,
/turf/open/floor/wood,
/area/library)
-"aLT" = (
-/obj/machinery/computer/aifixer{
- icon_state = "computer";
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Research - Research Director's Office";
- dir = 2;
- network = list("ss13","Research")
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/heads/hor)
"aLU" = (
/obj/structure/table/wood,
/obj/item/camera,
@@ -17772,16 +16333,6 @@
/obj/structure/window/reinforced,
/turf/open/floor/plating,
/area/hydroponics/garden)
-"aMs" = (
-/obj/structure/rack,
-/obj/item/storage/bag/plants/portaseeder,
-/obj/item/plant_analyzer,
-/obj/item/plant_analyzer{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/open/floor/grass,
-/area/hydroponics/garden)
"aMt" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -17919,23 +16470,6 @@
},
/turf/open/floor/plating,
/area/hydroponics/garden)
-"aMK" = (
-/obj/structure/rack,
-/obj/item/gun/energy/ionrifle,
-/obj/item/gun/energy/temperature/security,
-/obj/item/clothing/suit/armor/laserproof,
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/security/armory)
"aML" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor/eastright{
@@ -17999,24 +16533,6 @@
"aMQ" = (
/turf/closed/wall,
/area/janitor)
-"aMR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aMS" = (
/obj/effect/landmark/start/librarian,
/turf/open/floor/engine/cult,
@@ -18040,10 +16556,6 @@
"aMU" = (
/turf/open/floor/plasteel,
/area/janitor)
-"aMV" = (
-/obj/machinery/vending/wardrobe/jani_wardrobe,
-/turf/open/floor/plasteel,
-/area/janitor)
"aMW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -18056,12 +16568,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"aMY" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
"aMZ" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/bot,
@@ -18077,21 +16583,6 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aNb" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Particle Accelerator";
- dir = 8;
- network = list("ss13","Engine","Engineering")
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"aNc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/obj/item/toy/figure/engineer,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"aNd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -18181,18 +16672,6 @@
"aNl" = (
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"aNm" = (
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/turret_protected/aisat/service";
- dir = 8;
- name = "MiniSat Service APC";
- pixel_x = -27
- },
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/aisat/service)
"aNn" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -18236,16 +16715,6 @@
"aNq" = (
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/foyer)
-"aNr" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/mob/living/simple_animal/bot/cleanbot,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/aisat/service)
"aNs" = (
/obj/machinery/computer/teleporter{
dir = 1
@@ -18253,30 +16722,17 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
"aNt" = (
-/obj/machinery/computer/apc_control{
- icon_state = "computer";
- dir = 4
+/obj/machinery/power/emitter,
+/obj/machinery/camera{
+ c_tag = "Engineering - Secure Storage";
+ dir = 4;
+ network = list("ss13","Engineering","Engine")
},
-/obj/effect/turf_decal/tile/neutral{
+/obj/machinery/light/small{
dir = 8
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/item/radio/intercom{
- pixel_x = -28
- },
-/obj/machinery/computer/security/telescreen{
- name = "Telecomms/Engineering Monitor";
- network = list("Telecom","Engine","Engineering");
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
+/turf/open/floor/plating,
+/area/engine/engineering)
"aNu" = (
/obj/machinery/teleport/hub,
/turf/open/floor/plasteel/dark,
@@ -18295,24 +16751,6 @@
"aNw" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai)
-"aNx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "aishutters";
- name = "AI privacy shutters"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
"aNy" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -18416,16 +16854,7 @@
icon_state = "2-4"
},
/turf/open/space/basic,
-/area/ai_monitored/turret_protected/ai)
-"aNK" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
+/area/space/nearstation)
"aNL" = (
/obj/structure/closet/secure_closet/security,
/obj/effect/turf_decal/tile/red{
@@ -18467,27 +16896,6 @@
},
/turf/open/floor/plating,
/area/medical/chemistry)
-"aNP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aNQ" = (
/obj/structure/chair/office/light{
dir = 1
@@ -18504,23 +16912,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"aNR" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Particle Accelerator Access";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aNS" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/structure/cable/yellow{
@@ -18529,27 +16920,24 @@
/turf/open/floor/plasteel,
/area/medical/cryo)
"aNT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room";
+ req_access_txt = "10"
},
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/structure/cable/yellow{
- icon_state = "4-8"
+ icon_state = "1-2"
},
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/obj/machinery/door/poddoor/preopen{
+ id = "supermatter_external";
+ name = "Supermatter External Blast Door"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/engine/engineering)
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
"aNU" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -18763,10 +17151,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/dark,
/area/security/courtroom)
-"aOs" = (
-/obj/machinery/photocopier,
-/turf/open/floor/wood,
-/area/library)
"aOt" = (
/turf/open/floor/plasteel/dark,
/area/security/courtroom)
@@ -19035,23 +17419,10 @@
/area/security/courtroom)
"aOZ" = (
/obj/machinery/computer/card/minor/hos{
- icon_state = "computer";
dir = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"aPa" = (
-/obj/machinery/power/apc{
- areastring = "/area/chapel/main";
- dir = 8;
- name = "Chapel Main APC";
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"aPb" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -19162,6 +17533,10 @@
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Lockdown"
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"aPr" = (
@@ -19173,6 +17548,11 @@
name = "Atmospherics Desk";
req_access_txt = "24"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Lockdown"
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"aPs" = (
@@ -19206,8 +17586,11 @@
},
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/layer_manifold{
- dir = 4;
- icon_state = "manifoldlayer"
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Lockdown"
},
/turf/open/floor/plasteel,
/area/engine/atmos)
@@ -19565,24 +17948,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/turf/open/floor/plasteel,
/area/quartermaster/warehouse)
-"aQg" = (
-/obj/structure/table,
-/obj/effect/turf_decal/delivery,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aQh" = (
-/obj/machinery/sleeper{
- dir = 1
- },
/obj/machinery/camera{
c_tag = "Medical - Sleeper Bay";
dir = 1;
network = list("ss13","Medical")
},
+/obj/machinery/stasis,
/turf/open/floor/plasteel,
/area/medical/sleeper)
"aQi" = (
@@ -19632,14 +18004,12 @@
/turf/closed/wall,
/area/quartermaster/warehouse)
"aQn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/rack,
-/obj/item/storage/belt/utility,
-/obj/item/storage/belt/utility{
- pixel_x = 2;
- pixel_y = 2
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/obj/item/clothing/head/welding,
/turf/open/floor/plasteel,
/area/engine/engineering)
"aQo" = (
@@ -19762,7 +18132,8 @@
"aQA" = (
/obj/machinery/door/airlock/medical/glass{
name = "Hydroponics";
- req_access_txt = "35"
+ req_access_txt = "0";
+ req_one_access_txt = "35;28"
},
/turf/open/floor/plasteel,
/area/hydroponics)
@@ -19830,6 +18201,7 @@
dir = 1
},
/obj/effect/landmark/start/atmospheric_technician,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/engine/atmos)
"aQH" = (
@@ -19907,7 +18279,6 @@
/area/space/nearstation)
"aQR" = (
/obj/machinery/computer/station_alert{
- icon_state = "computer";
dir = 4
},
/obj/effect/turf_decal/tile/yellow{
@@ -19918,7 +18289,7 @@
},
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
+ departmentType = 3;
name = "Atmos RC";
pixel_x = -30
},
@@ -19951,16 +18322,6 @@
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/solar/aft)
-"aQW" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aQX" = (
/obj/structure/girder,
/obj/structure/grille,
@@ -20039,18 +18400,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
-"aRf" = (
-/obj/machinery/power/apc/highcap/ten_k{
- areastring = "/area/engine/atmos";
- dir = 8;
- name = "Atmospherics APC";
- pixel_x = -26
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/atmos)
"aRg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -20109,16 +18458,6 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aRm" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aRn" = (
/obj/effect/turf_decal/tile/neutral,
/obj/effect/turf_decal/tile/neutral{
@@ -20152,6 +18491,9 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aRq" = (
@@ -20183,15 +18525,27 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aRs" = (
-/obj/structure/rack,
-/obj/item/clothing/glasses/meson{
- pixel_x = -2;
- pixel_y = -2
+/obj/effect/landmark/start/station_engineer,
+/obj/structure/disposalpipe/segment{
+ dir = 6
},
-/obj/item/clothing/glasses/meson,
-/obj/item/clothing/glasses/meson{
- pixel_x = 2;
- pixel_y = 2
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
/turf/open/floor/plasteel,
/area/engine/engineering)
@@ -20234,24 +18588,9 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"aRx" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"aRy" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
+/obj/structure/reflector/box/anchored,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
"aRz" = (
/obj/structure/bed,
/obj/effect/landmark/start/virologist,
@@ -20263,67 +18602,12 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aRB" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"aRC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
"aRD" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/door/airlock/maintenance{
+ req_one_access_txt = "12"
},
/turf/open/floor/plating,
-/area/hallway/primary/central)
-"aRE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"aRF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/hallway/primary/central)
-"aRG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/hallway/primary/central)
+/area/maintenance/department/engine)
"aRH" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -20339,7 +18623,6 @@
/area/maintenance/port/fore)
"aRI" = (
/obj/machinery/computer/atmos_alert{
- icon_state = "computer";
dir = 4
},
/obj/effect/turf_decal/tile/yellow{
@@ -20384,12 +18667,6 @@
},
/turf/open/floor/plasteel,
/area/engine/atmos)
-"aRN" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"aRO" = (
/obj/effect/turf_decal/tile/neutral,
/obj/effect/turf_decal/tile/neutral{
@@ -20417,11 +18694,12 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"aRS" = (
-/obj/structure/sign/warning/radiation/rad_area{
+/obj/machinery/suit_storage_unit/open,
+/obj/structure/sign/warning/nosmoking{
pixel_y = 32
},
-/turf/open/floor/plating,
-/area/engine/engineering)
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
"aRT" = (
/obj/docking_port/stationary{
dir = 4;
@@ -20491,15 +18769,12 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"aSc" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Containment Access";
- req_access_txt = "10"
- },
/obj/structure/cable/yellow{
- icon_state = "1-2"
+ icon_state = "1-4"
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
"aSd" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -20624,12 +18899,6 @@
},
/turf/open/floor/plasteel,
/area/engine/atmos)
-"aSp" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"aSq" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1
@@ -20823,8 +19092,7 @@
"aSN" = (
/obj/machinery/atmospherics/components/trinary/filter/flipped,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/button/ignition{
- id = "Incinerator";
+/obj/machinery/button/ignition/incinerator/atmos{
pixel_x = -6;
pixel_y = -24
},
@@ -20946,9 +19214,7 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/igniter{
- id = "Incinerator"
- },
+/obj/machinery/igniter/incinerator_atmos,
/obj/machinery/air_sensor{
pixel_x = -32;
pixel_y = -32
@@ -21016,18 +19282,6 @@
},
/turf/open/floor/plasteel/dark,
/area/medical/morgue)
-"aTm" = (
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/storage/eva";
- dir = 1;
- name = "EVA APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
"aTn" = (
/obj/machinery/atmospherics/pipe/layer_manifold,
/obj/structure/plasticflaps/opaque,
@@ -21036,13 +19290,10 @@
"aTo" = (
/obj/machinery/door/airlock/medical/glass{
name = "Service Door";
- req_one_access_txt = "35;28"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+ req_one_access_txt = "22;25;26;28;35;37;38;46"
},
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"aTp" = (
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 8;
@@ -21083,18 +19334,6 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aTt" = (
-/obj/machinery/power/apc{
- areastring = "/area/storage/tools";
- dir = 1;
- name = "Aux Tool Storage APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"aTu" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -21137,33 +19376,6 @@
},
/turf/open/floor/plasteel,
/area/storage/tools)
-"aTw" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"aTx" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/library/lounge";
- dir = 2;
- name = "Lounge APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
"aTy" = (
/obj/effect/turf_decal/bot_white/left,
/obj/structure/closet/crate/silvercrate,
@@ -21179,16 +19391,6 @@
},
/turf/open/floor/plasteel/dark,
/area/ai_monitored/nuke_storage)
-"aTz" = (
-/obj/machinery/power/apc{
- areastring = "/area/lawoffice";
- dir = 2;
- name = "Lawyer's Office APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"aTA" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -21213,7 +19415,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"aTD" = (
-/obj/machinery/sleeper,
+/obj/machinery/stasis,
/turf/open/floor/plasteel,
/area/medical/sleeper)
"aTE" = (
@@ -21246,61 +19448,42 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security)
-"aTH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "enginepashutter";
- name = "particle accelerator shutters"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/engine/engineering)
"aTI" = (
-/obj/structure/table/reinforced,
/obj/effect/turf_decal/tile/neutral{
- dir = 8
+ dir = 4
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"aTJ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
/obj/effect/turf_decal/tile/neutral{
dir = 4
},
-/obj/item/flashlight/lamp,
-/obj/machinery/button/door{
- id = "enginesecurestorage";
- name = "Secure Storage Control";
- pixel_x = -8;
- pixel_y = 24;
- req_access_txt = "56"
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
},
-/obj/machinery/button/door{
- id = "enginepashutter";
- name = "Particle Accelerator Shutter Control";
- pixel_x = 2;
- pixel_y = 24;
- req_access_txt = "56"
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/door/window/northright{
+ name = "Engineering Delivery Access";
+ req_access_txt = "10"
},
/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"aTJ" = (
-/obj/effect/turf_decal/delivery,
-/obj/machinery/door/poddoor{
- id = "enginesecurestorage";
- name = "Secure Storage"
- },
-/turf/open/floor/plating,
/area/engine/engineering)
"aTK" = (
/obj/effect/turf_decal/tile/neutral{
@@ -21322,123 +19505,42 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aTL" = (
-/obj/machinery/power/apc/highcap/ten_k{
- dir = 8;
- name = "Engine Room APC";
- areastring = "/area/engine/engineering";
- pixel_x = -26
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"aTM" = (
-/obj/machinery/computer/card/minor/ce{
- icon_state = "computer";
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 3;
- name = "Chief Engineer RC";
- pixel_x = -32
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"aTN" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"aTO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"aTP" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"aTQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"aTR" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Engineering Storage";
- req_access_txt = "32"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"aTS" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aTO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aTS" = (
+/obj/machinery/vending/wardrobe/engi_wardrobe,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"aTT" = (
@@ -21458,8 +19560,11 @@
/turf/open/floor/plasteel/white,
/area/science/research)
"aTU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/door/window/northleft{
+ name = "Engineering Storage";
+ req_access_txt = "10"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
@@ -21471,10 +19576,8 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/lobby)
"aTW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 9
- },
-/turf/open/floor/plasteel,
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/plating,
/area/engine/engineering)
"aTX" = (
/obj/structure/table/glass,
@@ -21582,12 +19685,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"aUf" = (
-/obj/structure/table/glass,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/reagent_containers/glass/beaker/cryoxadone,
-/turf/open/floor/plasteel,
-/area/medical/cryo)
"aUg" = (
/obj/structure/table,
/obj/item/book/manual/hydroponics_pod_people,
@@ -21672,20 +19769,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aUq" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Engine Containment South";
- dir = 1;
- network = list("ss13","Engine","Engineering")
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"aUr" = (
/obj/machinery/biogenerator,
/obj/effect/decal/cleanable/dirt,
@@ -21713,25 +19796,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/lobby)
-"aUu" = (
-/obj/structure/chair{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/item/radio/intercom{
- broadcasting = 1;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medbay)";
- pixel_x = -30
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/lobby)
"aUv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -21740,9 +19804,11 @@
dir = 5
},
/obj/structure/disposalpipe/junction/yjunction{
- icon_state = "pipe-y";
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aUw" = (
@@ -21958,28 +20024,12 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aUN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
+"aUO" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"aUO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/machinery/vending/engivend,
/turf/open/floor/plasteel,
/area/engine/engineering)
"aUP" = (
@@ -22003,91 +20053,34 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
-"aUS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"aUT" = (
-/obj/effect/turf_decal/tile/yellow{
+/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
"aUU" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/light,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
},
/turf/open/floor/plasteel,
/area/engine/engineering)
"aUV" = (
-/obj/effect/turf_decal/tile/neutral{
+/obj/machinery/computer/card/minor/ce{
dir = 1
},
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 4;
+ name = "Chief Engineer RC";
+ pixel_y = -32
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/rack,
-/obj/item/twohanded/rcl/pre_loaded,
-/obj/item/clothing/glasses/meson{
- pixel_x = -2;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/dark,
+/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
-"aUW" = (
-/obj/structure/closet/secure_closet/engineering_welding,
-/obj/effect/turf_decal/delivery,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"aUX" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"aUY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/engine/engineering)
"aUZ" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -22264,19 +20257,6 @@
},
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
-"aVq" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aVr" = (
/obj/structure/rack,
/obj/item/electronics/airlock,
@@ -22317,18 +20297,6 @@
},
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
-"aVu" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/item/stack/rods/fifty,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/construction/mining/aux_base)
"aVv" = (
/obj/effect/turf_decal/tile/yellow{
dir = 1
@@ -22389,59 +20357,7 @@
},
/turf/open/floor/plasteel/white,
/area/science/lab)
-"aVB" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/item/paper/monitorkey,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3,
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
-"aVC" = (
-/obj/machinery/computer/station_alert{
- icon_state = "computer";
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
"aVD" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/keycard_auth{
- pixel_x = -24;
- pixel_y = -24
- },
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"aVE" = (
@@ -22577,6 +20493,9 @@
dir = 9
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aVP" = (
@@ -22598,18 +20517,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aVR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"aVS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22665,7 +20572,6 @@
req_access_txt = "5"
},
/obj/effect/mapping_helpers/airlock/unres{
- icon_state = "airlock_unres_helper";
dir = 8
},
/turf/open/floor/plasteel/white,
@@ -22823,11 +20729,12 @@
},
/obj/structure/disposalpipe/sorting/mail{
dir = 4;
- icon_state = "pipe-j1s";
name = "sorting disposal pipe (Security)";
- sortType = 0;
sortTypes = list(7,8)
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aWi" = (
@@ -22838,6 +20745,9 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aWj" = (
@@ -22881,6 +20791,9 @@
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aWn" = (
@@ -22898,18 +20811,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/security/main)
-"aWo" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/warden";
- dir = 1;
- name = "Warden's Office APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
"aWp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -22938,21 +20839,6 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"aWr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/processing";
- dir = 1;
- name = "Labor Processing APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
"aWs" = (
/obj/machinery/door/airlock/security/glass{
name = "Equipment Room";
@@ -23129,24 +21015,6 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"aWG" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/main";
- dir = 1;
- name = "Security Office APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/security/main)
"aWH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/showroomfloor,
@@ -23322,12 +21190,6 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
-"aWZ" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/heads/hos)
"aXa" = (
/obj/effect/turf_decal/tile/blue,
/obj/effect/turf_decal/tile/blue{
@@ -23675,16 +21537,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
-"aXB" = (
-/obj/machinery/power/apc{
- areastring = "/area/medical/chemistry";
- dir = 8;
- name = "Chemistry APC";
- pixel_x = -24
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
"aXC" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -23760,18 +21612,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aXK" = (
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/heads/cmo";
- dir = 8;
- name = "CMO's Office APC";
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"aXL" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
@@ -23799,18 +21639,6 @@
},
/turf/open/floor/plating,
/area/medical/medbay/lobby)
-"aXO" = (
-/obj/machinery/power/apc{
- areastring = "/area/medical/medbay/central";
- dir = 1;
- name = "Medical Main APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
"aXP" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -23820,18 +21648,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
-"aXQ" = (
-/obj/machinery/power/apc{
- areastring = "/area/medical/surgery";
- dir = 1;
- name = "Surgery APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
"aXR" = (
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -24055,10 +21871,10 @@
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"aYo" = (
-/obj/machinery/sleeper,
/obj/machinery/firealarm{
pixel_y = 24
},
+/obj/machinery/stasis,
/turf/open/floor/plasteel,
/area/medical/sleeper)
"aYp" = (
@@ -24240,7 +22056,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/engine/atmos)
"aYC" = (
@@ -24283,20 +22098,6 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aYH" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/courtroom";
- dir = 8;
- name = "Courtroom APC";
- pixel_x = -26;
- pixel_y = 3
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"aYI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 4
@@ -24470,19 +22271,10 @@
/turf/open/floor/plating,
/area/maintenance/department/security)
"aZd" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/yellow{
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
dir = 4
},
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"aZe" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -24565,9 +22357,11 @@
dir = 4
},
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aZn" = (
@@ -24580,6 +22374,9 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 6
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"aZo" = (
@@ -25235,14 +23032,17 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"baq" = (
-/obj/structure/sign/warning/nosmoking/circle{
- pixel_y = -32
- },
/obj/machinery/camera{
c_tag = "Atmospherics - Front Desk";
dir = 1;
network = list("ss13","Atmospherics")
},
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = -25
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bar" = (
@@ -25683,33 +23483,6 @@
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bbq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"bbr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"bbs" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
@@ -25770,33 +23543,6 @@
},
/turf/open/floor/plasteel/dark,
/area/engine/gravity_generator)
-"bbC" = (
-/obj/machinery/computer/bank_machine,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/bot_white,
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/nuke_storage";
- dir = 1;
- name = "Vault APC";
- pixel_y = 24
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/nuke_storage)
"bbD" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -25833,20 +23579,6 @@
"bbH" = (
/turf/open/floor/plating,
/area/construction)
-"bbI" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel,
-/area/construction/mining/aux_base)
"bbJ" = (
/obj/effect/turf_decal/tile/bar{
dir = 1
@@ -26068,37 +23800,6 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bch" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"bci" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"bcj" = (
/obj/effect/turf_decal/bot_white/right,
/obj/structure/closet/crate/goldcrate,
@@ -26140,23 +23841,6 @@
},
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
-"bco" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"bcp" = (
/obj/effect/turf_decal/bot_white/right,
/obj/machinery/ore_silo,
@@ -26189,29 +23873,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bcr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"bcs" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bct" = (
/turf/open/floor/circuit,
/area/ai_monitored/nuke_storage)
@@ -26231,21 +23892,6 @@
},
/turf/open/floor/plating,
/area/ai_monitored/nuke_storage)
-"bcv" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"bcw" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -26448,13 +24094,20 @@
/turf/open/floor/plating,
/area/maintenance/department/security)
"bcP" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 6
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/closed/wall/r_wall,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
/area/engine/atmos)
"bcQ" = (
/obj/machinery/door/airlock/maintenance{
@@ -26492,17 +24145,12 @@
lootcount = 3;
name = "3maintenance loot spawner"
},
+/obj/machinery/camera{
+ c_tag = "Civilian - Disposals Waste Management";
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bcU" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/engine/atmos)
"bcV" = (
/obj/structure/chair,
/obj/machinery/light/small{
@@ -26519,6 +24167,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bcX" = (
@@ -26735,9 +24384,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/turf/open/floor/plasteel/cafeteria{
dir = 5
@@ -27174,12 +24824,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics/cloning)
-"bex" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
"bey" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27213,7 +24857,6 @@
req_access_txt = "5; 68"
},
/obj/effect/mapping_helpers/airlock/unres{
- icon_state = "airlock_unres_helper";
dir = 8
},
/obj/structure/cable/yellow{
@@ -27549,17 +25192,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"bfg" = (
-/obj/machinery/smartfridge/chemistry/virology/preloaded,
-/obj/effect/turf_decal/tile/green,
-/obj/effect/turf_decal/tile/green{
- dir = 8
- },
-/obj/effect/turf_decal/tile/green{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
"bfh" = (
/obj/effect/turf_decal/tile/bar{
dir = 1
@@ -27569,6 +25201,7 @@
name = "Bar Access";
req_access_txt = "25"
},
+/obj/machinery/light,
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
"bfi" = (
@@ -27683,22 +25316,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bfr" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/quartermaster/warehouse";
- dir = 1;
- name = "Cargo Warehouse APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"bfs" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
@@ -27774,12 +25391,6 @@
},
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
-"bfz" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
"bfA" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -27922,28 +25533,6 @@
},
/turf/open/space/basic,
/area/space)
-"bfL" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/camera{
- c_tag = "Hallway - Escape Right Wing 1";
- dir = 1;
- network = list("ss13")
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
"bfM" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/white,
@@ -27956,12 +25545,6 @@
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/white,
/area/hallway/secondary/exit/departure_lounge)
-"bfP" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit/departure_lounge)
"bfQ" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -27976,11 +25559,11 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bfR" = (
-/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;35"
+/obj/machinery/food_cart,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
},
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/crew_quarters/kitchen)
"bfS" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -27999,21 +25582,6 @@
},
/turf/open/floor/plating,
/area/hydroponics)
-"bfU" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 1
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bfV" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -28030,23 +25598,12 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bfW" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/landmark/start/chief_engineer,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 5
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
+/obj/item/pen,
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"bfX" = (
@@ -28168,12 +25725,17 @@
dir = 4;
network = list("ss13","Bar Area")
},
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -22
+ },
/turf/open/floor/carpet,
/area/crew_quarters/theatre)
"bgj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bgk" = (
@@ -28204,37 +25766,6 @@
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/security/main)
-"bgn" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"bgo" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/theatre";
- dir = 2;
- name = "Theatre APC";
- pixel_y = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"bgp" = (
/obj/machinery/vending/wardrobe/chef_wardrobe,
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
@@ -28308,8 +25839,9 @@
"bgy" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
"bgz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -28485,7 +26017,6 @@
/area/medical/virology)
"bgR" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- icon_state = "freezer";
dir = 4
},
/obj/effect/turf_decal/stripes/line,
@@ -28539,26 +26070,6 @@
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/starboard)
-"bgW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate/freezer,
-/turf/open/floor/plasteel,
-/area/quartermaster/warehouse)
-"bgX" = (
-/obj/machinery/power/apc{
- areastring = "/area/quartermaster/miningdock";
- dir = 1;
- name = "Mining Dock APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"bgY" = (
/obj/item/assembly/prox_sensor{
pixel_x = -4;
@@ -28648,12 +26159,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/engine/atmos)
-"bhh" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- dir = 1
- },
-/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
-/area/crew_quarters/kitchen/coldroom)
"bhi" = (
/obj/machinery/gibber,
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
@@ -28798,7 +26303,6 @@
/area/security/main)
"bhw" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom{
- icon_state = "freezer_1";
dir = 4
},
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
@@ -28873,31 +26377,6 @@
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bhG" = (
-/obj/structure/table/glass,
-/obj/machinery/power/apc{
- areastring = "/area/medical/virology";
- dir = 2;
- name = "Virology APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/obj/item/paper_bin{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/pen/red,
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "virology_airlock_exterior";
- idInterior = "virology_airlock_interior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Console";
- pixel_x = 22;
- pixel_y = 8;
- req_access_txt = "39"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
"bhH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -29150,23 +26629,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"bic" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/item/toy/figure/assistant,
-/obj/item/toy/figure/assistant{
- pixel_x = 3;
- pixel_y = -4
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"bid" = (
-/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
- dir = 9
- },
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
-/area/crew_quarters/kitchen/coldroom)
"bie" = (
/obj/machinery/firealarm{
dir = 4;
@@ -29208,7 +26670,6 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- icon_state = "pipe11-3";
dir = 1
},
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
@@ -29240,10 +26701,6 @@
},
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
/area/crew_quarters/kitchen/coldroom)
-"bin" = (
-/obj/structure/kitchenspike,
-/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
-/area/crew_quarters/kitchen/coldroom)
"bio" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -29327,22 +26784,6 @@
/obj/item/folder/red,
/turf/open/floor/plasteel/dark,
/area/security/brig)
-"biz" = (
-/obj/machinery/power/apc{
- areastring = "/area/solar/aft";
- dir = 8;
- name = "Aft Solar APC";
- pixel_x = -26;
- pixel_y = 3
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/solar/aft)
"biA" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -29387,17 +26828,13 @@
/turf/open/floor/plasteel,
/area/security/brig)
"biF" = (
-/obj/structure/cable{
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
"biG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 6
@@ -29417,16 +26854,13 @@
/turf/open/floor/plasteel,
/area/security/brig)
"biI" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
+/obj/structure/closet/emcloset,
+/obj/machinery/camera{
+ c_tag = "Engineering - Engine Airlock";
+ dir = 8;
+ network = list("ss13","Engineering","Engine")
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"biJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
@@ -29717,12 +27151,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bjh" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"bji" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -29828,7 +27256,6 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bjr" = (
@@ -29873,13 +27300,6 @@
/obj/item/seeds/random,
/turf/open/floor/plasteel,
/area/security/prison)
-"bju" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/item/toy/figure/wizard,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"bjv" = (
/obj/machinery/hydroponics/soil,
/obj/effect/decal/cleanable/dirt,
@@ -30097,10 +27517,12 @@
},
/obj/structure/disposalpipe/sorting/mail{
dir = 4;
- icon_state = "pipe-j1s";
name = "sorting disposal pipe (Recycling)";
sortType = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bjQ" = (
@@ -30155,20 +27577,6 @@
},
/turf/open/floor/plasteel,
/area/security/courtroom)
-"bjV" = (
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/obj/effect/turf_decal/tile/bar,
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -22
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/bar)
"bjW" = (
/obj/structure/table,
/obj/machinery/airalarm{
@@ -30736,14 +28144,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bkT" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = 3
- },
-/turf/open/floor/plasteel/white,
-/area/science/explab)
"bkU" = (
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -30799,24 +28199,29 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"bla" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/closet/athletic_mixed,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
"blb" = (
-/obj/machinery/power/terminal{
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/yellow{
dir = 1
},
-/obj/structure/cable{
- icon_state = "0-4"
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
},
-/turf/open/floor/plating,
+/obj/machinery/firealarm{
+ pixel_z = 24
+ },
+/turf/open/floor/plasteel,
/area/engine/engineering)
"blc" = (
/obj/structure/table,
@@ -30849,6 +28254,7 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/atmos)
"blf" = (
@@ -30959,6 +28365,7 @@
pixel_x = -4;
pixel_y = -24
},
+/obj/machinery/vending/wardrobe/science_wardrobe,
/turf/open/floor/plasteel/white,
/area/science/explab)
"blp" = (
@@ -31245,33 +28652,6 @@
},
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
-"blT" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"blU" = (
-/obj/machinery/computer/security{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
"blV" = (
/obj/structure/rack,
/obj/item/aicard,
@@ -31345,18 +28725,6 @@
/obj/item/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel,
/area/security/checkpoint)
-"bma" = (
-/obj/machinery/power/apc{
- areastring = "/area/security/detectives_office";
- dir = 1;
- name = "Detective's Office APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/carpet,
-/area/security/detectives_office)
"bmb" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -31388,23 +28756,6 @@
},
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
-"bmd" = (
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 5
- },
-/obj/machinery/power/apc{
- areastring = "/area/security/checkpoint/science";
- dir = 2;
- name = "Science Checkpoint APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/science)
"bme" = (
/obj/machinery/door/airlock/research{
name = "Kill Chamber";
@@ -31442,15 +28793,6 @@
},
/turf/open/floor/plating,
/area/medical/genetics/cloning)
-"bmi" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/security/courtroom)
"bmj" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -31811,12 +29153,6 @@
},
/turf/open/floor/plating,
/area/science/robotics/mechbay)
-"bmT" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"bmU" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
@@ -31835,20 +29171,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bmW" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue,
-/obj/effect/turf_decal/tile/blue{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
"bmX" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -31878,19 +29200,6 @@
},
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness)
-"bmZ" = (
-/obj/machinery/button/door{
- id = "podescape";
- name = "Pod Bay Control";
- normaldoorcontrol = 0;
- pixel_x = -8;
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"bna" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -32106,7 +29415,6 @@
/area/hallway/primary/central)
"bnr" = (
/obj/machinery/computer/rdconsole/robotics{
- icon_state = "computer";
dir = 4
},
/obj/machinery/light{
@@ -32147,12 +29455,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"bnv" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/robotics/lab)
"bnw" = (
/obj/effect/turf_decal/tile/purple{
dir = 8
@@ -32184,7 +29486,6 @@
/area/science/lab)
"bnz" = (
/obj/machinery/computer/security/hos{
- icon_state = "computer";
dir = 1
},
/obj/machinery/light,
@@ -32214,7 +29515,6 @@
/area/engine/atmos)
"bnC" = (
/obj/machinery/computer/mech_bay_power_console{
- icon_state = "computer";
dir = 1
},
/obj/structure/cable/yellow{
@@ -32464,43 +29764,16 @@
},
/turf/open/floor/plasteel/white,
/area/science/explab)
-"bnY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/crew_quarters/heads/chief)
"bnZ" = (
-/obj/effect/turf_decal/tile/neutral{
+/obj/machinery/computer/apc_control{
dir = 1
},
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
+/obj/machinery/computer/security/telescreen/ce{
+ dir = 1;
+ network = list("Engine","Telecom");
+ pixel_y = -30
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/closet/secure_closet/engineering_chief,
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/heads/chief";
- dir = 2;
- name = "Chief Engineer's Office APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plasteel/dark,
+/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"boa" = (
/obj/effect/turf_decal/tile/bar,
@@ -32516,33 +29789,20 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
"bob" = (
-/obj/effect/turf_decal/tile/neutral{
+/obj/machinery/computer/station_alert{
dir = 1
},
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
+/obj/machinery/newscaster{
+ pixel_y = -28
},
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/machinery/suit_storage_unit/ce,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/chief)
-"boc" = (
-/obj/structure/window/reinforced,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
+/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"bod" = (
/obj/structure/table,
@@ -32602,6 +29862,9 @@
location = "TOPLEFT";
name = "navigation beacon (TOPLEFT)"
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bok" = (
@@ -32670,14 +29933,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bop" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"boq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 4
@@ -32771,54 +30026,10 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"box" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/radiation/rad_area{
- pixel_x = 32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"boy" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/radiation/rad_area{
- pixel_x = -32
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"boz" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"boA" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"boB" = (
-/obj/structure/particle_accelerator/particle_emitter/center{
- icon_state = "emitter_center";
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
+/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
-/area/engine/engineering)
+/area/engine/supermatter)
"boC" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -32850,46 +30061,17 @@
},
/area/hallway/secondary/entry)
"boG" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/dark,
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/flashlight/lamp,
+/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"boH" = (
-/obj/effect/turf_decal/stripes/line{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/sign/warning/enginesafety{
- pixel_x = 32
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"boI" = (
-/obj/machinery/door/airlock/command{
- name = "Chief Engineer's Office";
- req_access_txt = "56"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -32901,7 +30083,7 @@
dir = 4
},
/turf/open/floor/plasteel,
-/area/crew_quarters/heads/chief)
+/area/engine/engineering)
"boJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -32959,79 +30141,35 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/turf/open/floor/plasteel,
/area/engine/engineering)
-"boP" = (
-/obj/structure/particle_accelerator/power_box{
- icon_state = "power_box";
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"boQ" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai_upload)
-"boR" = (
-/obj/effect/landmark/start/station_engineer,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"boS" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/turf/open/floor/plasteel/dark,
+/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"boT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
+/obj/effect/turf_decal/tile/neutral{
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
+/obj/effect/turf_decal/tile/neutral{
dir = 1
},
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"boU" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"boV" = (
/obj/structure/grille,
@@ -33126,6 +30264,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bpe" = (
@@ -33136,7 +30275,6 @@
/obj/structure/sign/departments/custodian{
pixel_y = -32
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bpf" = (
@@ -33146,6 +30284,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/janitor)
"bpg" = (
@@ -33209,12 +30348,6 @@
},
/turf/open/floor/plasteel,
/area/janitor)
-"bpn" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/janitor)
"bpo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 10
@@ -33247,7 +30380,7 @@
/obj/item/multitool,
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
+ departmentType = 3;
name = "Atmos RC";
pixel_x = -30
},
@@ -33271,7 +30404,6 @@
/obj/effect/turf_decal/tile/yellow{
dir = 1
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bpt" = (
@@ -33307,21 +30439,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/atmos)
-"bpx" = (
-/obj/machinery/door/airlock/engineering{
- name = "Engine Room";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bpy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -33506,21 +30626,6 @@
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bpQ" = (
-/obj/machinery/door/airlock/engineering{
- name = "Engine Room";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bpR" = (
/obj/machinery/camera{
c_tag = "Engineering - Gravity Generator Main 1";
@@ -33537,7 +30642,6 @@
dir = 1
},
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 8
},
/obj/structure/cable/yellow{
@@ -33567,6 +30671,9 @@
/obj/structure/cable/yellow{
icon_state = "1-4"
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bpV" = (
@@ -33581,18 +30688,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"bpW" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/bar";
- dir = 1;
- name = "Bar APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"bpX" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -33691,19 +30786,6 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"bqj" = (
-/obj/machinery/power/apc{
- areastring = "/area/medical/storage";
- dir = 8;
- name = "Medical Storage APC";
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/department/medical)
"bqk" = (
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/bot,
@@ -34478,6 +31560,7 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/atmos)
"brx" = (
@@ -34567,6 +31650,9 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 9
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"brE" = (
@@ -34587,7 +31673,7 @@
dir = 1
},
/obj/structure/disposalpipe/trunk{
- dir = 1
+ dir = 8
},
/turf/open/floor/plasteel,
/area/engine/atmos)
@@ -34687,24 +31773,6 @@
},
/turf/open/floor/plasteel,
/area/engine/atmos)
-"brS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/kitchen";
- dir = 1;
- name = "Kitchen APC";
- pixel_y = 24
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"brT" = (
/obj/machinery/power/smes,
/obj/structure/cable/yellow,
@@ -34723,17 +31791,16 @@
pixel_y = 28
},
/obj/effect/turf_decal/stripes/line,
-/obj/machinery/rnd/production/protolathe/department/engineering,
/obj/machinery/camera{
c_tag = "Atmospherics - Main 3";
dir = 2;
network = list("ss13","Atmospherics")
},
+/obj/structure/closet/firecloset,
/turf/open/floor/plasteel,
/area/engine/atmos)
"brV" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 8
},
/obj/structure/cable{
@@ -34963,6 +32030,9 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bsp" = (
@@ -34983,6 +32053,9 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bsr" = (
@@ -35156,18 +32229,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/storage/tech)
-"bsE" = (
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"bsF" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -35217,6 +32278,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bsI" = (
@@ -35234,6 +32298,9 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bsJ" = (
@@ -35376,15 +32443,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bsU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/vending/wardrobe/engi_wardrobe,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bsV" = (
/obj/effect/turf_decal/tile/blue,
/obj/effect/turf_decal/tile/neutral,
@@ -35397,6 +32455,9 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bsW" = (
@@ -35535,6 +32596,9 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"btg" = (
@@ -35548,6 +32612,9 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bth" = (
@@ -35561,6 +32628,9 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bti" = (
@@ -35592,6 +32662,9 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"btl" = (
@@ -35604,6 +32677,9 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"btm" = (
@@ -35614,6 +32690,9 @@
dir = 4
},
/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"btn" = (
@@ -35855,20 +32934,8 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/lawoffice)
-"btO" = (
-/obj/structure/table/wood,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/pen,
-/turf/open/floor/wood,
-/area/lawoffice)
"btP" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/lawyer,
@@ -36086,19 +33153,6 @@
},
/turf/open/floor/plasteel/dark,
/area/bridge)
-"bui" = (
-/obj/machinery/computer/bounty,
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/heads/hop";
- dir = 1;
- name = "Head of Personnel's Office APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/heads/hop)
"buj" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36310,23 +33364,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"buD" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
"buE" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -36339,16 +33376,6 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"buF" = (
-/obj/structure/particle_accelerator/fuel_chamber{
- icon_state = "fuel_chamber";
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"buG" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -36392,18 +33419,6 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"buJ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/camera/emp_proof/motion{
- c_tag = "Engineering - External Engine Containment Northwest";
- dir = 8;
- network = list("Engine")
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"buK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
@@ -36546,12 +33561,6 @@
},
/turf/open/floor/plasteel,
/area/engine/atmos)
-"buY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
"buZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
dir = 8
@@ -37260,63 +34269,9 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bwt" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/camera/emp_proof/motion{
- c_tag = "Engineering - External Engine Containment Northeast";
- dir = 4;
- network = list("Engine")
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bwu" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/machinery/camera/emp_proof/motion{
- c_tag = "Engineering - External Engine Containment Southwest";
- network = list("Engine")
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"bwv" = (
/turf/open/floor/plasteel/dark,
/area/engine/atmos)
-"bww" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/camera/emp_proof/motion{
- c_tag = "Engineering - External Engine Containment Southeast";
- network = list("Engine")
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bwx" = (
-/obj/structure/reagent_dispensers/beerkeg,
-/obj/structure/light_construct/small{
- dir = 1
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/department/crew_quarters/bar";
- cell_type = null;
- dir = 1;
- name = "Abandoned Bar APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- icon_state = "panelscorched"
- },
-/area/maintenance/department/crew_quarters/bar)
"bwy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -37379,19 +34334,6 @@
/obj/effect/spawner/lootdrop/crate_spawner,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"bwE" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/disposal";
- dir = 8;
- name = "Waste Disposal APC";
- pixel_x = -26;
- pixel_y = 3
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
"bwF" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -37499,7 +34441,7 @@
},
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
+ departmentType = 3;
name = "Atmos RC";
pixel_x = 30
},
@@ -37529,43 +34471,21 @@
},
/turf/open/floor/plasteel,
/area/engine/atmos)
-"bwU" = (
-/obj/effect/landmark/start/station_engineer,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bwV" = (
-/obj/effect/landmark/start/station_engineer,
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room";
+ req_access_txt = "10"
},
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bwW" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"bwX" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
"bwY" = (
/obj/effect/turf_decal/tile/brown{
dir = 4
@@ -37926,13 +34846,6 @@
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
-"bxE" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
"bxF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/cable/yellow{
@@ -37975,36 +34888,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bxJ" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/fitness";
- dir = 8;
- name = "Fitness APC";
- pixel_x = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bxK" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/crew_quarters/fitness/recreation";
- dir = 8;
- name = "Dormatories APC";
- pixel_x = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/fore)
-"bxL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"bxM" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -38111,13 +34994,11 @@
},
/obj/structure/sign/directions/medical{
dir = 8;
- icon_state = "direction_med";
pixel_x = -30;
pixel_y = 32
},
/obj/structure/sign/directions/science{
dir = 8;
- icon_state = "direction_sci";
pixel_x = -30;
pixel_y = 24
},
@@ -38308,19 +35189,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"byr" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fore)
"bys" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 9
@@ -38447,6 +35315,9 @@
},
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"byG" = (
@@ -38483,20 +35354,6 @@
},
/turf/open/floor/plating,
/area/security/detectives_office)
-"byI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/quartermaster/qm)
"byJ" = (
/obj/machinery/power/smes{
charge = 5e+006
@@ -38910,28 +35767,6 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/qm)
-"bzz" = (
-/obj/machinery/ntnet_relay,
-/obj/machinery/power/apc{
- areastring = "/area/tcommsat/server";
- dir = 2;
- name = "Telecomms Servers APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel/dark/telecomms,
-/area/tcommsat/server)
"bzA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/turf/open/floor/plasteel,
@@ -39029,23 +35864,18 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/nuke_storage)
"bzK" = (
-/obj/structure/table,
-/obj/effect/turf_decal/delivery,
-/obj/item/clothing/glasses/meson/engine,
-/obj/item/clothing/glasses/meson/engine,
-/obj/item/clothing/glasses/meson/engine,
-/obj/item/pipe_dispenser,
-/obj/item/pipe_dispenser,
-/obj/item/pipe_dispenser,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/engineering)
"bzL" = (
@@ -39132,18 +35962,6 @@
/obj/machinery/door/window/eastleft,
/turf/open/floor/plasteel/dark,
/area/janitor)
-"bzT" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bzU" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -39158,7 +35976,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/heads/cmo)
"bzV" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/turf_decal/tile/green{
dir = 8
},
@@ -39241,7 +36059,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"bAf" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/quartermaster,
/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
@@ -39323,16 +36141,6 @@
},
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
-"bAq" = (
-/obj/structure/particle_accelerator/end_cap{
- icon_state = "end_cap";
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"bAr" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -39407,24 +36215,13 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bAB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bAC" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/obj/structure/lattice/catwalk,
+/obj/structure/sign/warning/fire{
+ pixel_y = -32
},
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
+/turf/open/space/basic,
+/area/space/nearstation)
"bAD" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
@@ -39432,14 +36229,12 @@
/turf/open/floor/plating,
/area/maintenance/starboard)
"bAE" = (
-/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
pixel_y = -26
},
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
+/obj/machinery/camera/autoname{
+ dir = 1
},
/turf/open/floor/plasteel,
/area/engine/engineering)
@@ -39489,6 +36284,9 @@
/obj/structure/disposalpipe/junction{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bAL" = (
@@ -39504,6 +36302,9 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bAM" = (
@@ -39533,17 +36334,11 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bAO" = (
/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
"bAP" = (
/obj/structure/table,
/obj/item/hand_labeler,
@@ -39640,7 +36435,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
dir = 1
},
/obj/machinery/navbeacon{
@@ -39792,16 +36586,6 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bBm" = (
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"bBn" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
dir = 8
@@ -39900,18 +36684,6 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/heads/hor)
-"bBu" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/quartermaster/office";
- dir = 8;
- name = "Cargo Main APC";
- pixel_x = -24
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"bBv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 4
@@ -39980,24 +36752,6 @@
/obj/item/trash/plate,
/turf/open/floor/plating,
/area/maintenance/starboard)
-"bBC" = (
-/obj/machinery/disposal/bin,
-/obj/effect/turf_decal/tile/brown{
- dir = 1
- },
-/obj/effect/turf_decal/tile/brown,
-/obj/effect/turf_decal/tile/brown{
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 8
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
"bBD" = (
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -40097,6 +36851,9 @@
name = "sorting disposal pipe (Robotics)";
sortType = 14
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bBK" = (
@@ -40110,15 +36867,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/department/medical)
-"bBM" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/medical)
"bBN" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -40182,7 +36930,6 @@
"bBS" = (
/obj/effect/turf_decal/tile/neutral,
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -40324,23 +37071,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/aft)
-"bCf" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/item/toy/figure/assistant{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/toy/figure/assistant{
- pixel_x = 3;
- pixel_y = -4
- },
-/obj/item/toy/figure/assistant{
- pixel_x = 8;
- pixel_y = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"bCg" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -40643,18 +37373,6 @@
/obj/item/reagent_containers/glass/bucket,
/turf/open/floor/plasteel,
/area/hydroponics)
-"bCF" = (
-/obj/machinery/computer/security/telescreen{
- name = "Engine Monitor";
- network = list("Engine");
- pixel_y = 32
- },
-/obj/machinery/power/smes/engineering,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"bCG" = (
/obj/structure/table,
/obj/machinery/smartfridge/disks{
@@ -40662,25 +37380,6 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"bCH" = (
-/obj/structure/sign/warning/electricshock{
- pixel_y = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bCI" = (
/obj/machinery/firealarm{
dir = 1;
@@ -40705,6 +37404,9 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bCK" = (
@@ -40846,24 +37548,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bCX" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bCY" = (
/obj/machinery/mineral/stacking_machine{
input_dir = 1;
@@ -41000,10 +37684,16 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bDl" = (
-/obj/effect/turf_decal/loading_area{
- dir = 1
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
},
-/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/engine/engineering)
"bDm" = (
@@ -41025,12 +37715,6 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bDo" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"bDp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 10
@@ -41046,6 +37730,9 @@
location = "RIGHTTOP";
name = "navigation beacon (RIGHTTOP)"
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bDq" = (
@@ -41074,6 +37761,9 @@
location = "LEFTTOP";
name = "navigation beacon (LEFTTOP)"
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bDt" = (
@@ -41092,6 +37782,9 @@
location = "LEFTMID";
name = "navigation beacon (LEFTMID)"
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bDu" = (
@@ -41099,6 +37792,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/event_spawn,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bDv" = (
@@ -41180,6 +37876,9 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bDE" = (
@@ -41197,6 +37896,9 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bDF" = (
@@ -41281,11 +37983,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bDN" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/vacant_room/commissary)
"bDO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
dir = 1
@@ -41296,8 +37993,10 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ name = "sorting disposal pipe (Custodial)";
+ sortType = 22
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
@@ -41325,16 +38024,6 @@
dir = 10
},
/area/science/research)
-"bDR" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
-/obj/effect/turf_decal/delivery,
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/item/radio/intercom{
- pixel_y = -28
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bDS" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -41405,17 +38094,6 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"bDX" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
"bDY" = (
/obj/structure/rack,
/obj/item/clothing/under/color/blue,
@@ -41425,16 +38103,6 @@
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
-"bDZ" = (
-/obj/machinery/computer/station_alert,
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"bEa" = (
/obj/effect/turf_decal/tile/neutral,
/obj/effect/turf_decal/tile/neutral{
@@ -41599,10 +38267,16 @@
/turf/open/floor/plasteel/chapel,
/area/chapel/main)
"bEr" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
/turf/open/floor/plasteel,
/area/engine/engineering)
"bEs" = (
@@ -41795,16 +38469,6 @@
/obj/effect/landmark/start/assistant,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
-"bEF" = (
-/obj/machinery/power/apc{
- areastring = "/area/chapel/office";
- dir = 8;
- name = "Chapel Office APC";
- pixel_x = -24
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"bEG" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -41938,6 +38602,9 @@
name = "sorting disposal pipe (Quartermaster)";
sortType = 3
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bEU" = (
@@ -41955,29 +38622,16 @@
name = "sorting disposal pipe (Cargo)";
sortType = 2
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bEV" = (
/obj/structure/table/reinforced,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/item/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/pen,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/item/toy/figure/ce,
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/item/stamp/ce,
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"bEW" = (
@@ -42025,17 +38679,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFa" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
"bFb" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/structure/disposalpipe/segment,
@@ -42051,7 +38694,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"bFd" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/cargo_technician,
/obj/structure/disposalpipe/segment{
dir = 6
@@ -42060,7 +38703,6 @@
/area/quartermaster/office)
"bFe" = (
/obj/machinery/computer/cargo{
- icon_state = "computer";
dir = 8
},
/obj/structure/disposalpipe/segment{
@@ -42223,7 +38865,6 @@
/area/crew_quarters/heads/cmo)
"bFp" = (
/obj/machinery/computer/cargo/request{
- icon_state = "computer";
dir = 8
},
/obj/effect/turf_decal/tile/brown{
@@ -42276,9 +38917,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/junction/flip{
- icon_state = "pipe-j2";
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bFv" = (
@@ -42350,15 +38993,6 @@
},
/turf/open/floor/plasteel/dark,
/area/bridge)
-"bFB" = (
-/obj/machinery/power/terminal{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"bFC" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall,
@@ -42388,7 +39022,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/junction/flip{
- icon_state = "pipe-j2";
dir = 8
},
/turf/open/floor/plasteel,
@@ -42498,31 +39131,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/security/main)
-"bFN" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Containment Access";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bFO" = (
-/obj/machinery/power/apc{
- areastring = "/area/security/brig";
- dir = 2;
- name = "Brig APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
"bFP" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -42537,16 +39145,6 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"bFQ" = (
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/turret_protected/ai_upload";
- dir = 2;
- name = "AI Upload APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai_upload)
"bFR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/segment{
@@ -42606,19 +39204,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/security/main)
-"bFW" = (
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/security/main)
"bFX" = (
/obj/effect/turf_decal/tile/red{
dir = 8
@@ -42729,18 +39314,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"bGh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"bGi" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -42753,12 +39326,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security)
-"bGk" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"bGl" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
@@ -42835,10 +39402,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
-"bGu" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/janitor)
"bGv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 5
@@ -42857,7 +39420,7 @@
"bGw" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
- dir = 1
+ dir = 4
},
/turf/open/floor/plasteel,
/area/janitor)
@@ -42875,6 +39438,9 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bGy" = (
@@ -42896,6 +39462,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 10
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bGA" = (
@@ -43062,33 +39631,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bGN" = (
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay/central)
"bGO" = (
/obj/effect/turf_decal/tile/red{
dir = 1
@@ -43155,17 +39697,6 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
-"bGR" = (
-/obj/machinery/suit_storage_unit/engine,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Material Storage";
- network = list("ss13","Engineering")
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bGS" = (
/obj/effect/turf_decal/tile/red{
dir = 1
@@ -43196,6 +39727,9 @@
name = "sorting disposal pipe (Chief Medical Director)";
sortType = 10
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bGU" = (
@@ -43206,10 +39740,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"bGV" = (
-/obj/structure/closet/radiation,
-/turf/open/floor/plating,
-/area/engine/engineering)
"bGW" = (
/obj/effect/turf_decal/tile/bar{
dir = 1
@@ -43275,17 +39805,9 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bHc" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/turf_decal/bot{
+ dir = 1
},
/turf/open/floor/plasteel,
/area/engine/engineering)
@@ -43294,8 +39816,9 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
"bHe" = (
/obj/effect/turf_decal/tile/bar,
/obj/effect/turf_decal/tile/bar{
@@ -43335,10 +39858,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/junction/flip{
- icon_state = "pipe-j2";
dir = 1
},
/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bHi" = (
@@ -43478,11 +40003,13 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/sorting/mail/flip{
dir = 4;
- icon_state = "pipe-j2s";
name = "sorting disposal pipe (Hydroponics)";
sortType = 21
},
/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bHt" = (
@@ -43520,6 +40047,9 @@
dir = 4
},
/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bHw" = (
@@ -43574,9 +40104,6 @@
},
/turf/open/floor/plating,
/area/science/robotics/lab)
-"bHB" = (
-/turf/closed/wall/r_wall,
-/area/vacant_room/commissary)
"bHC" = (
/obj/machinery/door/airlock{
name = "Lounge"
@@ -43685,16 +40212,6 @@
},
/turf/open/floor/plasteel,
/area/bridge)
-"bHN" = (
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 8;
- pixel_x = 24
- },
-/turf/open/floor/wood,
-/area/library)
"bHO" = (
/obj/machinery/airalarm{
dir = 8;
@@ -43838,18 +40355,6 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"bIb" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/item/radio/intercom{
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
"bIc" = (
/obj/machinery/telecomms/server/presets/engineering,
/turf/open/floor/circuit/telecomms/mainframe,
@@ -44020,13 +40525,6 @@
},
/turf/open/floor/plasteel/dark,
/area/bridge)
-"bIu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bIv" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
@@ -44065,7 +40563,6 @@
/area/tcommsat/computer)
"bID" = (
/obj/structure/transit_tube/station/reverse{
- icon_state = "closed_terminus0";
dir = 1
},
/turf/open/floor/plating,
@@ -44139,21 +40636,8 @@
/obj/item/crowbar,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bIM" = (
-/obj/machinery/announcement_system,
-/obj/machinery/power/apc{
- areastring = "/area/tcommsat/computer";
- dir = 8;
- name = "Telecomms Lounge APC";
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/turf/open/floor/plasteel/grimy,
-/area/tcommsat/computer)
"bIN" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/structure/cable/yellow{
@@ -44236,26 +40720,6 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
-"bIZ" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/machinery/light/small{
- brightness = 3;
- dir = 8
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"bJa" = (
/obj/machinery/power/smes/engineering,
/obj/structure/cable{
@@ -44287,7 +40751,7 @@
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/tcommsat/server)
"bJd" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/grimy,
@@ -44328,7 +40792,6 @@
/area/tcommsat/server)
"bJi" = (
/obj/machinery/computer/telecomms/server{
- icon_state = "computer";
dir = 8
},
/turf/open/floor/plasteel/grimy,
@@ -44351,28 +40814,8 @@
},
/turf/open/floor/carpet,
/area/bridge)
-"bJl" = (
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/obj/structure/cable{
- icon_state = "0-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"bJm" = (
/obj/machinery/computer/shuttle/labor{
- icon_state = "computer";
dir = 8
},
/obj/effect/turf_decal/tile/blue{
@@ -44403,7 +40846,6 @@
/area/tcommsat/computer)
"bJp" = (
/obj/machinery/computer/message_monitor{
- icon_state = "computer";
dir = 4
},
/obj/machinery/light{
@@ -44416,7 +40858,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"bJr" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/grimy,
@@ -44462,13 +40904,23 @@
/obj/structure/cable{
icon_state = "1-2"
},
-/turf/open/floor/plasteel/dark,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/northright{
+ name = "AI Access";
+ req_access_txt = "16"
+ },
+/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"bJx" = (
/obj/structure/cable{
icon_state = "1-4"
},
-/turf/open/floor/plasteel/dark,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"bJy" = (
/obj/machinery/ai_slipper{
@@ -44529,48 +40981,22 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/button/door{
- id = "aishutters";
- name = "Privacy Shutter Control";
- pixel_x = -24;
- pixel_y = 24
- },
-/obj/machinery/button/door{
- id = "aishuttersexternal";
- name = "External Privacy Shutter Control";
- pixel_x = 24;
- pixel_y = 24
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"bJF" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
},
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 6
},
-/obj/effect/turf_decal/tile/neutral{
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/filingcabinet/chestdrawer,
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Chief Engineer's Office";
- network = list("ss13","Engineering")
- },
-/obj/machinery/airalarm{
- pixel_y = 25
- },
-/mob/living/simple_animal/parrot/Poly,
-/turf/open/floor/plasteel/dark,
-/area/crew_quarters/heads/chief)
-"bJG" = (
-/obj/machinery/field/generator,
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Secure Storage";
- network = list("ss13","Engineering")
- },
/turf/open/floor/plating,
/area/engine/engineering)
"bJH" = (
@@ -44582,15 +41008,6 @@
/obj/item/pen,
/turf/open/floor/carpet,
/area/bridge)
-"bJI" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/camera/emp_proof{
- c_tag = "Engineering - Entrance";
- dir = 1;
- network = list("ss13","Engineering")
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bJJ" = (
/obj/machinery/telecomms/server/presets/common,
/obj/machinery/light{
@@ -44625,16 +41042,6 @@
},
/turf/open/floor/plating,
/area/science/robotics/lab)
-"bJM" = (
-/obj/machinery/light/small,
-/obj/machinery/camera{
- c_tag = "Atmospherics - Breakroom";
- dir = 1;
- network = list("ss13","Atmospherics")
- },
-/obj/effect/turf_decal/tile/yellow,
-/turf/open/floor/plasteel,
-/area/engine/atmos)
"bJN" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4
@@ -44841,7 +41248,6 @@
/area/ai_monitored/security/armory)
"bKj" = (
/obj/machinery/computer/shuttle/labor{
- icon_state = "computer";
dir = 1
},
/obj/effect/turf_decal/stripes/line,
@@ -44882,18 +41288,6 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
-"bKn" = (
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/dark,
-/area/bridge)
"bKo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -44938,7 +41332,6 @@
/area/maintenance/aft)
"bKu" = (
/obj/structure/disposalpipe/junction/flip{
- icon_state = "pipe-j2";
dir = 8
},
/obj/structure/cable/yellow{
@@ -45281,7 +41674,6 @@
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/aisat/foyer";
enabled = 1;
- icon_state = "control_standby";
name = "AI Chamber Foyer Control";
pixel_y = -24;
req_access = null;
@@ -45327,23 +41719,6 @@
},
/turf/open/floor/plasteel/white,
/area/security/brig)
-"bLm" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/machinery/camera{
- c_tag = "Security - Main Hall 2";
- dir = 8;
- network = list("ss13","Security")
- },
-/turf/open/floor/plasteel,
-/area/security/brig)
"bLn" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
dir = 8
@@ -45372,7 +41747,6 @@
pixel_x = -24
},
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
dir = 1
},
/obj/machinery/camera{
@@ -45417,16 +41791,6 @@
},
/turf/open/floor/plasteel/dark,
/area/engine/gravity_generator)
-"bLt" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal/fifty,
-/obj/item/stack/sheet/glass/fifty,
-/obj/item/clothing/head/welding,
-/obj/item/stack/sheet/mineral/plasma{
- amount = 35
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/aisat/service)
"bLu" = (
/obj/machinery/teleport/station,
/obj/machinery/camera/motion{
@@ -45456,7 +41820,7 @@
network = list("Telecom")
},
/turf/open/space/basic,
-/area/space)
+/area/space/nearstation)
"bLy" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
@@ -45624,7 +41988,6 @@
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/ai";
enabled = 1;
- icon_state = "control_standby";
name = "AI Chamber Turret Control";
pixel_x = 32;
pixel_y = -24;
@@ -45660,11 +42023,6 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security)
-"bLO" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/closet/crate,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"bLP" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
@@ -45692,12 +42050,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/carpet,
/area/bridge)
-"bLT" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/maintenance/fore)
"bLU" = (
/obj/effect/landmark/event_spawn,
/mob/living/carbon/monkey,
@@ -45722,13 +42074,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
-"bLW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"bLX" = (
/obj/machinery/camera/motion{
c_tag = "Secure - External Telecomm Sat East 2";
@@ -45736,7 +42081,7 @@
network = list("Telecom")
},
/turf/open/space/basic,
-/area/space)
+/area/space/nearstation)
"bLY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -45772,7 +42117,6 @@
dir = 4
},
/obj/structure/disposalpipe/junction/yjunction{
- icon_state = "pipe-y";
dir = 1
},
/obj/effect/landmark/event_spawn,
@@ -45797,7 +42141,14 @@
dir = 4;
network = list("AISat")
},
-/turf/open/floor/plasteel/dark,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/southright{
+ name = "AI Access";
+ req_access_txt = "16"
+ },
+/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"bMe" = (
/obj/structure/table,
@@ -45971,7 +42322,14 @@
dir = 8;
network = list("AISat")
},
-/turf/open/floor/plasteel/dark,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/southleft{
+ name = "AI Access";
+ req_access_txt = "16"
+ },
+/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"bMB" = (
/obj/structure/cable{
@@ -46133,14 +42491,14 @@
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "aishutters";
- name = "AI privacy shutters"
- },
/obj/machinery/door/window/westright{
name = "AI Access";
req_access_txt = "16"
},
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"bMQ" = (
@@ -46199,6 +42557,11 @@
pixel_x = 28;
pixel_y = -28
},
+/obj/machinery/button/door{
+ id = "aishuttersexternal";
+ name = "External Privacy Shutter Control";
+ pixel_y = -40
+ },
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"bMT" = (
@@ -46369,7 +42732,7 @@
icon_state = "1-8"
},
/turf/open/space,
-/area/ai_monitored/turret_protected/ai)
+/area/space/nearstation)
"bNi" = (
/obj/machinery/camera/motion{
c_tag = "Secure - AI External East";
@@ -46381,7 +42744,7 @@
icon_state = "1-4"
},
/turf/open/space,
-/area/ai_monitored/turret_protected/ai)
+/area/space/nearstation)
"bNj" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
@@ -46462,7 +42825,7 @@
icon_state = "2-8"
},
/turf/open/space/basic,
-/area/ai_monitored/turret_protected/ai)
+/area/space/nearstation)
"bNs" = (
/obj/item/stack/cable_coil/cut/red,
/turf/open/space/basic,
@@ -46767,14 +43130,6 @@
},
/turf/open/floor/engine,
/area/science/xenobiology)
-"bNQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"bNR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 4
@@ -46898,18 +43253,6 @@
},
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat/foyer)
-"bOc" = (
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/turret_protected/aisat/foyer";
- dir = 4;
- name = "MiniSat Main APC";
- pixel_x = 27
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/aisat/foyer)
"bOd" = (
/obj/machinery/door/airlock/highsecurity{
name = "AI Chamber";
@@ -47073,33 +43416,6 @@
},
/turf/open/floor/grass,
/area/hydroponics/garden)
-"bOu" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/obj/structure/rack,
-/obj/machinery/light{
- dir = 8
- },
-/obj/item/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/storage/toolbox/mechanical,
-/obj/item/storage/toolbox/mechanical{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/machinery/camera{
- c_tag = "Civilian - Tool Storage";
- dir = 4;
- network = list("ss13")
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
"bOv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -47357,21 +43673,11 @@
dir = 8
},
/obj/item/clothing/head/cone,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"bOS" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- areastring = "/area/gateway";
- dir = 2;
- name = "Gateway APC";
- pixel_y = -24
- },
-/turf/open/floor/plasteel,
-/area/gateway)
"bOT" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
@@ -47458,6 +43764,9 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/plating,
/area/maintenance/port/aft)
"bOZ" = (
@@ -47780,13 +44089,15 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/sorting/mail{
dir = 1;
- icon_state = "pipe-j1s";
name = "sorting disposal pipe (Detective)";
sortType = 30
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bPB" = (
@@ -47810,7 +44121,6 @@
},
/obj/structure/sign/directions/evac{
dir = 8;
- icon_state = "direction_evac";
pixel_y = 42
},
/turf/open/floor/plasteel,
@@ -47870,246 +44180,79 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/captain)
"bPF" = (
-/obj/structure/disposalpipe/segment{
- dir = 10
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/turf_decal/bot{
dir = 1
},
-/obj/effect/turf_decal/stripes/line{
+/obj/machinery/light{
dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPG" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"bPH" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
+/obj/structure/tank_dispenser,
+/obj/effect/turf_decal/bot{
dir = 1
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPI" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPJ" = (
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"bPK" = (
-/obj/effect/turf_decal/delivery,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
-/obj/machinery/power/emitter{
- icon_state = "emitter";
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bPL" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/maintenance/starboard/fore)
"bPM" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fore)
-"bPN" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
"bPO" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
+/obj/machinery/power/terminal{
+ dir = 4
},
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "2-8"
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"bPP" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"bPT" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"bPV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"bPW" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
/obj/structure/cable{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bPQ" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/sign/warning/radiation/rad_area{
- pixel_y = 32
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bPR" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bPS" = (
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bPT" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bPU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"bPV" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"bPW" = (
-/obj/machinery/power/emitter,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bPX" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"bPY" = (
+/obj/machinery/power/terminal{
dir = 4
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"bPY" = (
/obj/structure/cable{
- icon_state = "1-2"
+ icon_state = "0-2"
},
-/obj/structure/lattice/catwalk,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/space/basic,
-/area/space/nearstation)
-"bPZ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"bQa" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
"bQb" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
@@ -48118,12 +44261,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"bQc" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/closed/wall,
-/area/maintenance/port/aft)
"bQd" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -48194,7 +44331,6 @@
/area/maintenance/fore)
"bQn" = (
/obj/structure/toilet{
- icon_state = "toilet00";
dir = 8
},
/obj/structure/window/reinforced/tinted,
@@ -48279,19 +44415,6 @@
/obj/item/clothing/head/cone,
/turf/open/floor/plating,
/area/maintenance/department/security)
-"bQy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/item/clothing/head/cone,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"bQz" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
@@ -48568,13 +44691,6 @@
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/maintenance/port/aft)
-"bRe" = (
-/obj/item/clothing/head/cone,
-/obj/structure/disposalpipe/segment{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"bRf" = (
/obj/structure/closet/crate{
name = "Surplus Genetics Supplies"
@@ -48682,24 +44798,6 @@
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
-"bRq" = (
-/obj/effect/turf_decal/tile/red{
- dir = 4
- },
-/obj/effect/turf_decal/tile/red,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"bRr" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bRs" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
@@ -48851,11 +44949,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/fore)
-"bRF" = (
-/obj/structure/table,
-/obj/item/toy/figure/borg,
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/aisat/foyer)
"bRG" = (
/obj/structure/bed,
/obj/effect/turf_decal/tile/neutral{
@@ -49006,20 +45099,6 @@
/obj/item/book/random/triple,
/turf/open/floor/plating,
/area/maintenance/fore)
-"bRV" = (
-/obj/structure/lattice,
-/turf/open/space/basic,
-/area/engine/atmos)
-"bRW" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"bRX" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -49038,7 +45117,7 @@
},
/obj/structure/window/reinforced,
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"bRZ" = (
/obj/structure/rack,
/obj/item/poster/random_official,
@@ -49051,7 +45130,7 @@
pixel_y = 4
},
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"bSa" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/closet/crate,
@@ -49064,7 +45143,7 @@
"bSb" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"bSc" = (
/obj/machinery/door/poddoor{
id = "toxinsdriver";
@@ -49084,7 +45163,7 @@
/obj/item/reagent_containers/glass/bucket,
/obj/item/scythe,
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"bSe" = (
/obj/structure/chair/comfy/black{
dir = 1
@@ -49097,36 +45176,10 @@
initial_gas_mix = "n2o=1000;TEMP=293.15"
},
/area/engine/atmos)
-"bSg" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bSh" = (
/obj/machinery/atmospherics/components/binary/pump,
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
-"bSi" = (
-/obj/machinery/power/apc{
- areastring = "/area/maintenance/port/aft";
- dir = 1;
- name = "Port Aft Maintenance APC";
- pixel_y = 24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"bSj" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
@@ -49204,6 +45257,9 @@
/area/maintenance/starboard/fore)
"bSr" = (
/obj/structure/grille/broken,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/fore)
"bSs" = (
@@ -49215,15 +45271,6 @@
/obj/structure/closet,
/turf/open/floor/plating,
/area/maintenance/fore)
-"bSu" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bSv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
@@ -49355,28 +45402,11 @@
/turf/open/floor/plating,
/area/maintenance/department/security)
"bSK" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
-"bSL" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Containment Access";
- req_access_txt = "10"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
"bSM" = (
/obj/machinery/power/compressor{
comp_id = "incineratorturbine";
@@ -50137,17 +46167,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
-"bUj" = (
-/obj/machinery/camera{
- c_tag = "Research - Toxins Main 2";
- dir = 2;
- network = list("ss13","Research")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/science/mixing)
"bUk" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -50246,12 +46265,12 @@
pixel_y = 32
},
/turf/open/space/basic,
-/area/space)
+/area/space/nearstation)
"bUy" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{
dir = 8
},
/turf/open/floor/engine,
@@ -50569,19 +46588,6 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/office)
-"bVm" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bVn" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -50765,21 +46771,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"bVI" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 8
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bVJ" = (
/obj/item/storage/firstaid/regular,
/obj/structure/rack,
@@ -51287,27 +47278,12 @@
dir = 4
},
/area/chapel/main)
-"bWT" = (
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump/on{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bWU" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"bWV" = (
/obj/structure/closet/crate{
icon_state = "crateopen"
@@ -51575,7 +47551,6 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
- icon_state = "freezer_1";
dir = 8
},
/turf/open/floor/plasteel/white,
@@ -51589,18 +47564,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
-"bXM" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bXN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -51694,7 +47657,7 @@
pixel_x = -32
},
/turf/open/space/basic,
-/area/engine/atmos)
+/area/space/nearstation)
"bYa" = (
/obj/structure/table,
/obj/item/flashlight/lamp,
@@ -51772,38 +47735,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/port)
-"bYo" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
-"bYp" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"bYq" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "External Arm Access";
- req_access_txt = "10"
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
"bYr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -51937,11 +47868,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/port)
-"bYF" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"bYG" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -52001,24 +47927,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bYM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
-"bYN" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"bYO" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
@@ -52066,13 +47974,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/department/security)
-"bYT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"bYU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 4
@@ -52162,24 +48063,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bZd" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard/fore)
-"bZe" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
-/turf/open/floor/circuit,
-/area/engine/engineering)
"bZf" = (
/obj/structure/closet/cardboard,
/obj/effect/spawner/lootdrop/maintenance{
@@ -52399,22 +48282,6 @@
},
/turf/open/floor/plasteel/dark,
/area/janitor)
-"bZB" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 1
- },
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/structure/sign/poster/official/build{
- pixel_y = 32
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"bZC" = (
/obj/effect/turf_decal/tile/bar{
dir = 1
@@ -52597,14 +48464,6 @@
icon_state = "panelscorched"
},
/area/maintenance/department/crew_quarters/bar)
-"bZR" = (
-/obj/structure/disposalpipe/segment{
- dir = 9
- },
-/obj/structure/closet/crate,
-/obj/item/paicard,
-/turf/open/floor/plating,
-/area/maintenance/department/security)
"bZS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
dir = 4
@@ -52652,7 +48511,7 @@
empty = 1;
name = "First-Aid (empty)"
},
-/obj/item/circuitboard/machine/sleeper,
+/obj/item/circuitboard/machine/stasis,
/turf/open/floor/plating,
/area/maintenance/port)
"bZY" = (
@@ -52686,39 +48545,11 @@
/obj/item/gun/magic/wand,
/turf/open/floor/carpet,
/area/crew_quarters/theatre)
-"cac" = (
-/obj/machinery/power/apc/highcap/five_k{
- dir = 2;
- name = "AI Chamber APC";
- areastring = "/area/ai_monitored/turret_protected/ai";
- pixel_y = -24
- },
-/obj/machinery/flasher{
- id = "AI";
- pixel_x = -11;
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "aishutters";
- name = "AI privacy shutters"
- },
-/obj/machinery/door/window/eastleft{
- name = "AI Access";
- req_access_txt = "16"
- },
-/turf/open/floor/circuit,
-/area/ai_monitored/turret_protected/ai)
"cad" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/blobstart,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
@@ -52755,19 +48586,6 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
-"cai" = (
-/obj/machinery/power/apc{
- areastring = "/area/library";
- dir = 8;
- name = "Library APC";
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"caj" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -52796,14 +48614,14 @@
},
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"can" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/closet,
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"cao" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
@@ -52823,7 +48641,7 @@
name = "4maintenance loot spawner"
},
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"car" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
@@ -52942,10 +48760,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
-"caE" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"caF" = (
/obj/effect/turf_decal/tile/green{
dir = 8
@@ -52954,22 +48768,6 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/hydroponics)
-"caG" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"caH" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/white,
@@ -53015,20 +48813,10 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/heads/cmo)
"caM" = (
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/obj/effect/turf_decal/tile/neutral{
+/obj/structure/chair/office/light{
dir = 1
},
-/obj/effect/turf_decal/tile/neutral,
-/obj/effect/turf_decal/tile/neutral{
- dir = 4
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/landmark/event_spawn,
+/obj/effect/landmark/start/chief_engineer,
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"caN" = (
@@ -53046,11 +48834,7 @@
"caO" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer3,
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
dir = 4
},
/obj/machinery/navbeacon{
@@ -53059,6 +48843,12 @@
name = "navigation beacon (BOTTOMMID)"
},
/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"caP" = (
@@ -53135,7 +48925,6 @@
/area/gateway)
"caX" = (
/obj/machinery/computer/telecomms/monitor{
- icon_state = "computer";
dir = 8
},
/obj/machinery/light{
@@ -53183,12 +48972,6 @@
/obj/structure/weightmachine/stacklifter,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"cbf" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"cbg" = (
/obj/structure/mirror{
pixel_y = 32
@@ -53297,25 +49080,6 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"cbw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/sign/warning/electricshock{
- pixel_x = 32
- },
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
-"cbx" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/obj/structure/girder,
-/turf/open/floor/plating,
-/area/maintenance/port/aft)
"cby" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -53324,10 +49088,9 @@
icon_state = "1-8"
},
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"cbz" = (
/obj/machinery/computer/camera_advanced/xenobio{
- icon_state = "computer";
dir = 1
},
/turf/open/floor/plasteel,
@@ -53356,7 +49119,7 @@
},
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"cbD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -53523,21 +49286,6 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"cbQ" = (
-/obj/structure/table,
-/obj/machinery/power/apc{
- areastring = "/area/medical/genetics/cloning";
- dir = 2;
- name = "Cloning Bay APC";
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
-/obj/item/toy/figure/geneticist,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics/cloning)
"cbR" = (
/obj/machinery/light,
/obj/structure/disposalpipe/trunk{
@@ -53546,7 +49294,6 @@
/obj/machinery/disposal/deliveryChute{
desc = "A chute for big and small corpses alike!";
dir = 1;
- icon_state = "intake";
name = "corpse chute"
},
/obj/machinery/door/window/northleft{
@@ -53570,10 +49317,10 @@
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;35;28;25"
+ req_one_access_txt = "12;22;25;26;28;35;37;38;46"
},
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"cbU" = (
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -53582,7 +49329,7 @@
icon_state = "1-4"
},
/turf/open/floor/plating,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"cbV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/secure_closet/brig{
@@ -53602,7 +49349,7 @@
"cbX" = (
/obj/machinery/status_display,
/turf/closed/wall,
-/area/maintenance/port/aft)
+/area/maintenance/fore)
"cbY" = (
/obj/machinery/status_display,
/turf/closed/wall,
@@ -53672,7 +49419,6 @@
},
/obj/machinery/computer/security/telescreen{
name = "Test Chamber Monitor";
- icon_state = "telescreen";
dir = 4;
pixel_y = 2;
network = list("xeno")
@@ -53786,7 +49532,6 @@
/area/construction)
"ccw" = (
/obj/machinery/power/terminal{
- icon_state = "term";
dir = 8
},
/obj/structure/cable/yellow{
@@ -53827,7 +49572,6 @@
dir = 4
},
/obj/structure/transit_tube/station/reverse{
- icon_state = "closed_terminus0";
dir = 1
},
/turf/open/floor/plating,
@@ -54006,7 +49750,6 @@
},
/obj/structure/window/reinforced,
/obj/structure/transit_tube/curved/flipped{
- icon_state = "curved1";
dir = 4
},
/turf/open/floor/plating,
@@ -54047,7 +49790,6 @@
dir = 8
},
/obj/structure/transit_tube/curved{
- icon_state = "curved0";
dir = 8
},
/turf/open/floor/plating,
@@ -54137,7 +49879,6 @@
"cdh" = (
/obj/structure/lattice,
/obj/structure/transit_tube/curved{
- icon_state = "curved0";
dir = 8
},
/turf/open/space/basic,
@@ -54170,19 +49911,6 @@
dir = 8
},
/area/hallway/secondary/exit/departure_lounge)
-"cdk" = (
-/obj/machinery/power/apc{
- areastring = "/area/construction";
- cell_type = null;
- dir = 8;
- name = "Construction APC";
- pixel_x = -24
- },
-/obj/structure/cable/yellow{
- icon_state = "0-2"
- },
-/turf/open/floor/plating,
-/area/construction)
"cdl" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/crowbar,
@@ -54252,6 +49980,7 @@
/obj/machinery/light/small{
dir = 8
},
+/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat/foyer)
"cdu" = (
@@ -54263,14 +49992,12 @@
"cdv" = (
/obj/structure/lattice/catwalk,
/obj/structure/transit_tube/curved{
- icon_state = "curved0";
dir = 1
},
/turf/open/space/basic,
/area/space/nearstation)
"cdw" = (
/obj/structure/transit_tube/station/reverse{
- icon_state = "closed_terminus0";
dir = 1
},
/turf/open/floor/plating,
@@ -54292,7 +50019,6 @@
name = "AI privacy shutters"
},
/obj/structure/transit_tube/curved/flipped{
- icon_state = "curved1";
dir = 8
},
/turf/open/floor/plating,
@@ -54310,7 +50036,6 @@
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/aisat/foyer";
enabled = 1;
- icon_state = "control_standby";
name = "AI Chamber Foyer Control";
pixel_y = -24;
req_access = null;
@@ -54348,7 +50073,6 @@
"cdE" = (
/obj/structure/lattice,
/obj/structure/transit_tube/curved{
- icon_state = "curved0";
dir = 1
},
/turf/open/space/basic,
@@ -54375,7 +50099,6 @@
"cdI" = (
/obj/structure/lattice/catwalk,
/obj/structure/transit_tube/curved/flipped{
- icon_state = "curved1";
dir = 8
},
/turf/open/space/basic,
@@ -54422,21 +50145,6 @@
initial_gas_mix = "o2=1000;TEMP=293.15"
},
/area/engine/atmos)
-"cdO" = (
-/obj/structure/plasticflaps/opaque,
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=1";
- dir = 1;
- freq = 1400;
- location = "Engineering";
- name = "navigation beacon (Engineering Delivery)"
- },
-/obj/machinery/door/window/northright{
- name = "Engineering Delivery Access";
- req_access_txt = "10"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"cdP" = (
/obj/effect/turf_decal/tile/yellow{
dir = 1
@@ -54482,23 +50190,6 @@
},
/turf/open/floor/plating,
/area/security/main)
-"cdS" = (
-/obj/machinery/suit_storage_unit/security,
-/obj/effect/turf_decal/tile/red{
- dir = 1
- },
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/obj/machinery/power/apc{
- areastring = "/area/ai_monitored/security/armory";
- dir = 8;
- name = "Armory APC";
- pixel_x = -24
- },
-/obj/structure/cable/yellow,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
"cdT" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -54522,13 +50213,6 @@
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/port/fore)
-"cdW" = (
-/obj/structure/disposalpipe/segment{
- dir = 5
- },
-/obj/effect/spawner/lootdrop/grille_or_trash,
-/turf/open/floor/plating,
-/area/maintenance/port/fore)
"cdX" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -54851,6 +50535,9 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"ceF" = (
@@ -54859,11 +50546,13 @@
},
/obj/structure/disposalpipe/sorting/mail/flip{
dir = 4;
- icon_state = "pipe-j2s";
name = "sorting disposal pipe (Law Office)";
sortType = 29
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"ceG" = (
@@ -54881,30 +50570,33 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/disposalpipe/sorting/mail/flip{
- dir = 4;
- icon_state = "pipe-j2s";
- name = "sorting disposal pipe (Engineering)";
- sortType = 0;
- sortTypes = list(4,5)
- },
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"ceI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"ceI" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4;
+ name = "sorting disposal pipe (Engineering)";
+ sortTypes = list(4,5)
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
@@ -54996,6 +50688,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
+"ceW" = (
+/obj/effect/landmark/start/station_engineer,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"cfc" = (
/turf/open/floor/plasteel/white/side{
dir = 1
@@ -55007,20 +50706,317 @@
dir = 1
},
/area/science/xenobiology)
-"cIZ" = (
-/turf/closed/wall,
-/area/crew_quarters/fitness/locker_room)
-"cOZ" = (
-/obj/machinery/power/rad_collector/anchored,
-/obj/structure/cable{
- icon_state = "0-4"
+"cgH" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Cooling Loop Bypass"
},
-/obj/effect/turf_decal/bot,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"cla" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/circuit/airless,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"clO" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/reagent_containers/glass/beaker/cryoxadone,
+/obj/machinery/airalarm{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"csr" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
+"csH" = (
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"cvc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/mob/living/simple_animal/bot/cleanbot,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/service)
+"cvq" = (
+/obj/machinery/atmospherics/pipe/simple/purple/visible{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"cxa" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"cxK" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"czY" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/teleporter";
+ dir = 1;
+ name = "Teleporter APC";
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"cAa" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"cDf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Suit Storage";
+ dir = 8;
+ network = list("ss13","Engineering","Engine")
+ },
+/turf/open/floor/plasteel,
/area/engine/engineering)
+"cIZ" = (
+/turf/closed/wall,
+/area/crew_quarters/fitness/locker_room)
+"cLX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/engineering/glass/critical{
+ heat_proof = 1;
+ name = "Supermatter Chamber";
+ req_access_txt = "10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"cNG" = (
+/obj/structure/table/wood,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"cOZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/engine/supermatter)
+"cPq" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/heads/captain";
+ dir = 1;
+ name = "Captain's Office APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -32
+ },
+/obj/machinery/door/window/southleft{
+ name = "Suit Access";
+ req_access_txt = "20"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
+"cPK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/department/security";
+ dir = 1;
+ name = "Security Maintenance APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"cRz" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/fitness/recreation";
+ dir = 8;
+ name = "Dormatories APC";
+ pixel_x = -25
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"cUe" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Laser Room";
+ req_access_txt = "10"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/engine,
+/area/engine/engine_room)
+"cXx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"cYx" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera/autoname{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"cZN" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "External Gas to Loop"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"dfK" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"dfN" = (
+/obj/structure/reflector/single/anchored{
+ dir = 6
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"dgr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/closet/crate,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"diw" = (
+/obj/item/radio/intercom{
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 5
+ },
+/area/science/research)
+"dlq" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Supermatter External Chamber";
+ req_access_txt = "10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"dmV" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"dns" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -55028,9 +51024,33 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"dnN" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"dpg" = (
+/obj/machinery/suit_storage_unit/open,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"dpT" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engine_room)
"dtX" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
- icon_state = "pipe11-2";
dir = 4
},
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
@@ -55039,18 +51059,342 @@
/obj/structure/reagent_dispensers/cooking_oil,
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
/area/crew_quarters/kitchen/coldroom)
+"dxJ" = (
+/obj/structure/closet/wardrobe/science_white,
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"dzi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/camera/autoname{
+ dir = 8
+ },
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/engine/engine_room";
+ dir = 2;
+ name = "Engine Room APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"dCc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/item/twohanded/required/kirbyplants/random,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"dEx" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"dFi" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"dIr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"dNx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"dUa" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"dUt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dUT" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/dropper,
+/obj/item/radio/intercom{
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"dXK" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/fore";
+ dir = 1;
+ name = "Fore Maintenance APC";
+ pixel_y = 23
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"dYW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"dZa" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"dZW" = (
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
+"edu" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/main";
+ dir = 1;
+ name = "Security Office APC";
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"eiC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"elZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"emg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"enD" = (
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/closet/radiation,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"eoH" = (
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Breakroom";
+ dir = 1;
+ network = list("ss13","Atmospherics")
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/item/radio/intercom{
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"eqa" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/sign/warning/securearea{
+ pixel_y = 32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"eqn" = (
+/obj/machinery/suit_storage_unit/hos,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads/hos)
+"esb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northleft{
+ name = "AI Access";
+ req_access_txt = "16"
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"esp" = (
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"esN" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
"esU" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
/area/crew_quarters/kitchen/coldroom)
-"ezL" = (
+"etl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
- icon_state = "2-4"
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"etL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"euD" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"euN" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"exX" = (
+/obj/machinery/power/apc{
+ areastring = "/area/medical/storage";
+ dir = 8;
+ name = "Medical Storage APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/department/medical)
+"eyM" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"ezo" = (
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
"eCj" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -55065,24 +51409,596 @@
/obj/item/bikehorn/rubberducky,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"eCr" = (
+/obj/machinery/camera/autoname{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"eFB" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"eKx" = (
+/obj/machinery/smartfridge/drinks,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"eLr" = (
+/obj/machinery/button/door{
+ id = "podescape";
+ name = "Pod Bay Control";
+ normaldoorcontrol = 0;
+ pixel_x = -8;
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"eMz" = (
+/obj/machinery/chem_master/condimaster{
+ desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments.";
+ name = "HoochMaster Deluxe";
+ pixel_x = -4
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"eNp" = (
+/obj/machinery/power/apc{
+ areastring = "/area/chapel/main";
+ dir = 8;
+ name = "Chapel Main APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"eNw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"eQp" = (
+/obj/machinery/smartfridge/food,
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"eQq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_y = 29
+ },
+/obj/machinery/computer/aifixer{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Research - Research Director's Office";
+ dir = 2;
+ network = list("ss13","Research")
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/heads/hor)
"eRe" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"eRs" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8;
+ name = "scrubbers pipe"
+ },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"eSa" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/quartermaster/office";
+ dir = 8;
+ name = "Cargo Main APC";
+ pixel_x = -25
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"eVJ" = (
+/obj/structure/closet/radiation,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"eXR" = (
+/obj/structure/closet/secure_closet/hop,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Bridge - Head of Personnel's Private Quarters";
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads/hop)
+"eZi" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/warden";
+ dir = 1;
+ name = "Warden's Office APC";
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"fdn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer3,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"fdM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"feg" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/command/glass{
+ name = "Chief Engineer";
+ req_access_txt = "56"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"feu" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Supermatter External Chamber";
+ req_access_txt = "10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"fid" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"fis" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"fiC" = (
+/obj/machinery/computer/teleporter,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/dark,
+/area/teleporter)
+"fkV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"fpA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"fqe" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/storage)
+"fvY" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
/obj/effect/turf_decal/tile/yellow{
dir = 1
},
-/obj/effect/turf_decal/tile/yellow{
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"fxC" = (
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 10
+ },
+/area/science/research)
+"fzs" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
+/area/crew_quarters/kitchen/coldroom)
+"fzV" = (
+/obj/machinery/button/door{
+ desc = "A remote control-switch for the engineering security doors.";
+ id = "Engineering";
+ name = "Engineering Lockdown";
+ pixel_x = 24;
+ pixel_y = -5;
+ req_access_txt = "10"
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "supermatter_external";
+ name = "Supermatter External Lockdown";
+ pixel_x = 36;
+ pixel_y = 5;
+ req_access_txt = "24"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "atmos";
+ name = "Atmospherics Lockdown";
+ pixel_x = 24;
+ pixel_y = 5;
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"fAP" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"fED" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"fKt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"fMr" = (
+/obj/item/radio/intercom{
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel/white,
+/area/science/xenobiology)
+"fNR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/library/lounge";
+ dir = 2;
+ name = "Lounge APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"fOk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"fSj" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"fVo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"fVB" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
-/area/engine/engineering)
+/area/engine/engine_room)
+"fWk" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
+"gbC" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Cooling Loop to Gas"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"gdD" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/captain)
+"gqB" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/rxglasses,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/storage/box/disks{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/requests_console{
+ department = "Genetics";
+ departmentType = 0;
+ name = "Genetics Requests Console";
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"grn" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
"gst" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
/area/crew_quarters/fitness/locker_room)
+"gsu" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/quartermaster/warehouse";
+ dir = 1;
+ name = "Cargo Warehouse APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"gwx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"gxl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"gBb" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/checkpoint/science";
+ dir = 2;
+ name = "Science Checkpoint APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/science)
+"gDW" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"gEO" = (
+/obj/item/radio/intercom{
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"gFA" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/engine_room)
"gGG" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -55099,6 +52015,188 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"gJo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"gNl" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Output Toggle"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/sign/warning/fire{
+ pixel_y = 32
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"gPD" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"gVB" = (
+/obj/machinery/computer/med_data,
+/obj/machinery/power/apc{
+ areastring = "/area/medical/sleeper";
+ dir = 1;
+ name = "Sleepers APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"gVW" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/medical)
+"gWa" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"hdH" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"hez" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
+"hfx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"hhd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/bridge";
+ dir = 8;
+ name = "Bridge APC";
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"hjz" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/dorms";
+ dir = 2;
+ name = "Sleeping Quarters APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"hjJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/hallway/secondary/exit/departure_lounge";
+ dir = 1;
+ name = "Departures APC";
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"hlK" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"hmG" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"hmV" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 4
+ },
+/obj/machinery/power/rad_collector/anchored,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/camera/autoname,
+/turf/open/floor/circuit/green,
+/area/engine/supermatter)
"hnd" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -55114,12 +52212,101 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"hpm" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_x = -29
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"hpU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"hrD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"htS" = (
/obj/structure/extinguisher_cabinet{
pixel_y = 28
},
/turf/open/floor/plasteel/dark,
/area/science/lab)
+"hvP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"hAk" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Input Toggle"
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/structure/sign/warning/fire{
+ pixel_y = 32
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"hAI" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"hDU" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
"hGn" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -55140,17 +52327,475 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"iJC" = (
-/obj/machinery/power/rad_collector/anchored,
-/obj/structure/cable{
- icon_state = "0-8"
+"hKj" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"hLL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"hNP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ name = "sorting disposal pipe (Atmospherics)";
+ sortType = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"hOQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"hRG" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"hSe" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"hTm" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"hTF" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"hTU" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"hVt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"hXd" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_access_txt = "13"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"hYj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/kitchen/coldroom";
+ dir = 1;
+ name = "Kitchen APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"hYI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"hYL" = (
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/turret_protected/ai_upload";
+ dir = 2;
+ name = "AI Upload APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai_upload)
+"hZC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"ibF" = (
+/obj/machinery/power/apc{
+ areastring = "/area/lawoffice";
+ dir = 2;
+ name = "Lawyer's Office APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"icc" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"ice" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/turf/open/floor/circuit/airless,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"ifH" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"ifP" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"iif" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/clothing/head/welding,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 35
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/service)
+"iiw" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"ijH" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/white,
+/area/science/robotics/lab)
+"ili" = (
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ dir = 2;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 5
+ },
+/area/science/research)
+"ipB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"itU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"ixd" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space/basic,
+/area/space/nearstation)
+"iCB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/chair/stool,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"iGD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/turf/closed/wall/r_wall,
+/area/engine/engine_room)
+"iGJ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"iHp" = (
+/obj/structure/grille/broken,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"iHE" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/item/radio/intercom{
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"iIq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
/area/engine/engineering)
+"iJC" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"iMs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"iNo" = (
+/obj/machinery/power/apc{
+ areastring = "/area/security/detectives_office";
+ dir = 1;
+ name = "Detective's Office APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"iRE" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"iUF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"iUZ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"iXv" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"jdu" = (
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"jip" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"jlL" = (
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 13;
+ pixel_y = 5
+ },
+/obj/item/watertank,
+/obj/item/grenade/chem_grenade/antiweed,
+/obj/structure/table/glass,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"jpL" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"jqp" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
"jro" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/light/small{
@@ -55158,6 +52803,45 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"jsm" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"jsv" = (
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"jvP" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"jws" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"jxP" = (
+/obj/machinery/power/supermatter_crystal/engine,
+/turf/open/floor/engine,
+/area/engine/supermatter)
"jzE" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -55175,28 +52859,279 @@
},
/obj/structure/sign/directions/supply{
dir = 1;
- icon_state = "direction_supply";
pixel_y = 42
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
+"jAc" = (
+/obj/machinery/announcement_system,
+/obj/machinery/power/apc{
+ areastring = "/area/tcommsat/computer";
+ dir = 8;
+ name = "Telecomms Lounge APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer)
+"jGy" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"jHY" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"jJz" = (
+/obj/machinery/photocopier,
+/obj/item/radio/intercom{
+ pixel_y = -24
+ },
+/turf/open/floor/wood,
+/area/library)
+"jLo" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"jQo" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/internals/emergency_oxygen/engi{
+ pixel_x = 5
+ },
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/glasses/meson/engine,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"jSs" = (
+/obj/structure/reflector/double,
+/turf/open/floor/plating,
+/area/engine/engine_room)
+"jVA" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"jVL" = (
+/obj/machinery/camera{
+ c_tag = "Engine -External Midleft";
+ dir = 8;
+ network = list("ss13","Engineering","Engine")
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
"jZv" = (
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"kaB" = (
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/storage/eva";
+ dir = 1;
+ name = "EVA APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"kcd" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/engine/engineering)
-"kow" = (
-/obj/machinery/power/rad_collector/anchored,
-/obj/structure/cable,
-/obj/effect/turf_decal/bot,
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/area/engine/engine_room)
+"kcl" = (
+/obj/machinery/power/apc{
+ areastring = "/area/medical/chemistry";
+ dir = 8;
+ name = "Chemistry APC";
+ pixel_x = -25
},
-/turf/open/floor/circuit/airless,
-/area/engine/engineering)
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"kfj" = (
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"klG" = (
+/obj/machinery/power/apc{
+ areastring = "/area/hydroponics";
+ dir = 1;
+ name = "Hydroponics APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"kmI" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"knv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"kuZ" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/obj/machinery/camera/autoname{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "engsm";
+ name = "Radiation Shutters Control";
+ pixel_y = 24;
+ req_access_txt = "10"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"kvC" = (
+/obj/machinery/computer/bank_machine,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/nuke_storage";
+ dir = 1;
+ name = "Vault APC";
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/nuke_storage)
+"kyS" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/medical/medbay/lobby";
+ dir = 2;
+ name = "Medical Lobby APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/medical)
+"kAG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"kAU" = (
+/obj/machinery/power/emitter/anchored{
+ dir = 8;
+ state = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Engine -Emitters Right";
+ dir = 8;
+ network = list("ss13","Engineering","Engine")
+ },
+/turf/open/floor/plating,
+/area/engine/engine_room)
+"kBb" = (
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/port/fore";
+ dir = 1;
+ name = "Port Fore Maintenance APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"kDh" = (
+/obj/machinery/suit_storage_unit/security,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/security/armory";
+ dir = 8;
+ name = "Armory APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
"kLE" = (
/obj/machinery/power/apc{
areastring = "/area/crew_quarters/fitness/locker_room";
@@ -55209,6 +53144,115 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"kMb" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
+"kTN" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/noticeboard{
+ dir = 8;
+ pixel_x = 27
+ },
+/obj/item/paper/monitorkey,
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/heads/chief";
+ dir = 2;
+ name = "CE Office APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"kVx" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"kXJ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"leE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"leR" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"lhs" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/obj/machinery/camera/autoname{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"liH" = (
+/obj/machinery/ntnet_relay,
+/obj/machinery/power/apc{
+ areastring = "/area/tcommsat/server";
+ dir = 2;
+ name = "Telecomms Servers APC";
+ pixel_y = -23
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/dark/telecomms,
+/area/tcommsat/server)
"ljF" = (
/obj/machinery/shower{
dir = 1
@@ -55216,14 +53260,143 @@
/obj/structure/curtain,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
-"lDQ" = (
-/obj/machinery/rnd/production/techfab/department/engineering,
+"ltw" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ dir = 2;
+ pixel_y = -28
+ },
/turf/open/floor/plasteel,
-/area/engine/atmos)
+/area/hallway/primary/central)
+"lwp" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"lxq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"lyr" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"lzi" = (
+/obj/structure/rack,
+/obj/item/storage/bag/plants/portaseeder,
+/obj/item/plant_analyzer,
+/obj/item/plant_analyzer{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/grass,
+/area/hydroponics/garden)
+"lzq" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/light/small,
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
+"lEt" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"lEx" = (
/obj/machinery/chem_master/condimaster,
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
/area/crew_quarters/kitchen/coldroom)
+"lEO" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/disposal";
+ dir = 8;
+ name = "Waste Disposal APC";
+ pixel_x = -25;
+ pixel_y = 3
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"lFs" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"lFx" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/heads/hos";
+ dir = 4;
+ name = "Head of Security's Office APC";
+ pixel_x = 24
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads/hos)
+"lKe" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/disposal/bin,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"lKk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"lLE" = (
/obj/effect/turf_decal/tile/purple{
dir = 8
@@ -55239,6 +53412,56 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
+"lND" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera/autoname{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"lOW" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"maC" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"mbB" = (
+/obj/structure/table,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
+"mgs" = (
+/obj/structure/sign/warning/electricshock,
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
+"mhi" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/space/basic,
+/area/space/nearstation)
+"miv" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"mjA" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
"mjC" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -55249,31 +53472,1257 @@
/obj/structure/curtain,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"mlN" = (
+/obj/structure/closet/secure_closet/freezer/cream_pie,
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"mnC" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/theatre";
+ dir = 2;
+ name = "Theatre APC";
+ pixel_y = -23
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"moJ" = (
+/obj/structure/rack,
+/obj/item/storage/belt/utility,
+/obj/item/wrench,
+/obj/item/weldingtool,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"moO" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room";
+ req_access_txt = "10"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"mpx" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/twohanded/required/kirbyplants/random,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"mpC" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
+"mtv" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/starboard";
+ dir = 1;
+ name = "Starboard Maintenance APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"mwg" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/rods/fifty,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel,
+/area/construction/mining/aux_base)
+"myk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/gateway";
+ dir = 2;
+ name = "Gateway APC";
+ pixel_y = -23
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"mBI" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/sign/warning/securearea{
+ pixel_y = 32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"mFO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"mFQ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"mGm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"mHo" = (
+/obj/machinery/power/emitter/anchored{
+ dir = 8;
+ state = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_room)
+"mHD" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"mHS" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Main Hall 2";
+ dir = 8;
+ network = list("ss13","Security")
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"mJV" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"mKc" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel,
+/area/vacant_room/commissary)
+"mLl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"mNo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"mNC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"mSf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"mUn" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"mUy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"mVy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/item/clothing/head/cone,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"mXC" = (
+/obj/structure/rack,
+/obj/item/storage/box/lights/mixed,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/twohanded/rcl/pre_loaded,
+/obj/item/twohanded/rcl/pre_loaded,
+/obj/item/crowbar/large,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"mXO" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"mXY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"naE" = (
+/obj/machinery/power/apc{
+ areastring = "/area/security/brig";
+ dir = 2;
+ name = "Brig APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"naO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"nbA" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
"njx" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 28
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
+"nkG" = (
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 2;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"nlD" = (
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"nnE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"nrD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"nsr" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"ntE" = (
+/obj/item/radio/intercom{
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
"nuq" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3,
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
/area/crew_quarters/kitchen/coldroom)
+"nvs" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/structure/light_construct/small{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/department/crew_quarters/bar";
+ cell_type = null;
+ dir = 1;
+ name = "Abandoned Bar APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/department/crew_quarters/bar)
+"nwZ" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/machinery/power/apc{
+ areastring = "/area/medical/cryo";
+ dir = 1;
+ name = "Cryogenics APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"nyj" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"nyl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = -29
+ },
+/turf/open/floor/plasteel/dark,
+/area/bridge)
+"nyx" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"nyL" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"nBZ" = (
+/obj/machinery/power/rad_collector/anchored,
+/obj/structure/window/plasma/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/circuit/green,
+/area/engine/supermatter)
+"nCF" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Hallway - Escape Right Wing 1";
+ dir = 1;
+ network = list("ss13")
+ },
+/obj/item/radio/intercom{
+ dir = 2;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"nDW" = (
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main)
+"nEo" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"nEL" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"nIf" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"nLJ" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"nNJ" = (
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"nOy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"nPi" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/fitness";
+ dir = 8;
+ name = "Fitness APC";
+ pixel_x = -25
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"nPz" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/analyzer,
+/obj/item/analyzer,
+/obj/item/analyzer,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"nRb" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
+/area/crew_quarters/kitchen/coldroom)
+"nUo" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/item/twohanded/required/kirbyplants/random,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"nVf" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance/two,
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/department/engine";
+ dir = 4;
+ name = "Engineering Maintenance APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"nZS" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/carpet,
+/area/library/lounge)
+"oak" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"odJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
+"oee" = (
+/obj/item/radio/intercom{
+ pixel_x = -29
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"ofx" = (
+/obj/structure/plasticflaps/opaque,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ dir = 1;
+ freq = 1400;
+ location = "Engineering";
+ name = "navigation beacon (Engineering Delivery)"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ohU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"oij" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/item/twohanded/required/kirbyplants/random,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"okf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"oms" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
"omI" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
+"ooZ" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Laser Room";
+ req_access_txt = "10"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/turf/open/floor/engine,
+/area/engine/engine_room)
+"opl" = (
+/obj/structure/sign/warning/vacuum{
+ pixel_y = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"oqE" = (
+/obj/structure/girder,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"oqF" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"osG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 10
+ },
+/obj/machinery/camera/autoname{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/item/twohanded/required/kirbyplants/random,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"oAn" = (
+/obj/item/reagent_containers/food/snacks/salad/validsalad,
+/turf/open/floor/plating,
+/area/engine/engine_room)
+"oAP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Mix to Gas"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"oBN" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/holopad,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"oBZ" = (
+/obj/machinery/computer/bounty,
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/heads/hop";
+ dir = 1;
+ name = "Head of Personnel's Office APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/hop)
+"oCw" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
+"oDl" = (
+/obj/machinery/door/window/westright,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
+"oDI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"oGu" = (
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/turret_protected/aisat/service";
+ dir = 8;
+ name = "MiniSat Service APC";
+ pixel_x = -25
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/service)
+"oHN" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"oIG" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"oKN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/processing";
+ dir = 1;
+ name = "Labor Processing APC";
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"oMf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Atmos to Loop"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"oMw" = (
+/obj/machinery/camera{
+ c_tag = "Research - Toxins Main 2";
+ dir = 2;
+ network = list("ss13","Research")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/item/radio/intercom{
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
+"oNF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"oPe" = (
+/turf/closed/wall/r_wall,
+/area/lawoffice)
+"oRe" = (
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 6
+ },
+/area/science/research)
+"oVd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"oVG" = (
+/obj/machinery/power/apc/highcap/five_k{
+ dir = 2;
+ name = "AI Chamber APC";
+ areastring = "/area/ai_monitored/turret_protected/ai";
+ pixel_y = -23
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = -11;
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/door/window/eastleft{
+ name = "AI Access";
+ req_access_txt = "16"
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"oVP" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"oWa" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"oWU" = (
+/obj/machinery/power/apc{
+ areastring = "/area/medical/surgery";
+ dir = 1;
+ name = "Surgery APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"pgT" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "External Gas to Loop"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"piG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"pkz" = (
+/obj/machinery/power/apc{
+ areastring = "/area/library";
+ dir = 8;
+ name = "Library APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/turf/open/floor/plating,
+/area/maintenance/fore)
"plI" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
+"pmp" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/medical)
+"pmD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"poI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"ppV" = (
+/turf/closed/wall/r_wall,
+/area/hydroponics)
+"psF" = (
+/obj/structure/closet/radiation,
+/obj/machinery/power/apc{
+ areastring = "/area/engine/engine_room/external";
+ dir = 8;
+ name = "Supermatter External Access";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"ptm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"pwb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"pwu" = (
+/obj/machinery/power/apc{
+ areastring = "/area/science/explab";
+ dir = 1;
+ name = "Experimentation APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
+"pxQ" = (
+/obj/item/clothing/head/cone,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"pyl" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
"pBI" = (
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
/area/crew_quarters/kitchen/coldroom)
+"pGQ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
+"pGU" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"pHi" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"pLI" = (
+/obj/machinery/power/emitter/anchored{
+ dir = 4;
+ state = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/engine/engine_room)
+"pMU" = (
+/obj/machinery/power/apc{
+ areastring = "/area/storage/tools";
+ dir = 1;
+ name = "Aux Tool Storage APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard/fore)
+"pNR" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/courtroom";
+ dir = 8;
+ name = "Courtroom APC";
+ pixel_x = -25;
+ pixel_y = 3
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"pSa" = (
+/obj/machinery/camera{
+ c_tag = "Secure - EVA";
+ dir = 8;
+ network = list("ss13","Secure")
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"pSm" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"pTq" = (
+/obj/machinery/power/apc{
+ areastring = "/area/medical/medbay/central";
+ dir = 1;
+ name = "Medical Main APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
"pWc" = (
/obj/machinery/camera/motion{
c_tag = "Secure - Captain's Office External";
@@ -55281,7 +54730,168 @@
network = list("AISat")
},
/turf/open/space/basic,
-/area/space)
+/area/space/nearstation)
+"pYp" = (
+/obj/structure/table,
+/obj/machinery/power/apc{
+ areastring = "/area/medical/genetics/cloning";
+ dir = 2;
+ name = "Cloning Bay APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow,
+/obj/item/toy/figure/geneticist,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics/cloning)
+"qag" = (
+/obj/machinery/power/rad_collector/anchored,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/obj/structure/window/plasma/reinforced{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/open/floor/circuit/green,
+/area/engine/supermatter)
+"qkE" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/flashlight,
+/obj/item/pipe_dispenser,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Engine - SMES";
+ dir = 8;
+ network = list("ss13","Engineering","Engine")
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"qlL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"qoF" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"qpi" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/item/radio/intercom{
+ dir = 2;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"qpo" = (
+/obj/structure/table/glass,
+/obj/machinery/power/apc{
+ areastring = "/area/medical/virology";
+ dir = 2;
+ name = "Virology APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/pen/red,
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "virology_airlock_exterior";
+ idInterior = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = 22;
+ pixel_y = 8;
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"qqo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"qrk" = (
+/obj/machinery/smartfridge/chemistry/virology/preloaded,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"qxz" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/item/twohanded/required/kirbyplants/random,
+/obj/machinery/button/door{
+ dir = 2;
+ id = "supermatter_external";
+ name = "Supermatter External Lockdown";
+ pixel_x = 5;
+ pixel_y = -24;
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"qxF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/item/twohanded/required/kirbyplants/random,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"qxZ" = (
/obj/structure/sign/warning/pods{
pixel_y = 32
@@ -55293,11 +54903,19 @@
"qyl" = (
/obj/machinery/atmospherics/pipe/manifold4w/dark/visible,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- icon_state = "pipe11-3";
dir = 6
},
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
/area/crew_quarters/kitchen/coldroom)
+"qBm" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
"qBt" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -55307,6 +54925,37 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
+"qCl" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/department/medical";
+ dir = 2;
+ name = "Medical Maintenance APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/medical)
+"qDQ" = (
+/obj/machinery/camera/autoname,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"qHu" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/radio/intercom{
+ dir = 2;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/white,
+/area/science/explab)
"qIb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
@@ -55316,6 +54965,117 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"qKO" = (
+/obj/structure/grille,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"qLM" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"qMo" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/engine/engineering";
+ dir = 1;
+ name = "Engineering APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"qOX" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 10
+ },
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"qWm" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat/foyer)
+"qXl" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/department/engine)
+"qYj" = (
+/obj/machinery/power/apc{
+ areastring = "/area/chapel/office";
+ dir = 8;
+ name = "Chapel Office APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"qYJ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"qZu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"rck" = (
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/port/aft";
+ dir = 1;
+ name = "Port Aft Maintenance APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"rcn" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"rfC" = (
/obj/structure/lattice,
/obj/machinery/camera/motion{
@@ -55325,6 +55085,729 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+"ria" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"rmC" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"rta" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"ruT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"rwy" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"rBV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"rDp" = (
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/engine/atmos";
+ dir = 8;
+ name = "Atmospherics APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"rDY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"rFm" = (
+/obj/structure/window/plasma/reinforced{
+ dir = 4
+ },
+/obj/machinery/power/rad_collector/anchored,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/circuit/green,
+/area/engine/supermatter)
+"rFt" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"rJs" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "Gas to Filter"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"rLt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm"
+ },
+/turf/open/floor/plating,
+/area/engine/supermatter)
+"rPx" = (
+/obj/structure/lattice,
+/obj/machinery/camera/autoname{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"rQg" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"rQo" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
+"rSs" = (
+/obj/machinery/computer/monitor,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/service)
+"rUR" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"rVP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"rYP" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"seG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"seX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"sfa" = (
+/obj/machinery/button/door{
+ desc = "A remote control-switch for secure storage.";
+ id = "Secure Storage";
+ name = "Engineering Secure Storage";
+ pixel_x = 24;
+ pixel_y = 5;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/autoname{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"sfL" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/science/server)
+"sjB" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"skk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
+"skl" = (
+/obj/machinery/door/airlock/engineering/glass/critical{
+ heat_proof = 1;
+ name = "Supermatter Chamber";
+ req_access_txt = "10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"skG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/engine/supermatter)
+"slb" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera/autoname{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"smc" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"snW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"son" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"sos" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"soJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"spN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/engine_room)
+"sqt" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/hallway/primary/central";
+ dir = 1;
+ name = "Central Hallway Maintenance APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"srD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/atmos)
+"stN" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"sxr" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/rods/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/electronics/airlock,
+/obj/item/electronics/airlock,
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 30
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"sxJ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"szx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"szT" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Supermatter External Chamber";
+ req_access_txt = "10"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "supermatter_external";
+ name = "Supermatter External Blast Door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"sCI" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/closet/athletic_mixed,
+/obj/item/radio/intercom{
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"sEf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"sEr" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Airlock";
+ req_access_txt = "13"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"sEU" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/visible,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engine_room)
+"sHj" = (
+/obj/item/radio/intercom{
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/science/research)
+"sKR" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"sLW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"sMe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"sPB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_x = -29
+ },
+/turf/open/floor/plasteel/dark,
+/area/medical/morgue)
+"sTB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/aft";
+ dir = 1;
+ name = "Aft Maintenance APC";
+ pixel_y = 28
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"sXg" = (
+/obj/structure/chair,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/lobby)
+"sYx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"sZm" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"tcB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"tdw" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/heads/cmo";
+ dir = 8;
+ name = "CMO's Office APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"tfI" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"tlY" = (
+/obj/machinery/status_display/evac,
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
+"tnz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"tok" = (
+/obj/machinery/vending/wardrobe/jani_wardrobe,
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"tpd" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"tqi" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/engine/engine_room)
+"tsa" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Engine - Freezer Ports";
+ dir = 4;
+ network = list("ss13","Engineering","Engine")
+ },
+/obj/structure/sign/warning/nosmoking{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"tus" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/reflector/double,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"tuR" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"tzv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/radio/intercom{
+ pixel_x = 29
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"tzD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/item/radio/intercom{
+ dir = 2;
+ pixel_y = -28
+ },
+/turf/open/floor/wood,
+/area/library)
+"tBY" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
+"tFw" = (
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"tHJ" = (
+/turf/closed/wall/r_wall,
+/area/engine/engine_room/external)
+"tKA" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"tOh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/freezer,
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/warehouse)
"tQN" = (
/obj/machinery/shower{
dir = 1
@@ -55335,6 +55818,18 @@
/obj/structure/curtain,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"tTb" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"tVl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -55347,6 +55842,235 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"uaG" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/library)
+"ubS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"udR" = (
+/obj/structure/sign/warning/enginesafety{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"ueA" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Hallway - Escape Left Wing 1";
+ dir = 1;
+ network = list("ss13")
+ },
+/obj/item/radio/intercom{
+ dir = 2;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit/departure_lounge)
+"ueN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"ufN" = (
+/obj/machinery/photocopier,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"ugj" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera{
+ c_tag = "Engine -External Topleft";
+ dir = 8;
+ network = list("ss13","Engineering","Engine")
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"ugT" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ brightness = 3;
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"uiU" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera{
+ c_tag = "Engine -External Bottomleft";
+ dir = 8;
+ network = list("ss13","Engineering","Engine")
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"unF" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/crate_spawner,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"uoF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"upM" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"uqn" = (
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"utg" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"utL" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/construction/mining/aux_base";
+ dir = 4;
+ name = "Aux Base APC";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/construction/mining/aux_base)
+"uva" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3,
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel,
+/area/science/storage)
+"uwG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/item/radio/intercom{
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"uwV" = (
+/turf/closed/wall/r_wall,
+/area/engine/engine_room)
+"uzp" = (
+/obj/machinery/power/apc{
+ areastring = "/area/ai_monitored/turret_protected/aisat/foyer";
+ dir = 4;
+ name = "MiniSat Main APC";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
+"uzG" = (
+/obj/machinery/power/apc{
+ areastring = "/area/science/research";
+ dir = 2;
+ name = "Science Main APC";
+ pixel_y = -23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"uzT" = (
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
"uIo" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -55360,16 +56084,304 @@
/obj/structure/curtain,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
-"vws" = (
+"uIu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 1
+ },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/effect/turf_decal/tile/yellow{
+/turf/open/floor/plating,
+/area/engine/engineering)
+"uQL" = (
+/obj/effect/turf_decal/tile/neutral{
dir = 4
},
-/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"uRy" = (
+/obj/machinery/power/apc{
+ areastring = "/area/quartermaster/miningdock";
+ dir = 1;
+ name = "Mining Dock APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"uTy" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/engine/atmos)
+"uUp" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
+"uXm" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/sign/warning/nosmoking{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"uYg" = (
+/obj/structure/sign/warning/nosmoking{
+ pixel_y = 32
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/suit_storage_unit/engine,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room/external)
+"vbr" = (
+/obj/machinery/power/emitter/anchored{
+ dir = 4;
+ state = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/camera{
+ c_tag = "Engine - Emitters Left";
+ dir = 4;
+ network = list("ss13","Engineering","Engine")
+ },
+/turf/open/floor/plating,
+/area/engine/engine_room)
+"vch" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"vcT" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/bar";
+ dir = 1;
+ name = "Bar APC";
+ pixel_y = 23
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"vdQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"vgy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"viK" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"vjd" = (
+/obj/structure/rack,
+/obj/item/gun/energy/ionrifle,
+/obj/item/gun/energy/temperature/security,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
+"vjt" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"vjX" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
/turf/open/floor/plasteel,
/area/engine/engineering)
+"vmc" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"vmg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"voh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/fore)
+"vpa" = (
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/meter,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"vqS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads/captain/private)
+"vtD" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"vvH" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
"vxP" = (
/obj/effect/turf_decal/tile/neutral,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
@@ -55388,6 +56400,108 @@
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
+"vyZ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"vzQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"vAj" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/metal/fifty,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"vAo" = (
+/obj/machinery/power/emitter{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engine_room)
+"vBp" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"vBQ" = (
+/obj/machinery/power/apc/highcap/ten_k{
+ areastring = "/area/janitor";
+ dir = 8;
+ name = "Custodial Closet APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"vFq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm"
+ },
+/obj/item/tank/internals/plasma,
+/turf/open/floor/plating,
+/area/engine/supermatter)
+"vHF" = (
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/ai_upload)
+"vIe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 10
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"vLi" = (
+/obj/machinery/power/apc{
+ areastring = "/area/maintenance/port";
+ dir = 8;
+ name = "Port Maintenance APC";
+ pixel_x = -24
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"vLE" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"vMB" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -55413,19 +56527,597 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
+"vPT" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
+"vQd" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer3{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"vRP" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"vSP" = (
+/obj/structure/sign/warning/nosmoking/circle{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"vUd" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "Mix Bypass"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"vVH" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"vXg" = (
+/obj/machinery/dna_scannernew,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"waf" = (
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"wia" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/closet/crate,
+/obj/item/paicard,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"wkM" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/camera{
+ c_tag = "Civilian - Tool Storage";
+ dir = 4;
+ network = list("ss13")
+ },
+/obj/item/radio/intercom{
+ pixel_x = -29
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"wlc" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"wll" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Engineering - Tank Storage";
+ dir = 1;
+ network = list("ss13","Engineering","Engine")
+ },
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"wmg" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"wod" = (
+/obj/structure/table,
+/obj/item/toy/figure/borg,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
+"wok" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"wpG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads/chief)
+"wrV" = (
+/obj/structure/kitchenspike,
+/obj/item/radio/intercom{
+ dir = 2;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
+/area/crew_quarters/kitchen/coldroom)
+"wtu" = (
+/obj/structure/bed,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/item/bedsheet/dorms,
+/obj/machinery/airalarm{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/dorms)
+"wvW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/effect/holodeck_effect/cards,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"wwX" = (
+/obj/machinery/computer/cargo,
+/obj/item/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads/hop)
+"wxZ" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/checkpoint";
+ dir = 8;
+ name = "Docks Checkpoint APC";
+ pixel_x = -25
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint)
+"wzU" = (
+/obj/machinery/atmospherics/pipe/manifold/green/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/airalarm/engine{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel,
+/area/engine/supermatter)
+"wBW" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"wCc" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/security/prison";
+ dir = 8;
+ name = "Prison APC";
+ pixel_x = -25
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"wFi" = (
+/obj/machinery/power/apc{
+ areastring = "/area/crew_quarters/heads/captain/private";
+ dir = 1;
+ name = "Captain's Private Quarters APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads/captain/private)
+"wIl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"wIF" = (
+/obj/machinery/recharge_station,
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel,
+/area/science/robotics/mechbay)
+"wJv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera{
+ c_tag = "Research - Toxins Storage";
+ dir = 2;
+ network = list("ss13","Research")
+ },
+/obj/machinery/power/apc{
+ areastring = "/area/science/storage";
+ dir = 1;
+ name = "Toxins Storage APC";
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/science/storage)
+"wLO" = (
+/obj/machinery/power/apc{
+ areastring = "/area/science/lab";
+ dir = 1;
+ name = "Research Lab APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"wMf" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/modular_computer/console/preset/engineering{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engineering)
+"wMM" = (
+/obj/machinery/stasis,
+/obj/machinery/airalarm{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel,
+/area/medical/sleeper)
+"wPr" = (
+/obj/machinery/power/apc{
+ areastring = "/area/construction";
+ cell_type = null;
+ dir = 8;
+ name = "Construction APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/construction)
+"wQC" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/structure/sign/poster/official/random{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"wTx" = (
+/obj/machinery/door/window/eastleft,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
+"wUt" = (
+/obj/structure/sign/warning/radiation,
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
+"wVQ" = (
+/obj/item/radio/intercom{
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/dark,
+/area/tcommsat/computer)
+"xaB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4;
+ name = "Output Release"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"xbA" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"xdQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"xec" = (
+/obj/structure/noticeboard{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/science/lab)
+"xhv" = (
+/obj/machinery/airalarm{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
"xhI" = (
/turf/closed/wall,
/area/crew_quarters/kitchen/coldroom)
+"xiu" = (
+/obj/machinery/shieldgen,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"xoZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/security)
+"xrC" = (
+/obj/machinery/power/apc{
+ areastring = "/area/solar/aft";
+ dir = 8;
+ name = "Aft Solar APC";
+ pixel_x = -25;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/solar/aft)
+"xtN" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"xve" = (
+/obj/machinery/power/apc{
+ areastring = "/area/science/mixing";
+ dir = 1;
+ name = "Toxins Mixing APC";
+ pixel_y = 23
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/science/mixing)
"xyz" = (
/obj/machinery/atmospherics/pipe/manifold/dark/visible{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
- icon_state = "pipe11-3";
dir = 9
},
/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor,
/area/crew_quarters/kitchen/coldroom)
+"xyU" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/circuit,
+/area/ai_monitored/turret_protected/ai)
+"xBI" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"xCE" = (
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"xDp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel/dark,
+/area/security/courtroom)
+"xGM" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Main Airlock";
+ dir = 2;
+ network = list("ss13","Engineering","Engine")
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"xKE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
+"xLk" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
+"xLt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/purple/hidden/layer1,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engine_room/external)
"xOq" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/light/small{
@@ -55434,6 +57126,152 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/fitness/locker_room)
+"xRV" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/plasteel/dark,
+/area/crew_quarters/heads/chief)
+"xUj" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer3,
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"xWi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port/aft)
+"xWs" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"xXZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/department/engine)
+"ybh" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ycZ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"ydf" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"yeA" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"yfz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat/foyer)
+"ygs" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay/central)
+"yhe" = (
+/obj/structure/reflector/single/anchored{
+ dir = 10
+ },
+/turf/open/floor/plasteel/dark,
+/area/engine/engine_room)
+"yjo" = (
+/obj/effect/spawner/lootdrop/grille_or_trash,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ykr" = (
+/obj/structure/window/reinforced,
+/turf/open/space/basic,
+/area/space/nearstation)
+"ykD" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/engine/engine_room)
"yma" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/yellow{
@@ -59147,11 +60985,11 @@ aaa
aaa
aaa
aaa
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
aaa
aaa
aaa
@@ -59403,13 +61241,13 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aeh
aab
aeh
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -59659,15 +61497,15 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaC
aep
agL
aep
aaC
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -59915,8 +61753,8 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aas
aaD
aeC
@@ -59924,8 +61762,8 @@ agM
agS
aas
aaD
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -60172,7 +62010,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aab
aab
aaF
@@ -60182,7 +62020,7 @@ aeH
ahe
aab
aab
-aau
+aal
aaa
aaa
aaa
@@ -60429,7 +62267,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aap
aaB
aaI
@@ -60439,7 +62277,7 @@ aeH
ahg
ahS
aap
-aau
+aal
aaa
aaa
aaa
@@ -60686,7 +62524,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aab
aab
adB
@@ -60696,7 +62534,7 @@ aeH
ahh
aab
aab
-aau
+aal
aaa
aaa
aaa
@@ -60943,8 +62781,8 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aas
aaD
agB
@@ -60952,8 +62790,8 @@ agP
ahc
aas
aaD
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -61201,15 +63039,15 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaC
aeh
agR
aeh
aaC
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -61459,13 +63297,13 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aep
agP
aep
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -61717,11 +63555,11 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -61975,10 +63813,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -62232,9 +64070,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -62489,11 +64327,11 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aaa
aaa
@@ -62746,9 +64584,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -63003,9 +64841,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -63260,10 +65098,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -63517,9 +65355,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -63773,10 +65611,10 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -64031,10 +65869,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -64288,9 +66126,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -64544,11 +66382,11 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -64802,9 +66640,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -65059,10 +66897,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -65316,9 +67154,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -65573,9 +67411,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -65830,10 +67668,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -66087,9 +67925,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -66343,10 +68181,10 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -66601,10 +68439,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -66858,9 +68696,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -67114,11 +68952,11 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -67372,9 +69210,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -67629,10 +69467,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -67886,9 +69724,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -68142,10 +69980,10 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -68400,10 +70238,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -68657,9 +70495,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -68914,10 +70752,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -69171,10 +71009,10 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -69428,24 +71266,24 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
@@ -69684,26 +71522,26 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
+aal
aaa
aaa
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aaa
-aau
-aau
+aal
+aal
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aaa
aaa
@@ -69942,9 +71780,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -70199,12 +72037,12 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aeS
bYc
bTU
@@ -70220,7 +72058,7 @@ bXg
bTU
bYc
aeS
-aau
+aal
aaa
aaa
aaa
@@ -70455,13 +72293,13 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aeS
bTU
bXC
@@ -70477,7 +72315,7 @@ ceg
cbA
bTU
aeS
-aau
+aal
aaa
aaa
aaa
@@ -70713,12 +72551,12 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aeS
bTU
bXN
@@ -70736,7 +72574,7 @@ bTU
aeS
aaa
aaa
-aau
+aal
aaa
aaa
aaa
@@ -70969,10 +72807,10 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -71225,11 +73063,11 @@ aaa
aaa
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -71483,12 +73321,12 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aeS
bTU
@@ -71740,10 +73578,10 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
+aal
aeS
aeS
aeS
@@ -71794,12 +73632,12 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
aaa
-aau
+aal
aaa
aQX
aQX
@@ -71998,9 +73836,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aeS
bWX
cdT
@@ -72059,13 +73897,13 @@ aaa
bpB
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aQX
aQX
@@ -72255,9 +74093,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aeS
bTU
bXC
@@ -72281,11 +74119,11 @@ cbA
bQW
bPc
aeS
-aau
+aal
aaa
abE
aaa
-aau
+aal
aaa
aaa
aaa
@@ -72316,13 +74154,13 @@ aaN
aaN
aaN
aaN
-aau
+aal
aaa
aaa
-aau
+aal
bLx
aaa
-aau
+aal
aaa
aaa
aaa
@@ -72538,13 +74376,13 @@ bXN
bQW
bPc
aeS
-aau
+aal
aaa
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
aaa
aaa
aaa
@@ -72560,8 +74398,8 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aug
aug
aaa
@@ -72581,8 +74419,8 @@ aBY
aBY
aBY
aBY
-aau
-aau
+aal
+aal
aQX
aaa
aaa
@@ -72765,7 +74603,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aeS
bTU
blO
@@ -72820,7 +74658,7 @@ aaa
aug
aug
aug
-aau
+aal
aaa
aaN
atQ
@@ -73010,19 +74848,19 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
aaa
-aau
+aal
aeS
bTU
bTg
@@ -73064,18 +74902,18 @@ bMs
acB
aaa
aaa
-aau
-aau
+aal
+aal
aaa
aaa
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
abE
aug
aug
-aau
+aal
aaa
aaa
aaN
@@ -73083,13 +74921,13 @@ aaN
atR
aaN
aaN
-bIM
+jAc
bJp
cdD
aBY
aCm
aCy
-aCp
+csr
aBY
bIe
aCp
@@ -73266,20 +75104,20 @@ aaa
aaa
aaa
aaa
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aaa
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aaa
-aau
-aau
+aal
+aal
aeS
bTU
bTy
@@ -73297,7 +75135,7 @@ ano
ano
aAI
bXL
-aAI
+fMr
ano
ano
ano
@@ -73319,17 +75157,17 @@ bMs
bMs
bMs
acB
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
aug
aaa
aaa
@@ -73353,8 +75191,8 @@ aCp
bxl
aBY
aBY
-aau
-aau
+aal
+aal
aQX
aaa
aaa
@@ -73588,10 +75426,10 @@ aug
aug
aug
aug
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aaX
asZ
atU
@@ -73834,18 +75672,18 @@ bmA
aHu
acB
bel
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
aaa
aaa
aaa
@@ -74031,7 +75869,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aeS
bXl
bXm
@@ -74094,15 +75932,15 @@ bhE
acB
aaa
aaa
-aau
+aal
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
@@ -74122,11 +75960,11 @@ bIY
bJc
bIW
bJg
-bzz
+liH
aBY
aBY
bMF
-aau
+aal
aQX
aaa
aaa
@@ -74288,7 +76126,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aeS
bZV
bTU
@@ -74349,17 +76187,17 @@ bfm
bdv
bYy
acB
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
aaa
aaa
aaa
@@ -74560,7 +76398,7 @@ acA
acX
adg
aco
-adM
+xve
adL
aec
aec
@@ -74616,10 +76454,10 @@ aCq
aCq
aCq
aCu
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
asX
ato
aBN
@@ -74801,7 +76639,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aeS
buu
bTU
@@ -74864,14 +76702,14 @@ bYw
bhJ
acB
aCa
-aau
+aal
cdf
cdq
cdq
bAI
cdq
cdA
-aau
+aal
aCa
aaa
aaa
@@ -74880,7 +76718,7 @@ aaa
aaN
atq
aBW
-atT
+wVQ
bIK
bJd
bJd
@@ -74895,8 +76733,8 @@ aCp
bxm
aBY
aBY
-aau
-aau
+aal
+aal
aQX
aaa
aaa
@@ -75058,7 +76896,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
arU
bYa
bTU
@@ -75068,7 +76906,7 @@ bXg
bmm
aeS
acb
-adt
+uva
adK
aVE
aez
@@ -75123,7 +76961,7 @@ acB
bLz
ccS
acB
-aau
+aal
aaa
aaa
aaa
@@ -75131,7 +76969,7 @@ aaa
cdB
aCL
aCu
-aau
+aal
aaa
aaa
aaN
@@ -75314,8 +77152,8 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
bnF
bWZ
bXa
@@ -75325,7 +77163,7 @@ bPc
bml
bLM
acb
-aex
+wJv
acg
acg
acg
@@ -75344,7 +77182,7 @@ bnb
bkc
bmL
bkz
-anp
+diw
ano
ano
ano
@@ -75385,7 +77223,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
cdB
aCL
aCq
@@ -75572,7 +77410,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aeS
bYb
bTU
@@ -75643,9 +77481,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
cdB
-aau
+aal
aCL
aCu
aaa
@@ -75665,8 +77503,8 @@ aBY
aBY
aBY
aBY
-aau
-aau
+aal
+aal
aQX
aaa
aaa
@@ -75886,7 +77724,7 @@ aXo
beg
aXo
bem
-bfg
+qrk
aGE
bmA
aHu
@@ -75901,9 +77739,9 @@ acB
acB
aaa
aaa
-aau
+aal
cdB
-aau
+aal
aCa
aaa
aaN
@@ -75914,13 +77752,13 @@ aaN
aaN
aaN
aaN
-aau
+aal
aaa
aaa
-aau
+aal
bLX
aaa
-aau
+aal
aaa
aaa
aaa
@@ -76095,7 +77933,7 @@ arU
bTU
bml
arU
-aau
+aal
acm
acr
acC
@@ -76171,13 +78009,13 @@ aaa
bJj
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
aQX
@@ -76347,12 +78185,12 @@ aaa
aaa
aaa
aaa
-aau
+aal
bgg
bYc
bml
bgg
-aau
+aal
acm
acr
acr
@@ -76395,10 +78233,10 @@ aJh
aYp
bea
bei
-bex
+rVP
bey
beR
-bhG
+qpo
aGE
bTY
bXh
@@ -76417,15 +78255,15 @@ aaa
aaa
aaa
aaa
-aau
+aal
cdC
cdq
bAI
cdE
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aQX
aQX
@@ -76604,12 +78442,12 @@ aaa
aaa
aaa
aaa
-aau
+aal
bnF
bTU
bml
bnF
-aau
+aal
acm
acr
acE
@@ -76624,7 +78462,7 @@ aeP
afI
bll
aCZ
-ahm
+sfL
ajd
aew
aeB
@@ -76860,8 +78698,8 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aeS
bXg
cdV
@@ -76873,7 +78711,7 @@ aco
aco
aev
aiZ
-bUj
+oMw
njx
bUr
aew
@@ -77120,14 +78958,14 @@ aaa
aeS
aeS
aeS
-bTU
-bmT
-aMX
-cdW
+kBb
+ria
+yma
+voh
bXq
aeS
-aau
-aau
+aal
+aal
aaa
aco
aco
@@ -77139,7 +78977,7 @@ bWL
bQW
bTF
bbS
-akB
+uzG
aeA
qxZ
blD
@@ -77164,7 +79002,7 @@ aGE
aRz
aHh
bdT
-aGO
+gEO
aIe
aGE
aJV
@@ -77380,7 +79218,7 @@ bTU
bTU
bTU
bTU
-bml
+rBV
bXq
aeS
aaa
@@ -77610,16 +79448,16 @@ aaa
aaa
avP
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
aaa
@@ -77637,7 +79475,7 @@ bTU
bYc
bTU
bTU
-bmm
+iHp
bQW
aeS
aaa
@@ -77658,7 +79496,7 @@ afJ
afJ
afJ
afJ
-afN
+oRe
aoB
bNZ
aeA
@@ -77676,7 +79514,7 @@ bYm
cbG
bRf
aGQ
-aTD
+wMM
bdI
bdP
aQh
@@ -77696,7 +79534,7 @@ bMs
bdB
acB
bZx
-bMs
+vLi
bMs
bRO
bYK
@@ -77894,10 +79732,10 @@ bTU
bTU
bTU
bXg
-bml
+rBV
bTU
aeS
-aau
+aal
aaa
aaa
aaa
@@ -77933,7 +79771,7 @@ bdv
cbH
bTE
aGQ
-aIO
+gVB
apL
aHB
aIh
@@ -78123,7 +79961,7 @@ aaa
aaa
aaa
avP
-aau
+aal
avM
avZ
avZ
@@ -78135,7 +79973,7 @@ avZ
avZ
avZ
avM
-aau
+aal
aaa
aaa
aaa
@@ -78143,15 +79981,15 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
adO
adO
adO
adO
adO
adO
-bml
+rBV
bYc
aeS
aeS
@@ -78174,7 +80012,7 @@ bkt
bkh
afN
aoB
-aFj
+ili
aeA
aeA
aBe
@@ -78193,20 +80031,20 @@ aGQ
aYo
aJb
aHP
-aIf
+aTD
aGQ
aTY
bAF
aGt
-aGt
+ntE
bhL
bNK
-aGt
+xtN
bhO
bdm
bgs
aJF
-aXO
+pTq
bYH
bdA
acB
@@ -78408,7 +80246,7 @@ auj
auj
brc
adO
-bmZ
+eLr
bTU
brm
bQW
@@ -78440,7 +80278,7 @@ aER
aYf
aFk
aEv
-aFJ
+gqB
aFO
aGf
aFR
@@ -78649,7 +80487,7 @@ avZ
avZ
avZ
avM
-aau
+aal
aaa
aaa
aaa
@@ -78657,20 +80495,20 @@ aaa
aaa
aaa
aaa
-aau
-aau
+aal
+aal
adO
asc
aun
auW
aAo
aOk
-bop
-bxL
-bLW
-bNQ
-bsE
-ezL
+vgy
+mNo
+etl
+cXx
+eNw
+rQg
yma
yma
bTN
@@ -78680,7 +80518,7 @@ bpa
bmH
bLh
afJ
-aLT
+eQq
ahr
ahL
bAV
@@ -78702,9 +80540,9 @@ aFP
aGg
aQD
cbK
-cbQ
+pYp
aGR
-aHl
+iHE
bdJ
aIg
aIQ
@@ -78888,13 +80726,13 @@ aaa
avP
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
avM
avZ
avZ
@@ -78906,7 +80744,7 @@ avZ
avZ
avZ
avM
-aau
+aal
aaa
aaa
aaa
@@ -79163,13 +81001,13 @@ avZ
avZ
avZ
avM
-aau
+aal
aaa
aaa
aaa
aaa
aaa
-aau
+aal
adO
aaq
aaq
@@ -79218,7 +81056,7 @@ aGA
aGD
cbS
aGR
-aIP
+nwZ
aUd
ayG
aYd
@@ -79399,8 +81237,8 @@ aaa
avP
aaa
aaa
-aau
-aau
+aal
+aal
aVx
ccX
aeW
@@ -79426,7 +81264,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
adO
aaq
aaq
@@ -79449,7 +81287,7 @@ adl
adG
adW
aik
-bkT
+qHu
acp
agJ
aht
@@ -79492,7 +81330,7 @@ bdr
aKa
aKn
aIY
-aXQ
+oWU
bdC
asv
bMs
@@ -79654,7 +81492,7 @@ aaa
aaa
aaa
avP
-aau
+aal
aVx
aVx
aVx
@@ -79732,7 +81570,7 @@ aGr
beA
aGK
aGR
-aUf
+clO
aQY
azU
aIl
@@ -80017,8 +81855,8 @@ bWj
bZQ
bWw
bVM
-aBx
-bYK
+rck
+pHi
azH
aaa
aaa
@@ -80230,7 +82068,7 @@ ahU
blC
ahU
bNY
-ahU
+sHj
bwM
aeA
bnm
@@ -80275,7 +82113,7 @@ bSy
bSy
aRr
aBx
-aBx
+nbA
azH
azH
aaa
@@ -80434,7 +82272,7 @@ bbH
awk
cck
ccm
-cdk
+wPr
bbH
bbH
avM
@@ -80475,7 +82313,7 @@ acw
acw
acp
acq
-ajn
+pwu
anj
adW
afK
@@ -80494,7 +82332,7 @@ aeA
bkF
aBe
aBe
-aIG
+vXg
anC
aFK
aFU
@@ -80532,7 +82370,7 @@ bWo
bWv
bVM
bZt
-aBx
+nbA
bTs
azH
aaa
@@ -80682,7 +82520,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aVx
bbH
bbH
@@ -80733,7 +82571,7 @@ acw
amW
bjX
bnX
-adW
+dxJ
blo
acp
afN
@@ -80756,7 +82594,7 @@ aEw
aEw
aEw
aEw
-aGt
+xCE
beE
aRt
aGT
@@ -80766,7 +82604,7 @@ aXm
aYv
aGT
aGT
-bGN
+ygs
beM
bhY
aoR
@@ -80780,7 +82618,7 @@ acB
bTK
bYD
bVM
-bwx
+nvs
bVP
bVS
bSy
@@ -80789,7 +82627,7 @@ bWw
bWF
bVM
bZu
-aBx
+nbA
aBx
bWK
aaa
@@ -80937,9 +82775,9 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aVx
bbH
bbH
@@ -80971,7 +82809,7 @@ bwb
byC
avi
adO
-bla
+sCI
asc
asS
afn
@@ -81017,9 +82855,9 @@ aGt
beE
aIM
aqv
-blU
+pmp
aHI
-aDt
+gVW
aNL
aYt
aqv
@@ -81046,7 +82884,7 @@ asy
asy
asy
asy
-bYK
+hTU
aBx
bXI
aaa
@@ -81193,10 +83031,10 @@ aaa
abE
aaa
aaa
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aVx
bvG
adq
@@ -81214,8 +83052,8 @@ aVg
aVk
adx
aVr
-bbI
-aVu
+utL
+mwg
ccs
cct
ccu
@@ -81256,7 +83094,7 @@ ahU
ajk
bkm
blS
-bmd
+gBb
ait
bNN
aAL
@@ -81288,7 +83126,7 @@ bfo
bfp
beo
aJp
-aXK
+tdw
aBx
aBx
aBx
@@ -81303,7 +83141,7 @@ bPk
bPq
bPs
asy
-aBy
+qKO
bXV
bXI
aaa
@@ -81558,9 +83396,9 @@ bOJ
bOT
bPl
bOT
-bOS
+myk
asy
-aBx
+nbA
aBx
bXI
aaa
@@ -81778,7 +83616,7 @@ aAU
ait
bkM
aEw
-aLa
+fqe
aFm
bGA
aQt
@@ -81817,7 +83655,7 @@ caW
bOP
bOU
asy
-aBx
+nbA
aBx
bXI
aaa
@@ -81970,7 +83808,7 @@ anQ
awe
amE
agr
-bfz
+kXJ
awe
aks
awe
@@ -82074,7 +83912,7 @@ bPo
bOT
bOV
asy
-aBx
+nbA
aBx
bXI
aaa
@@ -82245,7 +84083,7 @@ aDs
ceS
ceS
ceS
-avQ
+ueA
avi
avY
bvK
@@ -82276,7 +84114,7 @@ bVO
acW
adm
aek
-aeB
+fxC
afN
afN
bay
@@ -82331,7 +84169,7 @@ bOT
bPr
bOW
asy
-bYK
+hTU
aBx
bXI
aaa
@@ -82588,7 +84426,7 @@ bPp
bPf
bOX
asy
-aBx
+nbA
aBx
bXI
aaa
@@ -82807,10 +84645,10 @@ ait
blB
blM
blM
-bqj
+exX
bBL
bBL
-bBM
+kyS
aGo
aGo
aUy
@@ -82823,7 +84661,7 @@ aHW
aIB
aIp
beU
-aXB
+kcl
aHW
aSs
bGC
@@ -82835,17 +84673,17 @@ bTt
azH
aqa
bWY
-aoi
-aRg
-aRg
-aRg
-aRg
-bYC
-aRg
+stN
+sMe
+sMe
+sMe
+sMe
+xWi
+sMe
bOR
bOY
azH
-aBx
+nbA
aBx
bXJ
aaa
@@ -83074,7 +84912,7 @@ aUQ
aXs
aGZ
aJX
-aUu
+esN
aHW
bTc
aIp
@@ -83092,7 +84930,7 @@ bMq
azH
bba
aBx
-bba
+aUi
aBx
bYK
aBx
@@ -83101,8 +84939,8 @@ aBy
aBx
aBx
bPa
-bQy
-bYK
+mVy
+nLJ
bMq
azH
aaa
@@ -83284,10 +85122,10 @@ aaT
bXd
bQh
aaT
-bxJ
+nPi
aKR
asG
-bqQ
+wtu
aoT
bRJ
aoT
@@ -83300,7 +85138,7 @@ bOm
acy
acy
acy
-ads
+wLO
ael
ayo
aek
@@ -83322,7 +85160,7 @@ aCc
aEy
bNO
aEy
-aCc
+wIF
aBi
bBN
aGo
@@ -83349,7 +85187,7 @@ bYC
aRg
aKz
aBx
-bba
+aUi
bRm
aoh
aoh
@@ -83542,7 +85380,7 @@ bQf
bQi
aaT
bCh
-aKZ
+hjz
asG
afr
asm
@@ -83814,7 +85652,7 @@ asP
asP
asg
acy
-acR
+dUT
aZu
aeO
acK
@@ -83869,7 +85707,7 @@ aoV
bbV
aqd
aoW
-aFt
+mlN
aoh
aBx
bPa
@@ -84095,7 +85933,7 @@ aEA
aEA
bnP
aBi
-bBN
+qCl
aGo
aVX
aUQ
@@ -84116,7 +85954,7 @@ ahT
akH
bcZ
aoo
-alm
+eMz
bDh
ahT
aBx
@@ -84332,7 +86170,7 @@ ask
adb
adb
adb
-adb
+xec
acy
agX
aJt
@@ -84343,7 +86181,7 @@ aIN
bmn
bmp
bkP
-bnv
+ijH
aAY
aBn
bmN
@@ -84354,7 +86192,7 @@ bnQ
aBi
bBN
aGo
-aGy
+sXg
aUQ
aUQ
aGu
@@ -84377,7 +86215,7 @@ bdd
bde
ahT
aBx
-bgo
+mnC
aoh
aoX
apR
@@ -84563,7 +86401,7 @@ bfN
avY
bvK
avi
-aqN
+hjJ
bRE
aCt
bRE
@@ -84648,16 +86486,16 @@ aUi
azH
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aQX
aQX
@@ -84893,7 +86731,7 @@ ahT
ahT
ahT
aoh
-aoW
+ezo
aoW
aKu
cab
@@ -84905,16 +86743,16 @@ bYU
azH
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
aQX
@@ -84951,9 +86789,9 @@ avP
avP
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
avP
avP
@@ -85108,24 +86946,24 @@ axE
ahV
aHw
aDL
-bFw
+hvP
bBJ
-btc
-btc
-btc
-btc
-afy
-btc
+rta
+rta
+rta
+rta
+ueN
+rta
bDt
-btc
-cew
-btc
+rta
+sEf
+rta
bDu
-btc
-bFw
+rta
+hvP
aJk
-btc
-afy
+rta
+ueN
aJl
aJm
bGL
@@ -85206,13 +87044,13 @@ aaa
aaa
avP
aaa
-aau
-aau
-aau
+aal
+aal
+aal
bNf
-aau
-aau
-aau
+aal
+aal
+aal
aaa
avP
aaa
@@ -85361,7 +87199,7 @@ axE
axG
bso
aGX
-btc
+rta
aRp
bgS
axm
@@ -85463,13 +87301,13 @@ aaa
aaa
avP
aaa
-aau
+aal
adF
anD
bNj
anD
anB
-aau
+aal
aaa
avP
aaa
@@ -85686,8 +87524,8 @@ aXg
aXh
aUH
aUk
-aau
-aau
+aal
+aal
aQX
aaa
aaa
@@ -85719,11 +87557,11 @@ aaa
aaa
aaa
avP
-aau
+aal
bML
bNd
bMO
-aau
+aal
bML
bNd
bMO
@@ -85869,8 +87707,8 @@ acP
arA
awO
bso
-btc
-afy
+rta
+ueN
bth
axm
axF
@@ -85897,9 +87735,9 @@ aLs
bvC
aLs
aLn
-azH
+aaT
cbT
-azH
+aaT
cbX
axL
bPx
@@ -85918,7 +87756,7 @@ akW
bRM
akW
akl
-ahT
+eKx
akW
akW
api
@@ -85980,7 +87818,7 @@ aaa
bML
bNd
bMO
-aau
+aal
bML
bNd
bMO
@@ -86124,7 +87962,7 @@ acf
acP
awO
bso
-btc
+rta
btg
axm
bPv
@@ -86153,13 +87991,13 @@ aLs
aLR
aLs
aLs
-bfR
-aBx
-cbf
-azH
-azH
-azH
-azH
+aZb
+bQr
+aRA
+aaT
+aaT
+aaT
+aaT
bHE
bHk
axm
@@ -86175,7 +88013,7 @@ akl
akl
akl
akl
-bjV
+akl
akl
akl
akl
@@ -86237,7 +88075,7 @@ aaa
bML
bNd
bMO
-aau
+aal
bML
bNd
bMO
@@ -86412,9 +88250,9 @@ aLs
aLS
aLn
can
-cbf
-azH
-bSi
+aRA
+aaT
+bKd
caq
afa
afa
@@ -86442,7 +88280,7 @@ amD
aql
boa
ahT
-bpW
+vcT
bsA
aUk
aUk
@@ -86457,8 +88295,8 @@ bbB
aUH
aUH
aUk
-aau
-aau
+aal
+aal
aQX
aaa
aaa
@@ -86490,15 +88328,15 @@ aaa
aaa
aaa
avP
-aau
+aal
bML
bNt
bMO
-aau
+aal
bML
bNd
bMO
-aau
+aal
avP
aaa
aaa
@@ -86625,7 +88463,7 @@ bQr
bQr
bQr
bQr
-bxK
+cRz
bgA
acf
aus
@@ -86650,7 +88488,7 @@ aRl
bQr
bmx
aLn
-aLs
+uaG
aLs
aLB
bOv
@@ -86666,12 +88504,12 @@ amq
bOy
byz
aLs
-aOs
+jJz
aLn
-bQe
-aHJ
+bQj
+aRA
aTo
-aTj
+bQr
bSb
afa
akx
@@ -86681,7 +88519,7 @@ aoA
aoE
azE
azR
-btt
+rDY
aUv
bGr
bGU
@@ -86748,13 +88586,13 @@ aaa
aaa
avP
aaa
-aau
+aal
amO
anD
bNg
anD
anz
-aau
+aal
aaa
avP
aaa
@@ -86892,14 +88730,14 @@ asP
bli
bfC
bso
-bsP
+hYI
axh
bxA
bxC
avo
avs
auJ
-aTm
+kaB
bLB
bTn
aRu
@@ -86918,17 +88756,17 @@ bHK
aLE
bHK
bHL
-bHN
+tzD
aLn
aLn
aLn
aLn
aLn
aLn
-bRd
-bYA
-azH
-aBx
+bQg
+bmo
+aaT
+bQr
aBH
afa
bUo
@@ -86939,8 +88777,8 @@ aoF
aoE
azE
azR
-btt
-btj
+rDY
+iMs
aAv
all
alq
@@ -86970,7 +88808,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aQX
@@ -87005,13 +88843,13 @@ aaa
aaa
avP
aaa
-aau
-aau
+aal
+aal
bML
bNd
bMO
-aau
-aau
+aal
+aal
aaa
avP
aaa
@@ -87128,7 +88966,7 @@ bfA
ceV
ceV
ceV
-bfL
+nCF
avi
avY
bvR
@@ -87161,10 +88999,10 @@ aCz
aCz
bsg
aRo
-aTx
+fNR
aLm
ars
-aLp
+nZS
aLt
bvl
aLt
@@ -87177,13 +89015,13 @@ aLn
aLn
aLn
aLn
-cai
-aBx
+pkz
+bQr
bRZ
bRZ
bRY
bWU
-cbf
+aRA
afa
afa
afa
@@ -87227,7 +89065,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
aQX
aQX
@@ -87367,7 +89205,7 @@ boD
awe
awe
agt
-bfP
+fSj
awe
aks
awe
@@ -87433,16 +89271,16 @@ aMS
aLP
aLn
cam
-cbx
+bLB
cby
-aLo
+vtD
cbC
-aLo
-bYx
-aLo
+vtD
+anx
+vtD
cbU
afa
-akn
+jlL
akv
afa
akU
@@ -87454,7 +89292,7 @@ bCE
aoF
aQz
aAd
-bna
+vmg
ark
akl
akW
@@ -87511,16 +89349,16 @@ aaa
aaa
aaa
aaa
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
bML
bNd
bMO
@@ -87689,15 +89527,15 @@ aLJ
aLU
aKC
aLn
-cbf
-azH
-azH
+aRA
+aaT
+aaT
acL
aoH
-azH
-azH
+aaT
+aaT
bSd
-akq
+amM
bfT
aTB
bCy
@@ -87726,7 +89564,7 @@ alF
xhI
bgp
bgu
-bhh
+nRb
qyl
bij
bry
@@ -87768,7 +89606,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aug
aug
aug
@@ -87777,7 +89615,7 @@ aug
aug
aug
aug
-aau
+aal
bML
bNd
bMO
@@ -87941,13 +89779,13 @@ bHI
bvs
bOx
bvx
-aad
-aad
-aad
-aad
-aad
-cbf
-azH
+aLn
+aLn
+aLn
+aLn
+aLn
+aRA
+aaT
aaa
aaa
aaa
@@ -87974,7 +89812,7 @@ bZY
alF
alF
alF
-amU
+xhv
amU
amU
amU
@@ -87987,7 +89825,7 @@ nuq
xyz
bim
xhI
-brS
+hYj
bYW
aSh
bxg
@@ -88025,7 +89863,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aug
aeJ
aeJ
@@ -88035,11 +89873,11 @@ aeJ
aeJ
aug
bNu
-aau
+aal
ahP
-aau
+aal
aaa
-aau
+aal
aaa
aQX
aQX
@@ -88179,7 +90017,7 @@ bmV
bxO
auJ
auJ
-buY
+ubS
avj
avd
avd
@@ -88198,19 +90036,19 @@ aLm
aLm
aLm
aLm
-aad
-aRN
-aDN
-aSp
-aad
-cbf
-azH
+aaT
+cxa
+vtD
+anx
+vtD
+aRv
+aaT
aaa
aaa
aaa
aaa
afa
-akz
+klG
caB
bCO
bCQ
@@ -88225,10 +90063,10 @@ alZ
buw
aQA
aAd
-btt
+rDY
bAL
aDj
-alV
+eQp
aqT
bdz
bbM
@@ -88237,12 +90075,12 @@ bbO
bbM
bcD
bcI
-amU
+bfR
xhI
bgJ
bhi
dtX
-bin
+wrV
xhI
bYV
bCg
@@ -88279,25 +90117,25 @@ aaa
aaa
aaa
aaa
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
bMG
aeJ
-bLt
-aNm
-aNr
+iif
+oGu
+cvc
aND
aeJ
aNJ
anD
anD
bNh
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aaa
aaa
aQX
@@ -88433,39 +90271,39 @@ aaT
bfv
bna
axl
-bmW
+qpi
auJ
auQ
buZ
avm
avr
-anW
+pSa
aCB
bvi
avj
aLl
aCz
bQr
-amM
+rmC
ahW
boe
boe
+lyr
boe
boe
+nyL
boe
-boe
-byr
-bFa
-bIu
-bSg
-bZe
-bYp
-cbw
-azH
+vtD
+aRv
+aaT
+aaT
+aaT
+aaT
+aaT
+aaa
+aaa
+aaa
aaa
-aau
-aau
-aau
afa
bCG
aku
@@ -88536,7 +90374,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aug
aug
aug
@@ -88554,10 +90392,10 @@ aNw
aNw
aNw
aNw
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aQX
aaa
aaa
@@ -88703,7 +90541,7 @@ aCC
aCz
aCz
bQr
-bQr
+aRA
aaT
aaT
aaT
@@ -88711,18 +90549,18 @@ aaT
aaT
aaT
aaT
-bLT
-aad
-aad
-bSu
-aad
-aad
-bQc
-azH
+aaT
+aaT
+aaT
+aaT
+aaa
+aal
aaa
aaa
aaa
aaa
+aaa
+aal
afa
afa
afa
@@ -88730,7 +90568,7 @@ afa
afa
afa
afa
-alZ
+kVx
alZ
aNa
alZ
@@ -88740,7 +90578,7 @@ bux
aoF
aQz
aAr
-bna
+vmg
axf
alV
bwA
@@ -88793,13 +90631,13 @@ aaa
aaa
aaa
aaa
-aau
+aal
aug
aNi
aNi
aNp
aeJ
-aso
+rSs
bLJ
bOg
aNG
@@ -88813,7 +90651,7 @@ aNw
aNw
aNw
aNw
-aau
+aal
aaa
aQX
aQX
@@ -88932,7 +90770,7 @@ aaa
aaa
aci
blX
-auA
+wxZ
blY
auC
awe
@@ -88959,33 +90797,33 @@ aCz
aCz
aCz
bQr
-bCh
-bQr
+yjo
+aRv
aBG
-aau
+aal
+aaa
+aaa
+aaa
+aaa
+aal
+aaa
+aaa
+aal
+aaa
+aaa
+aal
aaa
aaa
aaa
aaa
aaa
-any
-amI
-aad
-bSu
-aad
-anA
-anE
-aau
-aau
+aal
+aaa
+aal
aaa
aaa
aaa
aaa
-aaa
-aaa
-aau
-aau
-aaa
afa
buI
amb
@@ -88997,7 +90835,7 @@ buy
bzV
bCA
aAr
-bna
+vmg
axf
alF
alF
@@ -89012,7 +90850,7 @@ alF
xhI
bhf
esU
-bid
+fzs
bhi
xhI
bYV
@@ -89032,29 +90870,29 @@ aSP
aSP
aSP
bUx
-aau
-aau
+aal
+aal
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aaa
aaa
-aau
-aau
+aal
+aal
aug
aNi
cdt
-aNq
+qWm
aeJ
asA
bLJ
@@ -89070,8 +90908,8 @@ aNw
aNw
aNw
aNw
-aau
-aau
+aal
+aal
aaa
aQX
aaa
@@ -89204,41 +91042,41 @@ arA
bxX
afC
aae
-aaE
+aTr
acx
-bQr
-bQr
+vtD
+vtD
bSr
-bQr
-bQr
-bQr
+vtD
+vtD
+aRu
bSt
aBC
bQr
-bQr
-bQr
+cxa
+aRv
aBE
aBF
aaa
aaa
aaa
aaa
-aaa
-aaa
-aau
-bPG
-aad
-bVm
-aad
-bPG
-aaa
-aaa
-aaa
-aaa
-aaa
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
aaa
aaa
aaa
+aal
+aal
+aal
+aal
aaa
aaa
aaa
@@ -89254,7 +91092,7 @@ aqG
aoD
bCB
aAr
-bna
+vmg
awZ
bZJ
amP
@@ -89288,25 +91126,25 @@ aTc
bSM
aTf
aTg
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
aug
aug
aNo
@@ -89328,7 +91166,7 @@ aNA
aNw
aNw
aNw
-aau
+aal
aaa
aQX
aQX
@@ -89462,64 +91300,64 @@ abP
bot
axb
aaT
-afx
+bfS
bQr
bCh
aaT
bSa
bQr
-bQr
-bQr
-bCh
-bQr
-bQr
+amM
+vtD
+mHD
+vtD
+aRv
aBE
aBF
-aau
aaa
aaa
aaa
aaa
-adF
-anD
-box
-bPN
-bPO
-bVI
-bSK
-bPN
-box
-anD
-anB
-aau
+aal
+aug
+aug
+aug
+aug
+aug
+aug
+jVL
+aug
+aug
+aal
aaa
aaa
+aal
aaa
aaa
+aal
aaa
aaa
aaa
aaa
afa
afa
+ppV
aad
aad
aad
-apO
-apO
-apO
-apO
-apO
-azE
+aad
+aad
+aad
+aad
+ydf
bCJ
-btj
+iMs
aDl
aDo
aPp
aPy
aQR
aRI
-asr
+vSP
baY
bcY
baY
@@ -89565,28 +91403,28 @@ aug
aug
aug
aug
-aau
+aal
aNi
aNi
aNo
aNi
asx
-atY
+hez
aNw
aNw
bZM
bNn
-aNB
+aNC
aNC
bJy
aNC
-aNB
+aNC
aNB
bZM
aNw
aNw
-aau
-aau
+aal
+aal
aaa
aQX
aaa
@@ -89719,7 +91557,7 @@ aff
apV
aaT
aaT
-afx
+bfS
bQr
aaT
aaT
@@ -89735,23 +91573,24 @@ aaa
aaa
aaa
aaa
-adF
-anD
-anz
-aad
-aad
-bFN
-aad
-aad
-aad
-bFN
-aad
-aad
-amO
-anD
-anB
+aal
+aal
+bAC
+uwV
+uwV
+gFA
+gFA
+gFA
+uwV
+uwV
+aug
+aal
+aal
+aal
+aal
aaa
aaa
+aal
aaa
aaa
aaa
@@ -89760,16 +91599,15 @@ aaa
aaa
aaa
aad
-aou
-aoU
-apO
+apT
+apT
aNt
-aTM
-aVC
-apO
-apO
+apF
+xiu
+aad
+aad
buC
-afC
+ptm
afF
aDo
aPq
@@ -89801,29 +91639,29 @@ aSP
aSP
aSP
aSh
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
aNg
aNl
aNh
@@ -89843,7 +91681,7 @@ bMC
aNw
aNw
aNw
-aau
+aal
aaa
aQX
aaa
@@ -89975,65 +91813,65 @@ bxU
arK
awV
aaT
-bQr
-afx
+sqt
+wBW
bQr
aaT
-aaa
-aaa
-aaa
-aau
-aaa
-aaa
-aau
+aal
+aal
+aal
+aal
aaa
aaa
aaa
aaa
+aal
+aaa
+aaa
+aaa
+aal
+aug
+aug
+tqi
+uwV
+tsa
+gWa
+gWa
+hTm
+dfK
+uwV
+aug
+aug
+aug
+aug
+aug
+aal
+aaa
+aal
+aaa
+aaa
aaa
-adF
-buJ
-aad
-aad
-aad
-aaf
-bPP
-alh
-aps
-bIZ
-bPP
-aax
-aad
-aad
-aad
-bwu
-anB
aaa
aaa
aaa
aaa
aad
+apT
+apF
+apF
+apF
+xiu
+xiu
aad
-aad
-aad
-aad
-bZB
-aoy
-apO
-aVB
-bfW
-aVD
-bnZ
-apO
anH
-bna
-aDl
-aDp
+hNP
+awb
+fvY
aPr
aQG
-asr
-aRJ
-asr
+ifH
+fVo
+gwx
bbR
bbR
bbR
@@ -90070,12 +91908,12 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
@@ -90091,7 +91929,7 @@ aNC
aNC
bNo
bOo
-aNw
+aNB
bMP
aNw
aNw
@@ -90100,7 +91938,7 @@ bMR
aNH
aNw
aNw
-aau
+aal
aaa
aQX
aaa
@@ -90233,64 +92071,64 @@ bAK
awV
aaT
aBC
-ahb
+blN
aWS
aaT
-aau
-aau
-aaa
-aau
aaa
aaa
-aau
+aal
+aaa
+aaa
+aaa
+aaa
+aaa
+aal
+aaa
+aaa
+aal
+aug
+uwV
+gFA
+spN
+uwV
+lwp
+dFi
+vBp
+dFi
+tuR
+uwV
+gFA
+gFA
+gFA
+uwV
+aug
+aug
+aal
+aal
+aal
+aal
+aaa
aaa
aaa
aaa
aaa
-adF
-anz
aad
+apF
+app
+amx
+apS
+amx
+xiu
aad
-aaf
-amu
-aat
-bPT
-apg
-apg
-apg
-bPT
-aan
-amu
-aax
-aad
-aad
-amO
-anB
-aaa
-aaa
-adF
-alT
-bBm
-anw
-bDo
-bPJ
-aoq
-apa
-apO
-aTI
-bEV
-caM
-aUV
-apO
bPB
-bna
+vmg
aDl
aDp
aPt
aQH
asr
aRJ
-asr
+ohU
bbX
bbX
bbX
@@ -90327,17 +92165,17 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
aaa
-aau
+aal
aNj
bZL
bLe
@@ -90347,8 +92185,8 @@ bOd
bOh
bOj
bOk
+aNB
aNA
-aNx
bJE
bMS
aNw
@@ -90358,7 +92196,7 @@ bMH
aNw
aNw
bNk
-aau
+aal
aQX
aaa
aaa
@@ -90486,61 +92324,61 @@ aty
byq
ark
ark
-bna
+vmg
bnq
aaT
bQr
-afx
+bfS
aaT
aaT
-aau
-aau
+aal
+aal
+aal
aaa
aaa
aaa
aaa
-aau
-aaa
-aaa
-aaa
-aaa
-ahP
-aad
-aad
-aaf
-aat
-amy
-aav
+aal
+aal
+aal
+aal
+aal
+aug
+uwV
+dCc
+xaB
+cvq
+sEU
bPT
apg
-apg
-apg
-bPT
-aav
-amy
-aan
-aax
-aad
-aad
-ahP
-aau
+rUR
+lKk
+qxF
+snW
+wvW
+iCB
+uwV
+uwV
+aug
+uiU
+aug
+aug
+aug
+aaa
+aaa
+aaa
+aaa
aaa
-ahP
aad
-aad
-aad
-bDZ
-azW
-azY
-apz
-apO
+aTW
+fKt
bJF
-boG
-boS
-bob
-apO
+uIu
+hOQ
+sxr
+aad
anH
-bna
+vmg
aDl
aDq
aPv
@@ -90584,17 +92422,17 @@ aCu
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aaa
aaa
-aau
+aal
aNj
asC
bLf
@@ -90605,8 +92443,8 @@ aNC
aNC
bNq
bOp
-aNw
-cac
+aNB
+oVG
aNw
aNw
aNC
@@ -90614,7 +92452,7 @@ aNB
aNw
aNw
aNw
-aau
+aal
aaa
aQX
aaa
@@ -90743,74 +92581,74 @@ aty
ard
anH
ark
-boi
+dNx
awV
aaT
bQr
-afx
+bfS
aaT
aaT
aaT
aaa
+aal
aaa
aaa
aaa
-aaa
-aau
-aaa
-aaa
-aaa
-adF
-anz
-aad
-aaf
-aat
-aay
-alf
-amN
+aal
+aug
+aug
+aug
+aug
+ugj
+aug
+uwV
+tnz
+fdM
+oMf
+szx
aHD
iJC
-iJC
-iJC
+oAP
+vdQ
bPV
-amR
-amJ
-apI
-aan
-aax
+bPV
+bPV
+xKE
+qoF
+uwV
+tHJ
+tHJ
+tHJ
+ykr
+oDl
+tKA
+aal
aad
-bPQ
-aau
-aau
-ahP
-aau
aad
-bCF
-bFB
-azW
-aor
-apA
-apO
+aad
+aad
+aad
+apn
aIS
-boI
-bnY
-boc
-apO
+apn
+apn
+aad
+aad
anH
-bna
+vmg
aDl
aDq
aPw
aQN
aQT
aRM
-asr
+xLk
bcP
bgy
bgy
-bic
-bju
-bCf
+bgy
+bgy
+bgy
bgy
bHd
awG
@@ -90838,25 +92676,25 @@ bXv
ccB
aAc
aNy
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
aNn
atY
bLn
aNl
-bNR
+skk
aNw
aNB
aNB
@@ -90871,7 +92709,7 @@ aNB
aNw
aNw
aNw
-aau
+aal
aaa
aQX
aaa
@@ -90992,7 +92830,7 @@ bxM
bxM
byg
byk
-bxE
+oms
bqc
bqc
arX
@@ -91000,69 +92838,69 @@ aMn
aMp
arv
awF
-bna
+vmg
arx
aaT
arw
ahu
-ahW
-alR
+bLB
+aRu
aaT
aaT
aaT
+aal
+aal
+aal
+aug
+uwV
+uwV
+uwV
+uwV
+uwV
+uwV
+uwV
+iRE
+oDI
+vVH
+iGJ
+lEt
+vUd
+rwy
+hmG
+mFQ
+miv
+dZa
+mFO
+qxz
+uwV
+enD
+psF
+tHJ
+mhi
+wTx
+gDW
aaa
-aaa
-aaa
-aau
-aaa
-aaa
-aaa
-ahP
aad
-aad
-aao
-aav
-aaz
-aaG
-aaH
-aaH
-aaH
-aaG
-aaH
-aaH
-aaH
-aaG
-aaz
-acn
-aIq
-bSL
-bPR
-anD
-anD
-anz
-aau
-aad
-apK
-eRe
+bHc
aUT
-aor
-apB
+eRe
+dUt
aTL
aTO
boO
-apQ
+boO
apY
aad
-aDg
-bna
+anH
+vmg
aWV
acj
aPx
aQO
aRh
aYA
-aRh
-bcU
+uTy
+acj
acj
acj
acj
@@ -91107,28 +92945,28 @@ aNz
aNz
aNz
aCu
-aau
+aal
aNi
aNi
aNf
aNi
asx
-bNR
+yfz
aNw
aNw
bZM
bNn
-aNB
+aNC
aNC
bMl
aNC
-aNB
+aNC
aNB
bZM
aNw
aNw
-aau
-aau
+aal
+aal
aaa
aQX
aaa
@@ -91257,7 +93095,7 @@ auG
auG
aAn
ans
-bna
+vmg
awV
aeu
aeu
@@ -91265,66 +93103,66 @@ bok
aeu
amM
anx
-aoc
-ald
+aRu
+aaT
+aaa
+aaa
+aal
+aug
+uwV
+vAo
+vbr
+pLI
amH
-amI
-aaa
-aau
-aaa
-aaa
-aau
-ahP
-aad
-aaf
-aat
+uwV
+uwV
aav
+fED
+aaH
+tlY
+alj
+vFq
+alD
+tlY
+jvP
+cZN
+vjt
aaz
-aaH
-aaH
-acM
-aaH
-alc
-aaH
-acM
-aaH
-aaH
-aaz
-apg
+hfx
+feu
+etL
+hLL
+dlq
+oCw
+kMb
+yeA
+aal
aad
-aad
-aad
-aad
-aad
-alN
-alQ
-aHR
-bCX
-bHc
-aor
-aor
+bPF
+gxl
+naO
aTU
-apq
-aor
-bzT
-aor
+fdn
+oak
+sLW
+ceW
aqs
aad
-aDh
-arH
-awb
-axW
+anH
+vmg
+aWV
+acj
bjq
bps
bps
aYB
brG
acj
-lDQ
+asr
axP
bnB
bpq
-aRf
+rDp
bie
aRj
aSe
@@ -91348,8 +93186,8 @@ acj
bpL
bXv
aAc
-aau
-aau
+aal
+aal
cdC
cdq
cdq
@@ -91376,15 +93214,15 @@ aNw
aNw
ceN
bME
-aNB
-aNB
+esb
+xyU
bMA
bME
aNA
aNw
aNw
aNw
-aau
+aal
aaa
aQX
aQX
@@ -91498,12 +93336,12 @@ aba
abK
aAh
bhj
-byI
+byT
bza
bzy
bAQ
-bBC
-byI
+vch
+byT
bEo
bEL
bEP
@@ -91514,7 +93352,7 @@ bPj
bRI
bFf
aww
-boi
+dNx
awW
aeu
arz
@@ -91522,52 +93360,52 @@ boC
aeu
aeu
aeu
-aoI
-aad
-aad
-any
+aRA
+aaT
+aaa
+aaa
+aal
+aug
+uwV
amH
-amH
-amH
-amH
-amH
-anF
+utg
+jip
aSc
biF
-bjh
-bjh
-blT
-aaH
-acM
-aaH
-aaH
-alc
-aaH
-aaH
-acM
-aaH
-aaz
-apg
-aad
+cUe
+cAa
+csH
+lhs
+dZW
+mXY
+hVt
+hVt
+dZW
+dEx
+pgT
+xBI
+seX
+ykD
+uwV
aRS
apG
-amx
-amx
-amx
-bGV
-aHS
-aMR
-bPF
-aDr
-apH
-aQg
+tHJ
+mBI
+uUp
+gDW
+aaa
+aad
+bPH
+cDf
+aor
+dUt
aQn
aGV
-arI
-bAC
+aor
+aor
bAE
-bwW
-bwX
+aad
+aDg
ceH
ceJ
acj
@@ -91608,18 +93446,18 @@ aAc
aaa
aaa
bMk
-aau
+aal
aaa
aaa
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aaa
aaa
-aau
+aal
cda
aug
aNi
@@ -91640,8 +93478,8 @@ aNw
aNw
aNw
aNw
-aau
-aau
+aal
+aal
aaa
aQX
aaa
@@ -91778,54 +93616,54 @@ axd
boC
bsM
btr
-bHB
-apy
-azT
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aRx
-aad
+aeu
+aRA
+aaT
+aal
+aal
+aal
+aug
+uwV
+qDQ
+amH
+amH
+tus
aah
-alM
-alM
-kow
-aaH
-aaH
-aaH
-alj
-aly
-alD
-aaH
-aaH
-aaH
-aaz
-apg
-amt
-amx
-amz
-amx
-amx
-amx
-amx
-amx
-aNP
-bPH
-aor
-apu
-boR
-aor
+uwV
+nIf
+fED
+dmV
+dZW
+hmV
+rFm
+rFm
+jqp
+dZW
+dZW
+uXm
+seX
+eyM
+uwV
+tHJ
+tHJ
+tHJ
+bMK
+rQo
+yeA
+aal
+aad
+aad
+aad
+aad
+aad
+wok
aor
aAm
-aad
+wMf
boT
aad
-bjp
-bna
+aDh
+vmg
aDl
acj
bSI
@@ -91836,7 +93674,7 @@ bpw
bcW
bpw
bgj
-bgj
+iUF
bhg
bhk
bif
@@ -91883,7 +93721,7 @@ aNi
aNi
cdx
aNi
-asz
+mbB
bNR
aNh
aNs
@@ -91897,7 +93735,7 @@ aNw
aNw
aNw
aNw
-aau
+aal
aaa
aQX
aQX
@@ -92035,53 +93873,53 @@ aBB
bqh
bsW
bCx
-bHB
-ajw
-aBI
-aGJ
-aGJ
-aGJ
-aGJ
-aGJ
-aGJ
-bcs
-bfU
-aad
-aaw
-alM
-alM
-kow
+aeu
+aRA
+aaT
+aaa
+aaa
+aal
+slb
+uwV
+amH
+dfN
+amH
+maC
+amH
+gFA
+nEo
+nlD
aaG
alc
-alc
-alr
-alz
-aNc
-alc
-alc
-aaG
-bQa
-aUq
-aUS
-aph
-boB
-boP
-buF
-bAq
-bAO
-aph
-aNR
-bPI
-aUX
-bRr
-caG
-bsU
+als
+als
+als
+mpC
+hAk
+vPT
+kuZ
+seX
+amB
+gFA
+aaa
+aal
+aaa
+ykr
+uUp
+rcn
+hRG
+dUt
+aZd
+udR
+dUt
+nUo
+wok
jZv
-aBK
-bpx
-bAB
-bpQ
-buD
+aad
+aad
+aad
+aad
+aDh
caO
awK
ayt
@@ -92134,7 +93972,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
cdr
cds
cdv
@@ -92152,10 +93990,10 @@ aNw
aNw
aNw
aNw
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aQX
aaa
aaa
@@ -92291,55 +94129,55 @@ arn
axd
boC
bti
-bDN
-bHB
-aRy
-anP
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aRB
-aad
-aaj
-alM
-alM
-kow
-aaH
-aaH
-aaH
-als
-alB
-alL
-aaH
-aaH
-aaH
-aaz
-apg
-amw
-amx
-amC
-boU
-aoL
+mKc
+aeu
+aRA
+aaT
+aal
+aal
+aal
+aug
+uwV
+nyx
+oqE
+aRx
+maC
+aRx
+gFA
+mJV
+eiC
+son
+boA
+nNJ
+jxP
+nNJ
+cLX
+nNJ
+skl
+rJs
+qOX
+nsr
+iGD
+pwb
+pwb
+pwb
+wIl
aph
-aqu
-amx
+xLt
+xLt
aNT
-aZd
-aor
-apv
-bwU
-aor
-aor
-bJI
+viK
+piG
+apx
+bzK
+tpd
+jHY
aad
-boT
+ugT
+ybh
aad
bjp
-aeo
+qlL
bDk
cdQ
bDm
@@ -92350,7 +94188,7 @@ asJ
acj
atg
atC
-atC
+srD
auN
avl
avK
@@ -92391,25 +94229,25 @@ aaa
aaa
aaa
aaa
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
bMI
aNi
-bRF
-bOc
-bLn
+wod
+uzp
+odJ
aNu
aNi
bNr
anD
anD
bNi
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aaa
aaa
aQX
@@ -92550,58 +94388,58 @@ boC
aeu
aeu
aeu
-aRm
-aad
-aad
-anA
+aRA
+aaT
+aaa
+aaa
+aal
+aug
+uwV
amH
+yhe
amH
+maC
amH
-amH
-amH
-anF
-aSc
-biF
-bjh
-bjh
-boA
-aaH
-acM
-aaH
-aaH
-alc
-aaH
-aaH
-acM
-aaH
-aaz
-apg
-aad
-aRS
-azV
-aNb
-amx
-amx
-bGV
-aHU
-aTH
-aZd
-aor
-apx
-bzK
+gFA
+fis
+waf
+gPD
+mgs
+sYx
+sYx
+sYx
+pyl
+gNl
+tBY
+wzU
+tTb
+amB
+gFA
+aaa
+aal
+aaa
+ykr
+mjA
+vyZ
+iUZ
+dUt
+biI
+emg
+dUt
+apf
aRs
apM
bwV
aoq
bEr
-aad
-aDh
+moO
+mUy
ceI
afF
acj
ayq
ass
-bJM
+eoH
acj
acj
ath
@@ -92651,7 +94489,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aug
aNi
aNi
@@ -92660,12 +94498,12 @@ aNi
aNi
aNi
aug
-aau
-aau
+aal
+aal
ahP
-aau
+aal
aaa
-aau
+aal
aaa
aQX
aQX
@@ -92806,53 +94644,53 @@ aeu
bok
aeu
aZp
-aDu
+vtD
aag
-ald
+aaT
+aaa
+aaa
+aal
+aug
+uwV
amH
-anE
-aaa
-aau
-aaa
-aaa
-aau
-ahP
-aad
-aan
-aax
-aav
-aaz
-aaH
-aaH
-aaH
-aaH
-alc
-aaH
-aaH
-aaH
-aaH
-aaz
-apg
-aad
-aad
-aad
-aad
-aad
+amH
+amH
+maC
+jsv
+uwV
+nIf
+fED
+dmV
+dZW
+nBZ
+qag
+qag
+pGQ
+dZW
+wUt
+cxK
+tTb
+vLE
+uwV
+tHJ
+tHJ
+tHJ
+bMK
+lzq
+yeA
alN
-alQ
-aIm
-aoQ
-biI
-aor
-aor
-bzT
-apq
-aor
-aor
-aor
+aad
+aad
+aad
+aad
+qMo
+okf
+sZm
+aad
+xGM
bDl
-cdO
-cdP
+aad
+bjp
aeo
aDl
acj
@@ -92864,7 +94702,7 @@ asK
ayL
ati
atE
-auc
+aue
auR
avw
avN
@@ -92908,7 +94746,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aug
aug
aug
@@ -92917,7 +94755,7 @@ aug
aug
aug
aug
-aau
+aal
bML
bNe
bMO
@@ -93066,50 +94904,50 @@ aRv
aaT
aaT
aaT
+aal
+aal
+aal
+aug
+uwV
+eCr
+soJ
+poI
+xUj
+cla
+ooZ
+ice
+esp
+jLo
+dZW
+fAP
+hVt
+hVt
+dZW
+sKR
+eRs
+smc
+tTb
+ykD
+uwV
+uYg
+dpg
+tHJ
+eqa
+mjA
+gDW
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahP
aad
-aad
-aao
-aav
-aaz
-aaG
-aaH
-aaH
-aaH
-aaG
-aaH
-aaH
-aaH
-aaG
-aaz
-acl
-aIH
-bSL
-bPS
-anD
-anD
-anB
-aau
-aad
-bCH
-vws
-aHr
-aor
-aVq
+moJ
+vjX
+vAj
+aUU
boH
-aos
-aos
-aos
-aqt
+oIG
aad
-aDi
+aad
+aad
+aad
+aDh
aeo
aDn
aMP
@@ -93165,16 +95003,16 @@ aaa
aaa
aaa
aaa
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
+aal
bML
bNe
bMO
@@ -93325,48 +95163,48 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-amO
-anB
-aad
-aan
+aal
+aug
+uwV
+jSs
+kAU
+mHo
+qBm
+uwV
+uwV
aax
abY
amB
-amN
-bPU
+tlY
+skG
cOZ
-cOZ
-cOZ
-bPZ
-amN
+rLt
+tlY
+hTF
+fpA
amS
aKQ
-aaf
-aat
+nnE
+szT
+oVd
+hZC
+dlq
+vvH
+fWk
+yeA
+aal
aad
-bPQ
-aau
-aau
-ahP
-aau
-aad
-azX
blb
-anN
-aNK
-aUU
-aad
+aor
+aor
+aor
+hrD
+aor
+aor
+aor
aTJ
-aTJ
-aTJ
-aTJ
-aad
-bIb
+ofx
+cdP
aeo
axf
aMQ
@@ -93401,7 +95239,7 @@ aDF
acF
aDM
acj
-bpL
+sTB
bPi
aAc
bxc
@@ -93577,53 +95415,53 @@ bCh
bfS
aaT
aaT
-aau
-aau
+aal
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ahP
-aad
-aad
-aan
-aax
+aal
+aug
+uwV
+uwV
+uwV
+uwV
+uwV
+uwV
+uwV
+iXv
+vpa
amL
-aav
+cYx
bPW
-apg
-apg
-apg
-bPT
-aav
-bPK
-aaf
-aat
-aad
-aad
-ahP
-aau
-aau
-ahP
-aad
-aad
-aad
-apf
-anN
-aTP
-bDR
-aad
+cgH
+fVB
+fVB
+hKj
+uqn
+sjB
+tTb
+oij
+uwV
+eVJ
+jdu
+tHJ
+mXO
+iUZ
+aaa
+aaa
+iIq
+dUa
+aor
+vzQ
+mGm
+ruT
arB
-arC
-arC
+aor
+aor
arE
aad
-awI
+uQL
aeo
axf
aMQ
@@ -93687,13 +95525,13 @@ aaa
aaa
avP
aaa
-aau
-aau
+aal
+aal
bML
bNe
bMO
-aau
-aau
+aal
+aal
aaa
avP
aaa
@@ -93834,56 +95672,56 @@ bQr
bqm
aXF
aaT
-aau
+aal
+aal
+aal
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-amO
-anB
-aad
-aad
-aan
+aal
+aug
+aug
+uwV
+uwV
+oAn
+uwV
+uwV
+osG
+gbC
amu
-aax
-bPT
-apg
-apg
-apg
-bPT
+vQd
+amu
+jws
+ifP
+kcd
+xdQ
aaf
-anO
+seG
aat
-aad
-aad
-adF
-anz
-aau
+dzi
+uwV
+tHJ
+tHJ
+tHJ
+aal
aaa
-amO
-alT
-alU
-anw
-aQW
-aTN
-aTQ
-aUW
-aad
-apF
-amx
-apS
-apT
+aaa
+aaa
+elZ
+mUn
+aor
+aor
+apq
+upM
+apQ
+mXC
+aor
+wll
aad
bPC
-asI
+aeo
bpe
-bGu
+aMQ
bGw
aMU
aMU
@@ -93944,13 +95782,13 @@ aaa
aaa
avP
aaa
-aau
+aal
adF
anD
bNj
anD
anB
-aau
+aal
aaa
avP
aaa
@@ -94076,7 +95914,7 @@ bAo
bEn
bEJ
aAn
-bAx
+nDW
bBp
bBe
bUN
@@ -94087,7 +95925,7 @@ bjo
aeo
awV
aaT
-aoG
+dXK
bqp
aRA
aaT
@@ -94097,55 +95935,55 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-amO
-bwt
-aad
-aad
-aad
-aan
-bPX
+aal
+aal
+aug
+aug
+uwV
+uwV
+uwV
+uwV
+uwV
+pSm
+oVP
+qZu
+knv
alv
-ara
-bJl
-bPX
-aat
-aad
-aad
-aad
-bww
-anz
+eFB
+lxq
+mNC
+mpx
+nPz
+euN
+uwV
+uwV
aaa
-aaa
-aaa
-aaa
-aad
-aad
-aad
-aad
-aUN
-aTR
-aUY
-aad
-bJG
-apF
-apT
-apT
+aal
+aal
+aal
+aal
+aal
+aal
+pmD
+hAI
+vRP
+vRP
+vRP
+vmc
+aor
+aor
+apq
+oWa
aad
jzE
bDO
bpd
bpf
-bpi
+gJo
bpi
bpi
bpm
-bpn
+itU
aYK
atu
atL
@@ -94200,15 +96038,15 @@ aaa
aaa
aaa
avP
-aau
+aal
bML
bNe
bMO
-aau
+aal
bML
bNv
bMO
-aau
+aal
avP
aaa
aaa
@@ -94348,57 +96186,57 @@ aaT
bqC
aRA
aaT
-aau
-aau
+aal
+aal
aaa
aaa
aaa
aaa
+aal
+aaa
+aal
+aug
+aug
+lND
+aug
+uwV
+uwV
+dpT
+uwV
+uwV
+amH
+fOk
+maC
+uwV
+uwV
+dpT
+gFA
+gFA
+uwV
+aal
+aaa
+aal
aaa
aaa
aaa
+aal
aaa
-aaa
-aaa
-aau
-amO
-anD
-anB
-aad
-aad
-bFN
-aad
-aad
-aad
-bFN
-aad
-aad
-adF
-anD
-anz
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aau
aad
apC
aUO
aTS
-apm
-aad
-apF
-aAb
-apT
+aor
+hpU
+apu
+jVA
+wQC
aad
aad
bHF
afE
afL
aMQ
-aMV
+tok
aMU
bDe
aMZ
@@ -94461,7 +96299,7 @@ aaa
bML
bNe
bMO
-aau
+aal
bML
bNw
bMO
@@ -94585,7 +96423,7 @@ aQf
bzu
bUE
aQm
-bBu
+eSa
aup
bzq
bAm
@@ -94605,51 +96443,51 @@ aaT
bqC
aRA
aaT
-aau
-aaa
-aaa
-aaa
-aau
+aal
aaa
aaa
aaa
aaa
aaa
+aal
aaa
aaa
-aaa
-aaa
-aaa
-amO
-anD
-boy
+aal
+aal
+aal
+aug
+aug
+aug
+jsm
+uwV
+amH
bPY
bPO
-bWT
+pGU
bSK
-alS
-anD
-anD
-anz
+uwV
+jsm
+aal
+aal
+rPx
+aal
aaa
-aau
+aal
aaa
aaa
aaa
+aal
aaa
-aaa
-aaa
-aau
-aad
+qXl
anG
-caE
-aTU
-apn
-aad
-aad
-aad
-aad
-aad
+apO
+apO
+kAG
+feg
+wpG
+tcB
+apO
+apO
aze
awO
aeo
@@ -94718,7 +96556,7 @@ aaa
bML
bNe
bMO
-aau
+aal
bML
bNe
bMO
@@ -94865,54 +96703,54 @@ aaT
aaT
aaa
aaa
-aau
-aau
+aaa
+aaa
+aal
+aal
aaa
aaa
aaa
aaa
aaa
+aal
+aal
+aal
+jsm
+uwV
+qkE
+jGy
+uzT
+uzT
+jQo
+uwV
+jsm
+aal
aaa
aaa
+aal
+aal
+aal
+aal
aaa
aaa
-aaa
-aaa
-aaa
-aau
-bPG
-aad
-bVm
-aad
-bPG
-aau
-aau
-aau
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aad
-bGR
-apP
-aTW
-apo
-aad
-aau
-aau
-aau
-axc
+qXl
+qXl
+qXl
+nyj
+apO
+apz
+xRV
+nEL
+boG
+boS
+bob
+apO
bHt
bCL
bDP
bZK
aAc
-awa
+vBQ
bDn
aAc
bgC
@@ -94971,11 +96809,11 @@ aaa
aaa
aaa
avP
-aau
+aal
bML
bNe
bMO
-aau
+aal
bML
bNe
bMO
@@ -95120,50 +96958,50 @@ bSj
aRA
bsp
aMq
-aau
+aal
aMz
aMC
aMC
aMv
+aal
+aal
aaa
aaa
aaa
aaa
aaa
aaa
+aal
+jsm
+uwV
+uwV
+gFA
+gFA
+gFA
+uwV
+uwV
+jsm
+aal
aaa
aaa
+aal
aaa
aaa
-aaa
-aaa
-bPG
-aad
-bSu
-aad
-bPG
-aaa
-aaa
-aaa
-aaa
-anX
-anX
-anX
-anX
-anX
-aaa
-aaa
-aaa
-aad
-anI
-aVR
-aoS
-app
-aad
-aaa
-aaa
-aau
-axc
+aal
+aal
+aal
+hXd
+qqo
+sEr
+nyj
+apO
+leR
+xRV
+aTI
+bEV
+caM
+aUV
+apO
bHu
aeo
axf
@@ -95229,13 +97067,13 @@ aaa
aaa
avP
aaa
-aau
+aal
amO
anD
bNl
anD
anz
-aau
+aal
aaa
avP
aaa
@@ -95351,7 +97189,7 @@ aiw
abT
bVs
aQm
-bgW
+tOh
byB
aQj
bzx
@@ -95365,7 +97203,7 @@ bAy
bBz
bAy
aaP
-acD
+fiC
afe
axa
aaP
@@ -95383,44 +97221,44 @@ aMG
aMD
aME
aMv
-aau
+aal
aaa
aaa
aaa
aaa
aaa
aaa
+aal
+jsm
+aug
+aug
+aug
+aug
+aug
+lND
+xbA
+lOW
+aal
aaa
aaa
+aal
aaa
aaa
-bPG
-aad
-bSu
-aad
-bPG
+aal
aaa
aaa
-aau
-anX
-anX
-bzJ
-bcy
-bzM
-anX
-anX
-aau
-aaa
-aad
-aad
-aad
-aad
-aad
-aad
-aaa
-aau
-aRC
-aRG
+qXl
+qXl
+qXl
+opl
+apO
+lKe
+xRV
+rFt
+bfW
+aVD
+bnZ
+apO
awI
bjP
bov
@@ -95455,7 +97293,7 @@ bPi
bcC
bcT
bdg
-bwE
+lEO
bwI
bxe
bCZ
@@ -95486,13 +97324,13 @@ aaa
aaa
avP
aaa
-aau
-aau
-aau
+aal
+aal
+aal
bNm
-aau
-aau
-aau
+aal
+aal
+aal
aaa
avP
aaa
@@ -95613,7 +97451,7 @@ aQm
aQm
aQm
aQm
-bfr
+gsu
bzq
bzN
bAx
@@ -95629,7 +97467,7 @@ aUJ
akm
bsk
bsw
-bDX
+ltw
aaT
aMq
aMq
@@ -95648,35 +97486,35 @@ aaa
aaa
aaa
aaa
+lFs
+xbA
+wmg
+xbA
+wmg
+xbA
+wmg
+iiw
aaa
aaa
aaa
-bPG
-aad
-bSu
-aad
-bPG
-aaa
aaa
anX
anX
-bck
-bct
-bct
-bct
-bck
+anX
anX
anX
aaa
aaa
aaa
-aau
-aau
-aau
-aaa
-aaa
-aau
-aRE
+qXl
+nyj
+apO
+aoU
+hSe
+fzV
+sfa
+kTN
+apO
aze
bAN
bDE
@@ -95695,9 +97533,9 @@ aRd
axi
bil
acj
-bRV
+aal
bXZ
-bRV
+aal
acj
bWG
bYL
@@ -95711,7 +97549,7 @@ bca
bcA
bcS
bdf
-bdf
+tzv
bwF
bwJ
bxf
@@ -95745,9 +97583,9 @@ avP
avP
bNs
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aaa
avP
@@ -95889,7 +97727,7 @@ bwB
bDL
aaT
aMq
-aMs
+lzi
bOs
aMu
aMu
@@ -95899,41 +97737,41 @@ aMu
bCR
aME
aMv
-aau
aaa
aaa
aaa
aaa
aaa
aaa
+ycZ
+qYJ
+dnN
+qYJ
+dnN
+qYJ
+dnN
+qYJ
+wmg
aaa
aaa
-bPG
-aad
-bSu
-aad
-bPG
-aaa
-aau
anX
-aTy
-aOf
-bcf
-bJR
-btn
-but
-bcE
+anX
+bzJ
+bcy
+bzM
+anX
anX
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aau
-aRC
-aRF
+qXl
+nyj
+apO
+apO
+apO
+apO
+apO
+apO
+apO
aIX
bHv
awU
@@ -96122,7 +97960,7 @@ aPH
abU
aPH
auV
-bgX
+uRy
aup
aTk
bXp
@@ -96136,7 +97974,7 @@ bAT
bBA
bEp
aaP
-amQ
+czY
aPu
azr
aaP
@@ -96156,39 +97994,39 @@ aMu
aMu
aMH
aMI
-aau
aaa
aaa
aaa
aaa
aaa
aaa
-aaa
-aau
-bPG
-aad
-bSu
-aad
-bPG
-aaa
-aau
+xWs
+qYJ
+ixd
+qYJ
+ixd
+qYJ
+ixd
+qYJ
+oHN
+aal
anX
-bbC
-bbD
-bzL
-bLY
+anX
+bck
bct
-bcl
-bbF
+bct
+bct
+bck
+anX
anX
aaa
-aau
-aaa
-aau
-aau
-aaa
-aaa
-aaa
+qXl
+rYP
+sos
+sos
+sos
+sos
+xXZ
aRD
aze
awO
@@ -96418,36 +98256,36 @@ aaa
aaa
aaa
aaa
+aal
+euD
+qYJ
+dnN
+qYJ
+dnN
+qYJ
+dnN
+qYJ
+wmg
aaa
-aaa
-aaa
-aaa
-bPG
-aad
-bSu
-aad
-bPG
-aaa
-aau
anX
-bcj
-bcl
-bct
-bcn
-bct
-bcl
-bOe
+aTy
+aOf
+bcf
+bJR
+btn
+but
+bcE
anX
-acZ
-acZ
-acZ
-acZ
-acZ
-acZ
-acZ
-aau
-axc
-awI
+oPe
+oPe
+oPe
+oPe
+oPe
+oPe
+oPe
+nVf
+qXl
+kmI
ark
aZm
bCN
@@ -96458,7 +98296,7 @@ aOp
bHy
aOX
bJW
-bmi
+xDp
bjW
aOO
aOp
@@ -96674,36 +98512,36 @@ aaa
aaa
aaa
aaa
+aal
+aal
aaa
-aaa
-aaa
-aaa
-anA
-anE
-aad
-bSu
-aad
-any
-amI
+qLM
+ixd
+qYJ
+ixd
+qYJ
+ixd
+qYJ
+sxJ
aaa
anX
-anX
-bcp
+kvC
+bbD
+bzL
+bLY
+bct
bcl
-bcn
-bcl
-bcx
-anX
+bbF
anX
acZ
aQy
btM
-btO
-atN
+cNG
+ufN
aQw
-acZ
-axc
-axc
+oPe
+qXl
+qXl
bPz
ceD
ceF
@@ -96739,12 +98577,12 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aQQ
aaa
@@ -96910,7 +98748,7 @@ bUP
bUP
aaY
abQ
-aeZ
+oee
afb
aaZ
act
@@ -96926,32 +98764,32 @@ aMu
aMu
bCS
aMB
-aau
-aau
-aaa
-aau
+aal
aaa
aaa
-aau
-aau
-aaa
-bPG
-aad
-aad
-bSu
-aad
-aad
-bPG
aaa
aaa
+aal
+aaa
+aaa
+aal
+euD
+icc
+ycZ
+icc
+ycZ
+icc
+aal
+aal
anX
+bcj
+bcl
+bct
+bcn
+bct
+bcl
+bOe
anX
-anX
-bcu
-anX
-anX
-anX
-acZ
aeG
bbG
btN
@@ -96980,7 +98818,7 @@ aOp
bXv
bpK
big
-biz
+xrC
brC
brT
big
@@ -96992,8 +98830,8 @@ aAc
aAc
aAc
aaa
-aau
-aau
+aal
+aal
aaa
biw
bNB
@@ -97192,23 +99030,23 @@ alk
aRY
aSb
aSa
-bPG
-aad
-anP
-bXM
-azT
-aad
-bPG
aaa
aaa
aaa
+aal
aaa
-bch
-bcv
-bch
+aal
aaa
-aaa
-acZ
+aal
+anX
+anX
+bcp
+hdH
+bcn
+bcl
+bcx
+anX
+anX
aeR
ats
bLZ
@@ -97217,8 +99055,8 @@ btT
acZ
cbY
awI
-btG
-btc
+fkV
+rta
aVO
aWi
aAe
@@ -97243,23 +99081,23 @@ brV
big
aaa
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
biw
bNB
bix
-aau
+aal
biw
bNC
bix
-aau
+aal
biw
bNC
bix
-aau
+aal
aQQ
aQQ
aQQ
@@ -97442,29 +99280,29 @@ alk
arg
ary
arJ
-bOu
+wkM
ast
asu
alk
-aTt
+pMU
aTu
aSa
-bPG
-aad
-aRN
-aIs
-bYo
-aad
-bPG
-aau
+aal
aaa
-aSa
-arN
-bci
-bgn
-bco
-bcr
-aSa
+aaa
+aal
+aaa
+aal
+aal
+aal
+aal
+anX
+anX
+anX
+bcu
+anX
+anX
+anX
acZ
acZ
atJ
@@ -97474,7 +99312,7 @@ aQv
bub
aze
awO
-bna
+vmg
ark
axf
aqz
@@ -97508,7 +99346,7 @@ aaa
biw
bNC
bix
-aau
+aal
biw
bNC
bix
@@ -97516,10 +99354,10 @@ aaa
biw
bNC
bix
-aau
+aal
aaa
aaa
-aau
+aal
aQU
aaa
aaa
@@ -97706,11 +99544,11 @@ alk
aRZ
bBo
aSa
-bPL
aSa
-bRW
aSa
-bYq
+aSa
+aSa
+aSa
aSa
bQd
aSb
@@ -97722,7 +99560,7 @@ ceo
btV
btV
bBU
-aTz
+ibF
acZ
acZ
atM
@@ -97730,8 +99568,8 @@ aQu
aQx
aze
awO
-btG
-bsP
+fkV
+hYI
awU
bfJ
aqz
@@ -97756,27 +99594,27 @@ brH
bsB
big
aaa
-aau
+aal
biw
bNC
bix
-aau
-aau
+aal
+aal
biw
bNC
bix
-aau
+aal
biw
bNC
bix
-aau
+aal
biw
bNC
bix
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aQQ
aaa
aaa
@@ -97965,9 +99803,9 @@ aSg
aSj
cad
aSj
-aTw
-boz
-bZd
+aSj
+aSj
+aSj
cah
caj
cak
@@ -97987,7 +99825,7 @@ arA
arA
buH
btc
-bsP
+oNF
azf
azg
aqz
@@ -98010,15 +99848,15 @@ biu
bii
boh
brI
-aau
+aal
aaa
aaa
aaa
biw
bNC
bix
-aau
-aau
+aal
+aal
biw
bNC
bix
@@ -98033,7 +99871,7 @@ aQL
bio
bio
aky
-aau
+aal
aQQ
aaa
aaa
@@ -98204,10 +100042,10 @@ aaZ
bsG
abO
btf
-btc
-btc
+rta
+rta
bPA
-btj
+iMs
bFt
axe
arj
@@ -98267,10 +100105,10 @@ biu
bii
brx
brJ
-aau
+aal
aaa
-aau
-aau
+aal
+aal
biw
bNC
bix
@@ -98283,14 +100121,14 @@ aQL
biw
bNE
bix
-aau
+aal
biw
bNE
bix
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aQQ
aaa
aaa
@@ -98436,7 +100274,7 @@ agZ
bgK
agh
aKN
-bEF
+qYj
agh
bVf
bzl
@@ -98466,7 +100304,7 @@ brv
cet
bDp
bFu
-bte
+wlc
arA
arA
arD
@@ -98532,19 +100370,19 @@ bio
aQL
aQL
aQL
-aau
+aal
biw
bNE
bix
-aau
+aal
biw
bNE
bix
-aau
+aal
biw
bNE
bix
-aau
+aal
aQQ
aQQ
aQQ
@@ -98711,7 +100549,7 @@ byK
bPm
aaK
aaK
-alK
+sPB
aSy
abL
aak
@@ -98724,10 +100562,10 @@ bDU
axu
axx
btl
-btc
-btc
+rta
+rta
btm
-bte
+wlc
arA
bHg
vMB
@@ -98780,28 +100618,28 @@ aQI
bFS
aQK
aaa
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
aQL
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
biw
bNE
bix
-aau
+aal
biw
bNE
bix
-aau
+aal
biw
bNE
bix
-aau
+aal
aQQ
aaa
aaa
@@ -98967,7 +100805,7 @@ aar
cba
aar
aYm
-aar
+aaj
aov
aTi
byM
@@ -98985,12 +100823,12 @@ axu
axu
axx
btk
-afq
+nrD
bHh
-btc
-btc
-btc
-btc
+rta
+rta
+rta
+rta
aAA
cew
btq
@@ -99040,17 +100878,17 @@ aaa
aaa
aaa
aaa
-aau
+aal
aQL
aal
-aau
-aau
+aal
+aal
aaa
aaa
biw
bNE
bix
-aau
+aal
biw
bNF
bix
@@ -99283,7 +101121,7 @@ aqA
aqz
aPf
aqA
-aYH
+pNR
aQI
aQI
aQI
@@ -99470,7 +101308,7 @@ akP
bEe
aup
bzq
-bAl
+kfj
bAy
bAl
bBf
@@ -99542,7 +101380,7 @@ aPh
aqA
aYD
aYO
-bbq
+ipB
bcO
bhu
bcO
@@ -99746,7 +101584,7 @@ asj
bta
aup
abv
-bma
+iNo
byE
alJ
bqb
@@ -99754,7 +101592,7 @@ bqS
btK
brd
agl
-aGG
+eXR
aKx
aKB
aiO
@@ -99769,7 +101607,7 @@ bCp
aCP
aED
bKq
-aMY
+nyl
aFE
aED
akr
@@ -99799,7 +101637,7 @@ aqA
aqA
bXY
aQK
-bYM
+nOy
aQK
aQK
bRu
@@ -99817,11 +101655,11 @@ biq
biq
biq
biq
-aau
+aal
aQQ
aQQ
aQQ
-aau
+aal
aQQ
aaa
aaa
@@ -99987,7 +101825,7 @@ bXE
aup
aup
aup
-aPa
+eNp
bVC
bmD
bBb
@@ -100050,13 +101888,13 @@ biP
bjy
aZJ
akt
-bFO
+naE
aqA
bZo
aQI
bMp
aQI
-bbr
+uoF
aQK
bMw
aQI
@@ -100066,14 +101904,14 @@ bSz
aQK
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aQL
-aau
-aau
+aal
+aal
aaa
-aau
+aal
aaa
aQQ
aaa
@@ -100260,7 +102098,7 @@ asj
bta
aup
abv
-aLN
+hlK
byN
abJ
abZ
@@ -100302,7 +102140,7 @@ aPo
bhm
aWL
biG
-bLm
+mHS
bhr
bFF
bFJ
@@ -100313,7 +102151,7 @@ aYY
aYY
aZc
aYC
-bGh
+dYW
aQK
cat
bSC
@@ -100529,7 +102367,7 @@ aED
aED
aED
aiO
-ajz
+wwX
buM
buP
aiP
@@ -100558,7 +102396,7 @@ aWL
aWL
bhs
ate
-aOE
+uwG
aDV
aDV
bFG
@@ -100570,7 +102408,7 @@ aDV
bMo
aQI
aQI
-bGi
+fid
aQK
aQK
aQK
@@ -100588,7 +102426,7 @@ bNA
bNA
bNA
bND
-aau
+aal
aQQ
aaa
aaa
@@ -100737,7 +102575,7 @@ aaa
aaa
aaa
aQQ
-aau
+aal
aQQ
aQQ
aQQ
@@ -100779,14 +102617,14 @@ aUc
aPQ
arO
aiV
-aDf
+jpL
ahE
aiT
ane
aBc
aFb
aiO
-bui
+oBZ
buN
buS
buT
@@ -100827,13 +102665,13 @@ aDV
aDV
aDV
bQu
-bGj
-bYN
-bGc
-bGc
-bGc
-bGc
-bGk
+mLl
+tfI
+oqF
+oqF
+oqF
+oqF
+xoZ
aQK
aaa
biq
@@ -100845,7 +102683,7 @@ biq
biq
biq
biq
-aau
+aal
aQQ
aaa
aaa
@@ -100996,11 +102834,11 @@ aaa
aQQ
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aQQ
@@ -101031,7 +102869,7 @@ aRV
bta
aup
aiV
-alP
+vHF
alP
aPT
anR
@@ -101057,7 +102895,7 @@ bKQ
bKY
aCQ
aED
-ayE
+vIe
alp
aEI
aVP
@@ -101080,7 +102918,7 @@ baD
aYW
bFR
bFV
-bFW
+grn
bFX
aDV
bQA
@@ -101090,16 +102928,16 @@ aQI
bYB
aQI
aQI
-bGi
+fid
aQK
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aQL
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -101255,17 +103093,17 @@ aaa
bgD
bMQ
bgE
-aau
+aal
bgD
bMQ
bgE
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
-aau
+aal
aaa
aaa
aQQ
@@ -101291,7 +103129,7 @@ aiV
aBM
bEW
bFn
-bFQ
+hYL
aiV
arf
bHM
@@ -101299,7 +103137,7 @@ avJ
aED
aED
bJb
-aEu
+hpm
aiO
aiO
aiO
@@ -101321,7 +103159,7 @@ anZ
anZ
aln
anZ
-bRq
+oBN
aqA
aFY
aZH
@@ -101347,7 +103185,7 @@ acQ
acQ
acQ
bYB
-bGi
+fid
aQK
aaa
bip
@@ -101508,7 +103346,7 @@ aaa
aaa
aaa
aQQ
-aau
+aal
bgD
bMU
bgE
@@ -101525,8 +103363,8 @@ bgD
bMQ
bgE
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -101543,7 +103381,7 @@ asj
bQO
aRV
bta
-abt
+aRW
aiV
bfD
alP
@@ -101561,7 +103399,7 @@ bFA
bIm
bHz
aFd
-bKn
+hhd
bFA
bKJ
bKv
@@ -101599,12 +103437,12 @@ bFZ
bGa
bGb
baS
-akf
+eqn
bRA
bJY
acQ
aQI
-bGi
+fid
aTE
aaa
bNy
@@ -101616,7 +103454,7 @@ bNA
bNA
bNA
bND
-aau
+aal
aQQ
aaa
aaa
@@ -101773,7 +103611,7 @@ aaa
bgD
bMU
bgE
-aau
+aal
bgD
bMU
bgE
@@ -101794,7 +103632,7 @@ aaa
awc
azI
aFz
-bse
+mtv
aNV
asj
bKz
@@ -101808,7 +103646,7 @@ aPY
arP
arR
aea
-ahD
+wFi
aAO
aea
agf
@@ -101861,7 +103699,7 @@ aEZ
aOZ
acQ
akK
-bGi
+fid
aTF
aaa
biq
@@ -101873,7 +103711,7 @@ biq
biq
biq
biq
-aau
+aal
aQQ
aaa
aaa
@@ -102020,17 +103858,17 @@ aaa
aaa
aaa
aQQ
-aau
-aau
-aau
+aal
+aal
+aal
bgD
bMU
bgE
-aau
+aal
bgD
bMU
bgE
-aau
+aal
bgD
bMU
bgE
@@ -102042,7 +103880,7 @@ aaa
bgD
bMU
bgE
-aau
+aal
aaa
aaa
aaa
@@ -102065,7 +103903,7 @@ bys
arP
arS
aea
-ahZ
+vqS
bHU
aea
ahy
@@ -102118,13 +103956,13 @@ akb
bnz
acQ
bQv
-bYT
+leE
aTF
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aQL
aal
aaa
@@ -102277,13 +104115,13 @@ aaa
aaa
aaa
aQQ
-aau
+aal
aaL
awB
awB
aaS
aaS
-auh
+aug
aaS
aaS
aaS
@@ -102291,7 +104129,7 @@ aaS
bgD
bMU
bgE
-aau
+aal
bgD
bMU
bgE
@@ -102301,11 +104139,11 @@ bMU
bgE
aaa
aaa
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
bha
asj
buA
@@ -102338,11 +104176,11 @@ bZG
aEH
bKb
aCS
-bKU
+gdD
aFq
are
aCS
-aWo
+eZi
aqx
aqy
biS
@@ -102375,7 +104213,7 @@ aFa
aPm
acQ
arc
-bGi
+fid
aTF
aaa
bip
@@ -102534,13 +104372,13 @@ aaa
aaa
aaa
aQU
-aau
-aau
-aau
+aal
+aal
+aal
bgD
bMV
bgE
-aau
+aal
bgD
bMV
bgE
@@ -102556,9 +104394,9 @@ aaa
bgD
bNa
bgE
-aau
-aau
-aau
+aal
+aal
+aal
bhc
awB
awB
@@ -102626,13 +104464,13 @@ aOM
aWQ
aWU
baT
-aWZ
+lFx
bgF
bgH
bgT
acQ
aQI
-bGi
+fid
aTG
aaa
bNy
@@ -102801,13 +104639,13 @@ aaa
bgD
bMV
bgE
-aau
+aal
bgD
bMV
bgE
-aau
-aau
-aau
+aal
+aal
+aal
aaS
aQP
bgZ
@@ -102817,10 +104655,10 @@ awB
awB
awB
bhd
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
asj
bLk
aup
@@ -102830,7 +104668,7 @@ aup
aup
bQD
aiV
-alP
+vHF
alP
bAp
anR
@@ -102874,7 +104712,7 @@ aGa
aEh
aEn
aDV
-aWG
+edu
aYT
aOm
aOx
@@ -102889,7 +104727,7 @@ acQ
acQ
acQ
aQI
-bGi
+fid
aQK
aaa
biq
@@ -102901,7 +104739,7 @@ biq
biq
biq
biq
-aau
+aal
aQQ
aaa
aaa
@@ -103050,7 +104888,7 @@ aaa
aaa
aaa
aQQ
-aau
+aal
bgD
bMV
bgE
@@ -103064,17 +104902,17 @@ bMV
bgE
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
bha
-aau
-aau
-aau
-aau
-aau
-aau
-aau
+aal
+aal
+aal
+aal
+aal
+aal
+aal
aaa
aaa
aaa
@@ -103108,7 +104946,7 @@ aiW
ahz
bKy
aCS
-amj
+cPq
bKV
aFu
asi
@@ -103120,10 +104958,10 @@ aEl
asU
biL
biV
-cdS
+kDh
arT
akC
-aZI
+nkG
aDV
aEm
aEh
@@ -103131,7 +104969,7 @@ aGa
aEh
aEn
aDV
-aOe
+hDU
aYU
aYX
aYX
@@ -103146,16 +104984,16 @@ aQI
bYB
aQI
aQI
-bGi
+fid
aQK
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aQL
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -103307,15 +105145,15 @@ aaa
aaa
aaa
aQQ
-aau
+aal
bgD
bMW
bgE
-aau
+aal
bgD
bMW
bgE
-aau
+aal
bgD
bMV
bgE
@@ -103396,22 +105234,22 @@ aZa
aDV
bGf
aDV
-bRe
-bGc
-bGc
-bGc
-bGc
-bYF
-bLO
-bZR
+pxQ
+oqF
+oqF
+oqF
+oqF
+unF
+dgr
+wia
aQK
aaa
aQQ
aQQ
aQQ
-aau
+aal
aQL
-aau
+aal
aQQ
aQQ
aQQ
@@ -103566,17 +105404,17 @@ aaa
aQQ
aaa
aaa
-aau
-aau
+aal
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
bgD
bMW
bgE
-aau
+aal
bMX
bMY
bMY
@@ -103586,7 +105424,7 @@ bMZ
bMZ
bMZ
bNx
-aau
+aal
aQQ
aaa
aaa
@@ -103601,13 +105439,13 @@ asj
aaa
aaa
aaa
-aau
+aal
aaa
afA
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aED
ajI
@@ -103653,7 +105491,7 @@ baM
aDV
bQw
aDV
-bGi
+cPK
bYB
aQK
aQK
@@ -103666,9 +105504,9 @@ aaa
aaa
aaa
aQQ
-aau
-aau
-aau
+aal
+aal
+aal
aQQ
aaa
aaa
@@ -103831,8 +105669,8 @@ aQQ
aQQ
aaa
aaa
-aau
-aau
+aal
+aal
aaa
bgV
bgV
@@ -103858,14 +105696,14 @@ asj
aaa
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
avP
avP
-aau
+aal
bMK
ajJ
bCt
@@ -104091,14 +105929,14 @@ aQQ
aQQ
aQQ
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaS
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aQQ
@@ -104125,15 +105963,15 @@ avP
avP
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aaa
aaa
@@ -104146,7 +105984,7 @@ alG
biW
akN
aEK
-aMK
+vjd
aqR
bKi
arT
@@ -104357,7 +106195,7 @@ bgU
bgU
bgU
bgU
-aau
+aal
aQQ
aaa
aaa
@@ -104604,7 +106442,7 @@ aaa
aaa
aaa
aQQ
-aau
+aal
bMX
bMY
bMY
@@ -104614,7 +106452,7 @@ bMZ
bMZ
bMZ
bNx
-aau
+aal
aQQ
aaa
aaa
@@ -104656,7 +106494,7 @@ aiA
aOL
aiB
aja
-ajU
+wCc
aGc
akc
aki
@@ -104861,7 +106699,7 @@ aaa
aaa
aQQ
aQQ
-aau
+aal
bgV
bgV
bgV
@@ -105120,13 +106958,13 @@ aQQ
aaa
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaS
-aau
+aal
aaa
-aau
+aal
aaa
aaa
aQU
@@ -105172,7 +107010,7 @@ ajY
bLq
bjQ
aZv
-ajY
+tFw
bLq
bkA
alg
@@ -105374,15 +107212,15 @@ aaa
aaa
aaa
aQQ
-aau
+aal
bgU
bgU
bgU
bgU
aaS
aaS
-aau
-aau
+aal
+aal
aaa
aaa
aQQ
@@ -105631,7 +107469,7 @@ aaa
aaa
aaa
aQQ
-aau
+aal
bMX
bMY
bMY
@@ -105641,7 +107479,7 @@ bgU
bgU
bgU
bgU
-aau
+aal
aQQ
aaa
aaa
@@ -105898,7 +107736,7 @@ bMZ
bMZ
bMZ
bNx
-aau
+aal
aQQ
aaa
aaa
@@ -106147,9 +107985,9 @@ aaa
aQQ
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaS
bgV
bgV
@@ -106207,7 +108045,7 @@ bkI
aiN
aiN
aDQ
-aWr
+oKN
aDP
caI
aFX
@@ -106402,14 +108240,14 @@ aaa
aaa
aaa
aQQ
-aau
+aal
bgU
bgU
bgU
bgU
aaS
-aau
-aau
+aal
+aal
aaa
aaa
aaa
@@ -106457,7 +108295,7 @@ aqO
blv
ajB
anY
-ajB
+dIr
blv
apN
aZD
@@ -106465,7 +108303,7 @@ arp
aCA
aDQ
aZr
-aac
+mSf
baz
aFX
bTV
@@ -106659,7 +108497,7 @@ aaa
aaa
aaa
aQQ
-aau
+aal
bMX
bMY
bMY
@@ -106916,7 +108754,7 @@ aaa
aaa
aaa
aQU
-aau
+aal
bgV
bgV
bgV
@@ -106926,7 +108764,7 @@ bMZ
bMZ
bMZ
bNx
-aau
+aal
aQQ
aaa
aaa
@@ -107177,7 +109015,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaS
bgV
bgV
@@ -107430,16 +109268,16 @@ aaa
aaa
aaa
aQQ
-aau
+aal
bgU
bgU
bgU
bgU
aaS
-aau
+aal
aaa
aaa
-aau
+aal
aaa
aQQ
aaa
@@ -107477,7 +109315,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aij
acU
ajB
@@ -107697,7 +109535,7 @@ bgU
bgU
bgU
bgU
-aau
+aal
aQQ
aaa
aaa
@@ -107734,7 +109572,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aij
ajF
ajR
@@ -107954,7 +109792,7 @@ bMZ
bMZ
bMZ
bNx
-aau
+aal
aQQ
aaa
aaa
@@ -108203,15 +110041,15 @@ aaa
aQQ
aaa
aaa
-aau
+aal
aaa
-aau
+aal
aaS
bgV
bgV
bgV
bgV
-aau
+aal
aQQ
aaa
aaa
@@ -108249,7 +110087,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aij
ajG
ajG
@@ -108261,11 +110099,11 @@ ajG
ajB
aUj
aij
-aau
+aal
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
aaa
aaa
@@ -108462,14 +110300,14 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaS
-aau
+aal
aaa
-aau
-aau
+aal
+aal
aaa
-aau
+aal
aaa
aaa
aaa
@@ -108506,7 +110344,7 @@ aaa
aaa
aaa
aaa
-aau
+aal
aij
bjv
bjE
@@ -108518,7 +110356,7 @@ aDT
aOW
aUr
aij
-aau
+aal
aaa
aaa
aaa
@@ -108719,9 +110557,9 @@ aQQ
aQQ
aQQ
aQQ
-aau
-aau
-aau
+aal
+aal
+aal
aQQ
aQQ
aQQ
@@ -109022,15 +110860,15 @@ aaa
aaa
aaa
aaa
-aau
+aal
aaa
aaa
-aau
-aau
-aau
+aal
+aal
+aal
aaa
-aau
-aau
+aal
+aal
aaa
aaa
aaa
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index 11546d788fe..764e2035073 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -17,6 +17,10 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/starboard)
+"aae" = (
+/obj/effect/mapping_helpers/dead_body_placer,
+/turf/open/floor/plasteel/dark,
+/area/medical/morgue)
"aaf" = (
/obj/structure/lattice,
/turf/open/space,
@@ -327,6 +331,22 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/security/prison)
+"aaU" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/sign/warning/deathsposal{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"aaV" = (
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt,
@@ -334,6 +354,11 @@
/area/janitor)
"aaW" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = -28
+ },
+/obj/structure/closet/radiation,
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
"aaX" = (
@@ -392,7 +417,7 @@
areastring = "/area/maintenance/disposal/incinerator";
dir = 1;
name = "Incinerator APC";
- pixel_y = 25
+ pixel_y = 23
},
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
@@ -1443,7 +1468,7 @@
dir = 1;
name = "Prisoner Education Chamber APC";
areastring = "/area/security/execution/education";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -1579,7 +1604,7 @@
/area/security/execution/education)
"adn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -2234,6 +2259,13 @@
},
/turf/open/floor/plating,
/area/crew_quarters/fitness/recreation)
+"aeD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced,
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"aeE" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2547,7 +2579,7 @@
name = "Prison Wing APC";
areastring = "/area/security/prison";
pixel_x = 1;
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -3220,12 +3252,12 @@
/area/ai_monitored/security/armory)
"agb" = (
/obj/structure/rack,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler{
pixel_x = -3;
pixel_y = 3
},
-/obj/item/gun/energy/e_gun/advtaser,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler,
+/obj/item/gun/energy/disabler{
pixel_x = 3;
pixel_y = -3
},
@@ -3465,7 +3497,7 @@
dir = 1;
name = "Recreation Area APC";
areastring = "/area/crew_quarters/fitness/recreation";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -4107,7 +4139,7 @@
name = "Armory APC";
areastring = "/area/ai_monitored/security/armory";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -4845,6 +4877,11 @@
},
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness/recreation)
+"aiT" = (
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"aiU" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/turf_decal/tile/neutral{
@@ -6219,7 +6256,6 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/fitness/recreation)
"alk" = (
-/obj/machinery/vr_sleeper,
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -6770,7 +6806,7 @@
dir = 8;
name = "Brig Control APC";
areastring = "/area/security/warden";
- pixel_x = -26
+ pixel_x = -25
},
/obj/structure/cable/yellow,
/turf/open/floor/plasteel/showroomfloor,
@@ -8206,7 +8242,7 @@
dir = 2;
name = "Disposal APC";
areastring = "/area/maintenance/disposal";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/effect/turf_decal/stripes/line{
@@ -8792,6 +8828,13 @@
/obj/item/assembly/flash/handheld,
/turf/open/floor/plasteel,
/area/security/main)
+"apX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/storage/toolbox/emergency,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/plasteel,
+/area/maintenance/disposal/incinerator)
"apY" = (
/obj/structure/table,
/obj/item/folder/red,
@@ -9367,7 +9410,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"arg" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/start/warden,
@@ -9987,7 +10030,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"aso" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/dark,
@@ -10006,7 +10049,7 @@
/area/security/warden)
"asq" = (
/obj/effect/landmark/start/warden,
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
icon_state = "1-4"
@@ -11275,6 +11318,17 @@
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
+"auQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Incinerator Access";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
"auU" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -12497,7 +12551,7 @@
name = "Brig APC";
areastring = "/area/security/brig";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/machinery/button/flasher{
@@ -13019,7 +13073,7 @@
dir = 1;
name = "Vault APC";
areastring = "/area/security/nuke_storage";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -13451,7 +13505,7 @@
dir = 1;
name = "Mining APC";
areastring = "/area/quartermaster/miningoffice";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -13875,7 +13929,7 @@
dir = 1;
name = "Fore Maintenance APC";
areastring = "/area/maintenance/fore";
- pixel_y = 24
+ pixel_y = 23
},
/turf/open/floor/plating,
/area/maintenance/fore)
@@ -14529,7 +14583,7 @@
/area/security/detectives_office)
"aBo" = (
/obj/effect/landmark/start/detective,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -14639,7 +14693,7 @@
dir = 1;
name = "Dormitories APC";
areastring = "/area/crew_quarters/dorms";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -14974,7 +15028,7 @@
/obj/item/storage/backpack/duffelbag/syndie/hitman,
/obj/item/card/id/silver/reaper,
/obj/item/lazarus_injector,
-/obj/item/gun/energy/e_gun/advtaser,
+/obj/item/gun/energy/disabler,
/obj/item/gun/ballistic/revolver/russian,
/obj/item/ammo_box/a357,
/obj/item/clothing/neck/stethoscope,
@@ -15130,7 +15184,7 @@
dir = 8;
name = "Detective APC";
areastring = "/area/security/detectives_office";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -16118,7 +16172,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningoffice)
"aEw" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/shaft_miner,
@@ -16195,7 +16249,7 @@
dir = 4;
name = "Warehouse APC";
areastring = "/area/quartermaster/warehouse";
- pixel_x = 27
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -16385,7 +16439,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"aEW" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/structure/cable/yellow{
@@ -16464,7 +16518,7 @@
dir = 2;
name = "Restrooms APC";
areastring = "/area/crew_quarters/toilet/restrooms";
- pixel_y = -26
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -17039,7 +17093,7 @@
dir = 2;
name = "Fore Primary Hallway APC";
areastring = "/area/hallway/primary/fore";
- pixel_y = -27
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/machinery/light,
@@ -17730,7 +17784,7 @@
/turf/open/floor/plasteel/dark,
/area/hallway/primary/fore)
"aHv" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel/dark,
/area/hallway/primary/fore)
"aHw" = (
@@ -18193,7 +18247,7 @@
dir = 2;
name = "Storage Wing APC";
areastring = "/area/construction/storage_wing";
- pixel_y = -27
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -18534,7 +18588,7 @@
dir = 1;
name = "Law Office APC";
areastring = "/area/lawoffice";
- pixel_y = 24
+ pixel_y = 23
},
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-21"
@@ -18988,7 +19042,7 @@
/area/security/courtroom)
"aKf" = (
/obj/effect/landmark/start/lawyer,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/item/radio/intercom{
@@ -20624,7 +20678,7 @@
dir = 1;
name = "Quartermaster's Office APC";
areastring = "/area/quartermaster/qm";
- pixel_y = 30
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -21153,7 +21207,7 @@
dir = 4;
name = "Garden APC";
areastring = "/area/hydroponics/garden";
- pixel_x = 27;
+ pixel_x = 24;
pixel_y = 2
},
/obj/structure/cable/yellow{
@@ -21181,7 +21235,7 @@
dir = 8;
name = "Engine Room APC";
areastring = "/area/engine/engineering";
- pixel_x = -26
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -21362,7 +21416,7 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel,
@@ -22004,7 +22058,7 @@
dir = 2;
name = "Upload APC";
areastring = "/area/ai_monitored/turret_protected/ai_upload";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -22573,7 +22627,7 @@
/area/quartermaster/storage)
"aRI" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel,
@@ -22610,7 +22664,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"aRL" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -23080,7 +23134,7 @@
dir = 2;
name = "Auxillary Base Construction APC";
areastring = "/area/construction/mining/aux_base";
- pixel_y = -24
+ pixel_y = -23
},
/obj/effect/turf_decal/tile/yellow,
/obj/effect/turf_decal/tile/yellow{
@@ -23422,7 +23476,7 @@
name = "Locker Room APC";
areastring = "/area/crew_quarters/locker";
pixel_x = -1;
- pixel_y = -26
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/effect/turf_decal/tile/neutral{
@@ -23834,7 +23888,7 @@
name = "Security Post - Cargo Bay APC";
areastring = "/area/security/checkpoint/supply";
pixel_x = 1;
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -24000,7 +24054,7 @@
dir = 2;
name = "AI Upload Access APC";
areastring = "/area/ai_monitored/turret_protected/ai_upload_foyer";
- pixel_y = -27
+ pixel_y = -23
},
/obj/machinery/light/small{
dir = 8
@@ -24130,7 +24184,7 @@
name = "Courtroom APC";
areastring = "/area/security/courtroom";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -24371,7 +24425,7 @@
/obj/machinery/requests_console{
announcementConsole = 0;
department = "Engineering";
- departmentType = 4;
+ departmentType = 3;
name = "Engineering RC"
},
/turf/closed/wall,
@@ -24699,7 +24753,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aVP" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/landmark/start/depsec/supply,
/turf/open/floor/plasteel,
@@ -25113,7 +25167,7 @@
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Chief Engineer's Desk";
- departmentType = 3;
+ departmentType = 4;
name = "Chief Engineer RC";
pixel_y = 32
},
@@ -26080,7 +26134,7 @@
dir = 4;
name = "CE Office APC";
areastring = "/area/crew_quarters/heads/chief";
- pixel_x = 28
+ pixel_x = 24
},
/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
@@ -26589,7 +26643,7 @@
dir = 8;
name = "Tech Storage APC";
areastring = "/area/storage/tech";
- pixel_x = -27
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -27226,7 +27280,7 @@
name = "Cargo Bay APC";
areastring = "/area/quartermaster/storage";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/machinery/light,
@@ -27655,7 +27709,7 @@
dir = 1;
name = "Auxiliary Tool Storage APC";
areastring = "/area/storage/tools";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -27993,7 +28047,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bbC" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/start/depsec/engineering,
@@ -28139,7 +28193,7 @@
dir = 8;
name = "Cargo Office APC";
areastring = "/area/quartermaster/office";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -28192,7 +28246,7 @@
/area/quartermaster/office)
"bbU" = (
/obj/effect/landmark/start/cargo_technician,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/brown,
@@ -28595,7 +28649,7 @@
dir = 8;
name = "Engineering Security APC";
areastring = "/area/security/checkpoint/engineering";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -28704,7 +28758,7 @@
dir = 1;
name = "Customs APC";
areastring = "/area/security/checkpoint/customs";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -29570,7 +29624,7 @@
dir = 1;
name = "AI Chamber APC";
areastring = "/area/ai_monitored/turret_protected/ai";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-4"
@@ -29659,7 +29713,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"beO" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/structure/cable/yellow{
icon_state = "4-8"
},
@@ -30866,7 +30920,7 @@
dir = 4;
name = "Central Maintenance APC";
areastring = "/area/maintenance/central";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow,
/turf/open/floor/plating,
@@ -31287,7 +31341,7 @@
dir = 1;
name = "Starboard Hallway APC";
areastring = "/area/hallway/primary/starboard";
- pixel_y = 26
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -31536,7 +31590,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"bin" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/status_display/ai{
@@ -31570,7 +31624,7 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore)
"bir" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/status_display/evac{
@@ -31697,7 +31751,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"biI" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/structure/cable/yellow{
@@ -31735,7 +31789,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"biL" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel,
@@ -31836,7 +31890,7 @@
areastring = "/area/vacant_room/commissary";
dir = 4;
name = "Vacant Commissary APC";
- pixel_x = 27;
+ pixel_x = 24;
pixel_y = 2
},
/obj/structure/cable/yellow,
@@ -31900,13 +31954,13 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bja" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/dark,
/area/bridge)
"bjb" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/dark,
@@ -31915,7 +31969,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bjd" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/structure/cable/yellow{
@@ -31924,7 +31978,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"bje" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/dark,
@@ -32478,7 +32532,7 @@
/area/quartermaster/sorting)
"bki" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/cargo_technician,
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -32570,7 +32624,7 @@
dir = 4;
name = "Delivery Office APC";
areastring = "/area/quartermaster/sorting";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -33878,7 +33932,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/structure/extinguisher_cabinet{
@@ -33980,7 +34034,7 @@
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;25;46"
+ req_one_access_txt = "12;22;25;37;38;46"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -34274,7 +34328,6 @@
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/aisat_interior";
enabled = 1;
- icon_state = "control_standby";
name = "Antechamber Turret Control";
pixel_x = 30;
req_access_txt = "65"
@@ -34343,7 +34396,7 @@
dir = 4;
name = "MiniSat Antechamber APC";
areastring = "/area/ai_monitored/turret_protected/aisat_interior";
- pixel_x = 29
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -34588,7 +34641,7 @@
name = "Port Hallway APC";
areastring = "/area/hallway/primary/port";
pixel_x = -1;
- pixel_y = 26
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -34719,7 +34772,7 @@
/area/crew_quarters/heads/hop)
"bon" = (
/obj/effect/landmark/start/head_of_personnel,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/structure/cable/yellow{
@@ -34741,7 +34794,7 @@
dir = 8;
name = "Bridge APC";
areastring = "/area/bridge";
- pixel_x = -27
+ pixel_x = -25
},
/obj/structure/cable/yellow,
/obj/machinery/camera{
@@ -35157,10 +35210,10 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bpl" = (
-/obj/structure/cable{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/cyan{
icon_state = "0-4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/break_room)
"bpm" = (
@@ -35168,10 +35221,10 @@
id = "transittube";
name = "Transit Tube Blast Door"
},
-/obj/structure/cable{
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable/cyan{
icon_state = "4-8"
},
-/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/engine/break_room)
"bpn" = (
@@ -35181,7 +35234,7 @@
/turf/open/floor/plasteel/dark,
/area/aisat)
"bpp" = (
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -35242,29 +35295,18 @@
dir = 4
},
/obj/structure/lattice/catwalk,
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "4-8"
},
/obj/structure/transit_tube/horizontal,
/turf/open/space,
/area/space/nearstation)
-"bpx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/transit_tube/crossing/horizontal,
-/turf/open/space,
-/area/space/nearstation)
"bpy" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "4-8"
},
/obj/structure/transit_tube/horizontal,
@@ -35275,12 +35317,12 @@
dir = 4
},
/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/structure/transit_tube/junction/flipped{
dir = 8
},
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
/turf/open/space,
/area/space/nearstation)
"bpA" = (
@@ -35288,7 +35330,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "4-8"
},
/turf/open/space,
@@ -35301,7 +35343,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "4-8"
},
/turf/open/space,
@@ -35313,19 +35355,19 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/structure/transit_tube/station{
dir = 4
},
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/dark,
/area/aisat)
"bpD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -36068,7 +36110,7 @@
dir = 8;
name = "Captain's Quarters APC";
areastring = "/area/crew_quarters/heads/captain/private";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -36438,18 +36480,18 @@
name = "MiniSat Access";
req_one_access_txt = "32;19"
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
/area/engine/break_room)
"brL" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/dark,
/area/engine/break_room)
"brM" = (
@@ -36457,24 +36499,21 @@
dir = 4
},
/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/transit_tube/curved{
dir = 4
},
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
/turf/open/space,
/area/space/nearstation)
"brN" = (
/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/structure/table/glass,
/obj/item/phone{
pixel_x = -3;
@@ -36487,6 +36526,9 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/dark,
/area/engine/break_room)
"brO" = (
@@ -36521,7 +36563,7 @@
dir = 2;
name = "MiniSat Exterior APC";
areastring = "/area/aisat";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -36635,7 +36677,7 @@
dir = 2;
name = "MiniSat Foyer APC";
areastring = "/area/ai_monitored/turret_protected/aisat/foyer";
- pixel_y = -29
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/machinery/camera/motion{
@@ -37492,7 +37534,7 @@
/obj/item/radio/intercom{
pixel_y = -28
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/blue,
@@ -37533,7 +37575,7 @@
dir = 1;
name = "Head of Personnel APC";
areastring = "/area/crew_quarters/heads/hop";
- pixel_y = 24
+ pixel_y = 23
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
@@ -38133,7 +38175,7 @@
dir = 4
},
/obj/machinery/door/airlock/maintenance{
- req_one_access_txt = "12;25;46"
+ req_one_access_txt = "12;22;25;37;38;46"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -38752,16 +38794,16 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"bwn" = (
-/obj/machinery/computer/card{
- dir = 1
- },
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/obj/machinery/computer/card{
+ dir = 4
+ },
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"bwo" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/head_of_personnel,
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -39124,7 +39166,7 @@
dir = 1;
name = "Bar APC";
areastring = "/area/crew_quarters/bar";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -39310,7 +39352,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/grimy,
@@ -39335,7 +39377,7 @@
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bxr" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/grimy,
@@ -39650,7 +39692,7 @@
dir = 2;
name = "Port Maintenance APC";
areastring = "/area/maintenance/port";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -39678,7 +39720,7 @@
/turf/open/floor/wood,
/area/library)
"bxV" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/librarian,
@@ -40029,7 +40071,7 @@
dir = 1;
name = "Theatre APC";
areastring = "/area/crew_quarters/theatre";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -40064,7 +40106,7 @@
dir = 2;
name = "MiniSat Maint APC";
areastring = "/area/ai_monitored/storage/satellite";
- pixel_y = -26
+ pixel_y = -23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -40208,7 +40250,7 @@
dir = 1;
name = "Atmospherics APC";
areastring = "/area/engine/atmos";
- pixel_y = 28
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -40393,7 +40435,7 @@
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bzo" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/grimy,
@@ -40434,7 +40476,7 @@
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel/grimy,
/area/tcommsat/computer)
"bzt" = (
@@ -40442,7 +40484,7 @@
dir = 4;
name = "Telecomms Control Room APC";
areastring = "/area/tcommsat/computer";
- pixel_x = 26
+ pixel_x = 24
},
/obj/machinery/computer/telecomms/server{
dir = 8;
@@ -40983,7 +41025,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bAE" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/start/atmospheric_technician,
@@ -40995,7 +41037,7 @@
},
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
+ departmentType = 3;
name = "Atmos RC";
pixel_x = 30
},
@@ -41303,7 +41345,7 @@
/turf/open/floor/wood,
/area/library)
"bBs" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/wood,
@@ -41973,7 +42015,7 @@
/turf/open/floor/wood,
/area/vacant_room/office)
"bCN" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/wood,
@@ -42001,7 +42043,7 @@
dir = 2;
name = "Auxiliary Restrooms APC";
areastring = "/area/crew_quarters/toilet/auxiliary";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/effect/decal/cleanable/dirt,
@@ -42239,7 +42281,7 @@
dir = 1;
name = "Command Hallway APC";
areastring = "/area/hallway/secondary/command";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -44796,7 +44838,7 @@
dir = 4;
name = "Gateway APC";
areastring = "/area/gateway";
- pixel_x = 28
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -45150,7 +45192,7 @@
/turf/closed/wall/r_wall,
/area/space/nearstation)
"bJg" = (
-/obj/machinery/telecomms/message_server,
+/obj/machinery/telecomms/message_server/preset,
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"bJh" = (
@@ -45274,7 +45316,7 @@
/turf/open/floor/carpet,
/area/vacant_room/office)
"bJw" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/carpet,
@@ -45315,7 +45357,7 @@
/area/library)
"bJB" = (
/obj/effect/landmark/start/librarian,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/wood,
@@ -46147,7 +46189,7 @@
dir = 8;
name = "E.V.A. Storage APC";
areastring = "/area/ai_monitored/storage/eva";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -46722,7 +46764,7 @@
dir = 4;
name = "Telecomms Server Room APC";
areastring = "/area/tcommsat/server";
- pixel_x = 25
+ pixel_x = 24
},
/obj/machinery/light/small{
dir = 4
@@ -46839,7 +46881,7 @@
/turf/open/floor/plasteel/white/corner,
/area/hallway/secondary/entry)
"bMC" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/wood,
/area/vacant_room/office)
"bMD" = (
@@ -47453,7 +47495,7 @@
dir = 8;
name = "Telecomms Storage APC";
areastring = "/area/storage/tcom";
- pixel_x = -28
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -47852,7 +47894,7 @@
dir = 4;
name = "Nanotrasen Corporate Showroom APC";
areastring = "/area/bridge/showroom/corporate";
- pixel_x = 28
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "1-8"
@@ -48965,7 +49007,7 @@
/turf/open/floor/wood,
/area/library)
"bRi" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/wood,
/area/library)
"bRj" = (
@@ -49330,7 +49372,7 @@
dir = 2;
name = "Kitchen APC";
areastring = "/area/crew_quarters/kitchen";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/turf/open/floor/plasteel/cafeteria{
@@ -49707,7 +49749,7 @@
/turf/open/floor/wood,
/area/library)
"bSy" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -49905,7 +49947,6 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/dark/visible{
- icon_state = "manifold-2";
dir = 8
},
/turf/open/floor/plasteel/kitchen_coldroom,
@@ -49969,7 +50010,7 @@
name = "Starboard Maintenance APC";
areastring = "/area/maintenance/starboard";
pixel_x = -1;
- pixel_y = 26
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -50024,7 +50065,7 @@
"bTj" = (
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
+ departmentType = 3;
name = "Atmos RC";
pixel_x = 30
},
@@ -50116,7 +50157,7 @@
/turf/open/floor/wood,
/area/library)
"bTx" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/airalarm{
@@ -50351,7 +50392,7 @@
dir = 1;
name = "Central Primary Hallway APC";
areastring = "/area/hallway/primary/central";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -50776,7 +50817,7 @@
dir = 8;
name = "Port Quarter Solar APC";
areastring = "/area/maintenance/solars/port/aft";
- pixel_x = -26;
+ pixel_x = -25;
pixel_y = 3
},
/obj/structure/cable/yellow{
@@ -51146,15 +51187,15 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"bVx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
/obj/effect/turf_decal/tile/green{
dir = 1
},
/obj/effect/turf_decal/tile/green{
dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/hydroponics)
"bVy" = (
@@ -51179,7 +51220,7 @@
/obj/machinery/door/airlock{
name = "Service Hall";
req_access_txt = "null";
- req_one_access_txt = "25;26;35;28"
+ req_one_access_txt = "25;26;35;28;22;37;46;38"
},
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -51833,7 +51874,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/botanist,
@@ -52514,6 +52555,7 @@
/obj/effect/turf_decal/tile/green{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hydroponics)
"bYl" = (
@@ -52892,7 +52934,7 @@
dir = 8;
name = "Medical Security Checkpoint APC";
areastring = "/area/security/checkpoint/medical";
- pixel_x = -24
+ pixel_x = -25
},
/obj/machinery/airalarm{
pixel_y = 28
@@ -53153,7 +53195,7 @@
/obj/machinery/door/airlock{
name = "Service Hall";
req_access_txt = "null";
- req_one_access_txt = "25;26;35;28"
+ req_one_access_txt = "25;26;35;28;22;37;46;38"
},
/turf/open/floor/plating,
/area/maintenance/starboard)
@@ -53167,17 +53209,6 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/maintenance/disposal/incinerator)
-"bZD" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Incinerator Access";
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboard)
"bZE" = (
/turf/closed/wall,
/area/maintenance/disposal/incinerator)
@@ -53595,17 +53626,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/research)
-"cau" = (
-/obj/structure/table,
-/obj/item/paper/pamphlet/gateway,
-/obj/effect/turf_decal/tile/purple{
- dir = 1
- },
-/obj/effect/turf_decal/tile/purple{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/science/research)
"cav" = (
/obj/structure/chair,
/obj/effect/landmark/start/assistant,
@@ -54002,18 +54022,6 @@
},
/turf/open/floor/plasteel,
/area/maintenance/disposal/incinerator)
-"caZ" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/obj/structure/sign/warning/deathsposal{
- pixel_y = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"cba" = (
/obj/machinery/power/smes{
capacity = 9e+006;
@@ -54540,7 +54548,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"cbR" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
id = "MedbayFoyer";
@@ -54704,7 +54712,7 @@
/area/security/checkpoint/science/research)
"ccm" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/depsec/science,
@@ -54840,7 +54848,7 @@
dir = 2;
name = "Hydroponics APC";
areastring = "/area/hydroponics";
- pixel_y = -28
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/effect/turf_decal/stripes/line{
@@ -54878,6 +54886,9 @@
pixel_y = 2
},
/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/hydroponics)
"ccA" = (
@@ -54893,14 +54904,12 @@
pixel_y = 5
},
/obj/item/watertank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
/obj/item/grenade/chem_grenade/antiweed,
/obj/structure/table/glass,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hydroponics)
"ccB" = (
@@ -55213,7 +55222,7 @@
dir = 2;
name = "Medbay Storage APC";
areastring = "/area/medical/storage";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/effect/turf_decal/tile/blue{
@@ -56382,7 +56391,7 @@
dir = 1;
name = "Sleeper Room APC";
areastring = "/area/medical/sleeper";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -56748,7 +56757,7 @@
dir = 8;
name = "Security Post - Research Division APC";
areastring = "/area/security/checkpoint/science/research";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable/yellow,
/obj/effect/turf_decal/tile/red{
@@ -56819,13 +56828,6 @@
icon_state = "platingdmg2"
},
/area/maintenance/starboard/aft)
-"cgu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/reagent_dispensers/fueltank,
-/obj/item/storage/toolbox/emergency,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"cgv" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -57788,7 +57790,7 @@
dir = 1;
name = "Medbay Central APC";
areastring = "/area/medical/medbay/central";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -58046,7 +58048,7 @@
dir = 1;
name = "Research Division APC";
areastring = "/area/science/research";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -59055,9 +59057,6 @@
/turf/open/floor/plasteel/dark,
/area/medical/surgery)
"cld" = (
-/obj/machinery/sleeper{
- dir = 4
- },
/obj/effect/turf_decal/tile/blue{
dir = 1
},
@@ -59068,6 +59067,7 @@
/obj/effect/turf_decal/tile/blue{
dir = 8
},
+/obj/machinery/stasis,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"cle" = (
@@ -59108,9 +59108,6 @@
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"clh" = (
-/obj/machinery/sleeper{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -59124,6 +59121,7 @@
/obj/effect/turf_decal/tile/blue{
dir = 8
},
+/obj/machinery/stasis,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
"cli" = (
@@ -60116,8 +60114,10 @@
},
/area/maintenance/port/aft)
"cnl" = (
-/obj/structure/mineral_door/wood{
- name = "The Gobbetting Barmaid"
+/obj/machinery/door/airlock/wood{
+ doorClose = 'sound/effects/doorcreaky.ogg';
+ doorOpen = 'sound/effects/doorcreaky.ogg';
+ name = "The Gobetting Barmaid"
},
/turf/open/floor/wood,
/area/maintenance/port/aft)
@@ -60213,7 +60213,7 @@
dir = 1;
name = "Cryogenics APC";
areastring = "/area/medical/cryo";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -60854,14 +60854,6 @@
/obj/machinery/rnd/production/techfab/department/service,
/turf/open/floor/plasteel,
/area/hallway/secondary/service)
-"cox" = (
-/obj/structure/mineral_door/wood{
- name = "The Gobbetting Barmaid"
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
- },
-/area/maintenance/port/aft)
"coy" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
@@ -60895,7 +60887,7 @@
dir = 4;
name = "Surgery APC";
areastring = "/area/medical/surgery";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -61062,7 +61054,7 @@
dir = 4;
name = "CMO's Office APC";
areastring = "/area/crew_quarters/heads/cmo";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -61919,7 +61911,7 @@
dir = 8;
name = "Chemistry APC";
areastring = "/area/medical/chemistry";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/closet/secure_closet/chemical{
pixel_x = -3
@@ -62022,7 +62014,7 @@
dir = 2;
name = "Research Lab APC";
areastring = "/area/science/lab";
- pixel_y = -26
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/structure/table,
@@ -62271,7 +62263,7 @@
dir = 2;
name = "Experimentation Lab APC";
areastring = "/area/science/explab";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/turf/open/floor/plasteel/white,
@@ -63555,7 +63547,7 @@
dir = 1;
name = "Toxins Storage APC";
areastring = "/area/science/storage";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -64027,7 +64019,7 @@
dir = 1;
name = "Port Quarter Maintenance APC";
areastring = "/area/maintenance/port/aft";
- pixel_y = 24
+ pixel_y = 23
},
/turf/open/floor/plating,
/area/maintenance/port/aft)
@@ -64045,7 +64037,7 @@
dir = 8;
name = "Patient Room A APC";
areastring = "/area/medical/patients_rooms/room_a";
- pixel_x = -26
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -64207,7 +64199,7 @@
dir = 1;
name = "Genetics Lab APC";
areastring = "/area/medical/genetics";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -65179,7 +65171,7 @@
dir = 8;
name = "Patient Room B APC";
areastring = "/area/medical/patients_rooms/room_b";
- pixel_x = -26
+ pixel_x = -25
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -65504,7 +65496,7 @@
dir = 2;
name = "RD Office APC";
areastring = "/area/crew_quarters/heads/hor";
- pixel_y = -27
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/machinery/light_switch{
@@ -67078,7 +67070,7 @@
dir = 4;
name = "Medbay Aft APC";
areastring = "/area/medical/medbay/aft";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -67341,7 +67333,7 @@
dir = 4;
name = "Mech Bay APC";
areastring = "/area/science/robotics/mechbay";
- pixel_x = 28
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -67364,7 +67356,6 @@
/area/science/nanite)
"cAr" = (
/obj/machinery/computer/nanite_chamber_control{
- icon_state = "computer";
dir = 8
},
/obj/effect/turf_decal/bot,
@@ -68340,7 +68331,7 @@
dir = 4;
name = "Toxins Lab APC";
areastring = "/area/science/mixing";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -68619,7 +68610,7 @@
dir = 1;
name = "Robotics Lab APC";
areastring = "/area/science/robotics/lab";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -68818,7 +68809,7 @@
dir = 1;
name = "Virology APC";
areastring = "/area/medical/virology";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-4"
@@ -69128,7 +69119,7 @@
dir = 4;
name = "Morgue APC";
areastring = "/area/medical/morgue";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -69788,7 +69779,7 @@
areastring = "/area/science/mixing/chamber";
dir = 4;
name = "Toxins Chamber APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -71511,7 +71502,7 @@
dir = 1;
name = "Research Division Server Room APC";
areastring = "/area/science/server";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -72820,7 +72811,7 @@
dir = 1;
name = "Departure Lounge APC";
areastring = "/area/hallway/secondary/exit/departure_lounge";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -73485,7 +73476,7 @@
dir = 1;
name = "Starboard Quarter Solar APC";
areastring = "/area/maintenance/solars/starboard/aft";
- pixel_y = 24
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -74227,7 +74218,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"cNa" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -74661,7 +74652,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"cNR" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel,
@@ -75071,7 +75062,7 @@
lighting = 3;
name = "Chapel Office APC";
areastring = "/area/chapel/office";
- pixel_y = -25
+ pixel_y = -23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -78137,6 +78128,9 @@
dir = 1
},
/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
/turf/open/floor/plasteel,
/area/hydroponics)
"dbF" = (
@@ -78402,7 +78396,7 @@
dir = 1;
name = "Xenobiology APC";
areastring = "/area/science/xenobiology";
- pixel_y = 27
+ pixel_y = 23
},
/obj/structure/cable/yellow{
icon_state = "0-2"
@@ -79229,7 +79223,7 @@
dir = 4;
name = "Test Chamber Maintenance APC";
areastring = "/area/maintenance/department/science/xenobiology";
- pixel_x = 26
+ pixel_x = 24
},
/turf/open/floor/plating,
/area/maintenance/department/science/xenobiology)
@@ -80223,18 +80217,6 @@
/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/space,
/area/space/nearstation)
-"dgS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/obj/structure/transit_tube/horizontal,
-/obj/machinery/atmospherics/pipe/simple/orange/visible,
-/turf/open/space,
-/area/space/nearstation)
"dha" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -80611,7 +80593,7 @@
dir = 2;
name = "Tool Storage APC";
areastring = "/area/storage/primary";
- pixel_y = -27
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/item/wrench,
@@ -81515,7 +81497,7 @@
dir = 4;
name = "Port Bow Maintenance APC";
areastring = "/area/maintenance/port/fore";
- pixel_x = 26
+ pixel_x = 24
},
/turf/open/floor/plating{
icon_state = "platingdmg2"
@@ -81726,7 +81708,7 @@
dir = 2;
name = "Starboard Bow Maintenance APC";
areastring = "/area/maintenance/starboard/fore";
- pixel_y = -28
+ pixel_y = -23
},
/obj/structure/cable/yellow{
icon_state = "0-8"
@@ -81950,7 +81932,7 @@
dir = 2;
name = "Starboard Quarter Maintenance APC";
areastring = "/area/maintenance/starboard/aft";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable/yellow,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -82879,10 +82861,6 @@
},
/turf/open/floor/plasteel,
/area/science/misc_lab/range)
-"etr" = (
-/obj/machinery/vr_sleeper,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness/recreation)
"eFN" = (
/obj/structure/bodycontainer/crematorium{
id = "crematoriumChapel";
@@ -82911,6 +82889,18 @@
},
/turf/open/floor/plating,
/area/maintenance/starboard/aft)
+"fcn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
"fdr" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
@@ -83186,11 +83176,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/research)
-"ieW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"ifN" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -83294,6 +83279,12 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port/aft)
+"jHw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hydroponics)
"jKK" = (
/obj/machinery/door/airlock/external{
req_access_txt = "13"
@@ -83374,7 +83365,7 @@
areastring = "/area/hallway/secondary/service";
dir = 1;
name = "Service Hall APC";
- pixel_y = 25
+ pixel_y = 23
},
/obj/machinery/airalarm{
dir = 8;
@@ -83451,6 +83442,19 @@
},
/turf/open/floor/plasteel,
/area/science/misc_lab/range)
+"lkf" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
"lnO" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -83541,6 +83545,16 @@
},
/turf/open/floor/plasteel,
/area/science/mixing)
+"mrv" = (
+/obj/machinery/door/airlock/wood{
+ doorClose = 'sound/effects/doorcreaky.ogg';
+ doorOpen = 'sound/effects/doorcreaky.ogg';
+ name = "The Gobetting Barmaid"
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/maintenance/port/aft)
"msD" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -83704,6 +83718,16 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/science/misc_lab/range)
+"ofy" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/obj/machinery/vending/modularpc,
+/turf/open/floor/plasteel/white,
+/area/science/research)
"ogE" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
@@ -83771,6 +83795,18 @@
"pcn" = (
/turf/open/floor/plasteel,
/area/science/misc_lab/range)
+"pgY" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
"pmZ" = (
/obj/structure/sign/poster/official/random{
pixel_y = 32
@@ -83896,16 +83932,6 @@
},
/turf/open/floor/plasteel/white,
/area/science/misc_lab/range)
-"qbK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/portable_atmospherics/canister,
-/obj/effect/turf_decal/delivery,
-/obj/structure/window/reinforced,
-/obj/structure/sign/warning/nosmoking{
- pixel_x = -28
- },
-/turf/open/floor/plasteel,
-/area/maintenance/disposal/incinerator)
"qcZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -83938,6 +83964,14 @@
},
/turf/open/floor/plasteel,
/area/science/misc_lab/range)
+"qkD" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics)
"qom" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
@@ -84211,6 +84245,23 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
+"tQN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics)
"tVY" = (
/obj/structure/closet/crate,
/obj/item/target/alien,
@@ -84273,6 +84324,17 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/engine/storage_shared)
+"uGa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/transit_tube/crossing/horizontal,
+/turf/open/space,
+/area/space/nearstation)
"uGW" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -84325,13 +84387,6 @@
},
/turf/open/floor/plasteel,
/area/maintenance/department/science)
-"vlx" = (
-/obj/machinery/vr_sleeper,
-/obj/effect/turf_decal/tile/neutral{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness/recreation)
"vwi" = (
/obj/structure/girder,
/obj/structure/grille,
@@ -101982,7 +102037,7 @@ cjv
diG
dux
cnl
-cox
+mrv
dux
diI
diK
@@ -109708,7 +109763,7 @@ ctA
cCj
cCj
cDY
-cCj
+aae
cCj
cCe
cHJ
@@ -112765,7 +112820,7 @@ bVk
bWx
bXV
bZj
-cat
+ofy
ccd
ccd
ceN
@@ -113022,7 +113077,7 @@ aYX
aXR
bXW
bZk
-cau
+cat
cce
ccd
qBh
@@ -119957,7 +120012,7 @@ bKe
bRW
bST
bUm
-bVu
+pgY
bWT
bYj
bWT
@@ -120214,11 +120269,11 @@ bQI
bRX
bST
bUn
-bVt
-bWQ
+lkf
+qkD
bYk
-bWQ
-caL
+qkD
+tQN
dbE
bST
diB
@@ -120733,7 +120788,7 @@ bST
bST
bST
caQ
-bST
+jHw
bST
cfg
pCp
@@ -121693,9 +121748,9 @@ acP
afz
agz
dBY
-vlx
-vlx
-etr
+ahl
+ahl
+ahg
alk
alk
anK
@@ -123561,9 +123616,9 @@ bYr
avs
bZE
mKO
-qbK
-ieW
-cgu
+aaW
+aeD
+apX
amV
bZC
arF
@@ -124329,11 +124384,11 @@ alq
alq
bXb
bYu
-bZD
+auQ
caY
ccI
ced
-aaW
+aiT
aju
apP
ciZ
@@ -124587,7 +124642,7 @@ aut
bXc
apc
bZE
-caZ
+aaU
ccJ
cee
cgx
@@ -128181,7 +128236,7 @@ bPu
bPu
bTl
bUF
-bKD
+bCi
bXo
bMj
bZI
@@ -128675,7 +128730,7 @@ aaa
aaa
aaa
aaf
-bpw
+uGa
aaf
aaf
ack
@@ -129446,7 +129501,7 @@ dgO
dgO
dgw
dgO
-dgS
+fcn
dgO
dgO
dgw
@@ -129703,7 +129758,7 @@ aaa
aaa
aaf
aaf
-bpx
+uGa
aaf
aaf
aaf
@@ -130474,7 +130529,7 @@ aaa
aaa
aaf
aaf
-bpx
+uGa
aaf
aaf
aaf
@@ -132273,7 +132328,7 @@ aaa
aaa
aaf
aaf
-bpx
+uGa
aaf
aaf
aaa
@@ -134072,7 +134127,7 @@ aaa
aaa
aaf
aaf
-bpx
+uGa
aaf
aaf
aaa
diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm
index a265cdb3c77..635dc97931c 100644
--- a/_maps/map_files/Mining/Lavaland.dmm
+++ b/_maps/map_files/Mining/Lavaland.dmm
@@ -78,7 +78,6 @@
/area/lavaland/surface/outdoors)
"ao" = (
/obj/machinery/computer/shuttle/labor/one_way{
- icon_state = "computer";
dir = 4
},
/turf/open/floor/plasteel,
@@ -285,7 +284,6 @@
dir = 4
},
/obj/machinery/computer/mech_bay_power_console{
- icon_state = "computer";
dir = 1
},
/turf/open/floor/plasteel,
@@ -366,7 +364,6 @@
/area/mine/eva)
"bh" = (
/obj/machinery/computer/secure_data{
- icon_state = "computer";
dir = 1
},
/turf/open/floor/plasteel,
@@ -494,7 +491,6 @@
/area/mine/eva)
"bw" = (
/obj/machinery/computer/security/labor{
- icon_state = "computer";
dir = 1
},
/turf/open/floor/plasteel,
@@ -509,13 +505,13 @@
/turf/open/floor/plasteel,
/area/mine/laborcamp)
"by" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/mine/laborcamp)
"bz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -525,7 +521,7 @@
name = "Labor Camp Backroom";
req_access_txt = "2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -534,12 +530,12 @@
/obj/machinery/power/apc{
dir = 1;
name = "Labor Camp APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -630,7 +626,7 @@
name = "Labor Camp Monitoring";
req_access_txt = "2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -640,7 +636,7 @@
name = "Labor Camp Maintenance";
req_access_txt = "2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-10"
},
/turf/open/floor/plating,
@@ -661,7 +657,7 @@
/turf/open/floor/plasteel,
/area/mine/production)
"bQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -673,7 +669,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -686,7 +682,7 @@
/turf/open/floor/plasteel,
/area/mine/production)
"bS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/mining/glass{
@@ -699,13 +695,13 @@
/turf/open/floor/plasteel,
/area/mine/eva)
"bT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/brown{
@@ -720,7 +716,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -774,8 +770,8 @@
/turf/open/floor/plasteel,
/area/mine/laborcamp/security)
"cc" = (
-/obj/structure/chair/office/dark,
-/obj/structure/cable{
+/obj/structure/chair/office,
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/mob/living/simple_animal/bot/secbot/beepsky{
@@ -800,23 +796,23 @@
c_tag = "Labor Camp Monitoring";
network = list("labor")
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
/area/mine/laborcamp/security)
"ce" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "5-6"
},
/turf/open/floor/plating,
/area/mine/laborcamp)
"cf" = (
/obj/machinery/power/terminal,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -832,7 +828,6 @@
/area/mine/laborcamp)
"ci" = (
/obj/machinery/computer/prisoner{
- icon_state = "computer";
dir = 1
},
/turf/open/floor/plasteel,
@@ -867,7 +862,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -933,10 +928,10 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-9"
},
/turf/open/floor/plating,
@@ -957,7 +952,7 @@
/area/mine/production)
"cE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -1046,13 +1041,13 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/mine/living_quarters)
"cT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small{
@@ -1066,7 +1061,7 @@
/area/mine/living_quarters)
"cU" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -1082,10 +1077,10 @@
/obj/machinery/power/apc{
dir = 8;
name = "Mining Station Starboard Wing APC";
- pixel_x = -27;
+ pixel_x = -25;
pixel_y = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/light{
@@ -1101,10 +1096,10 @@
/area/mine/production)
"cY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -1165,14 +1160,14 @@
/turf/open/floor/circuit,
/area/mine/maintenance)
"dh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Mining Communications APC";
pixel_x = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel/dark,
@@ -1255,7 +1250,7 @@
/turf/open/floor/plating,
/area/mine/living_quarters)
"dp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1302,7 +1297,7 @@
/turf/open/floor/plasteel,
/area/mine/production)
"dx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1311,7 +1306,7 @@
/turf/open/floor/circuit,
/area/mine/maintenance)
"dy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1387,13 +1382,13 @@
/turf/open/floor/plasteel/white,
/area/mine/living_quarters)
"dF" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
/obj/structure/cable,
/obj/structure/cable{
icon_state = "1-4"
},
-/obj/machinery/power/port_gen/pacman{
- anchored = 1
- },
/turf/open/floor/plating,
/area/mine/living_quarters)
"dG" = (
@@ -1406,7 +1401,7 @@
/turf/open/floor/plating,
/area/mine/living_quarters)
"dH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/binary/pump/on,
@@ -1494,7 +1489,7 @@
name = "Mining Station Communications";
req_access_txt = "48"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1512,14 +1507,14 @@
/turf/open/floor/plasteel/white,
/area/mine/living_quarters)
"dS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
name = "Mining Station Maintenance";
req_access_txt = "48"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1575,7 +1570,7 @@
/area/mine/living_quarters)
"eb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/brown{
@@ -1621,9 +1616,9 @@
dir = 1;
name = "Mining Station Port Wing APC";
pixel_x = 1;
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -1636,7 +1631,7 @@
/turf/open/floor/plasteel,
/area/mine/living_quarters)
"ei" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1706,7 +1701,7 @@
/turf/open/floor/plasteel,
/area/mine/living_quarters)
"eq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -1718,14 +1713,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/mine/living_quarters)
"es" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1734,26 +1729,26 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/mine/living_quarters)
"eu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel,
/area/mine/living_quarters)
"ev" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1765,7 +1760,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -1788,7 +1783,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1800,7 +1795,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/brown{
@@ -1818,7 +1813,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1834,7 +1829,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1846,7 +1841,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/brown{
@@ -1859,7 +1854,7 @@
/area/mine/production)
"eC" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -3722,7 +3717,7 @@
/obj/machinery/atmospherics/pipe/layer_manifold{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -3762,6 +3757,9 @@
},
/turf/open/floor/plasteel/freezer,
/area/mine/living_quarters)
+"tY" = (
+/turf/closed/mineral/random/labormineral/volcanic,
+/area/lavaland/surface/outdoors/explored)
"vb" = (
/obj/machinery/door/window/southleft,
/obj/machinery/shower{
@@ -3842,7 +3840,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -3881,7 +3879,7 @@
/turf/open/floor/plasteel/freezer,
/area/mine/living_quarters)
"EG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -3966,7 +3964,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4033,7 +4031,7 @@
/obj/machinery/atmospherics/pipe/layer_manifold{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -4046,7 +4044,7 @@
/area/mine/maintenance)
"Uh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4073,7 +4071,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/brown,
@@ -4104,7 +4102,7 @@
area_type = /area/lavaland/surface/outdoors;
dir = 8;
dwidth = 3;
- height = 5;
+ height = 10;
id = "mining_away";
name = "lavaland mine";
width = 7
@@ -13657,7 +13655,7 @@ aD
aT
an
aD
-aD
+tY
aj
aj
aj
@@ -13913,9 +13911,9 @@ an
an
an
an
-aD
-aD
-aD
+tY
+tY
+tY
aj
aj
ai
@@ -14429,8 +14427,8 @@ an
an
an
an
-an
-aD
+aj
+aw
aj
aj
cM
@@ -14684,10 +14682,10 @@ an
an
an
an
-an
-an
-aD
-aD
+aj
+aj
+aw
+aw
aj
aj
cM
@@ -14939,12 +14937,12 @@ an
an
an
an
-an
-an
-an
-an
-aD
-aD
+ab
+aj
+aj
+aj
+aw
+aw
aj
aj
cM
@@ -15195,11 +15193,11 @@ an
an
an
an
-an
-an
-an
-an
-an
+ab
+aj
+aj
+aj
+aj
aD
aD
aj
@@ -15452,14 +15450,14 @@ an
an
an
an
-an
-an
-an
-an
-aD
-aD
aj
aj
+aj
+ab
+aD
+aD
+ab
+ab
ab
cM
cW
@@ -15708,16 +15706,16 @@ aj
an
an
an
-an
-an
+aj
+aj
+aw
aD
aD
aD
-aD
-aj
-aj
-aj
-aj
+ab
+ab
+ab
+ab
cM
cM
cM
@@ -15963,22 +15961,22 @@ aj
aj
aj
aj
-aj
-aj
-aD
-aD
-aD
-aD
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
ab
ab
+aw
+aw
+aw
+aD
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aj
+aj
cR
dZ
rP
@@ -16225,17 +16223,17 @@ aj
aj
aj
aj
-aj
-aj
-aj
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
ab
aj
-aj
-aj
-aj
-aj
-aj
-ab
cR
ek
ew
@@ -16481,17 +16479,17 @@ aj
aj
aj
aj
-aj
-aj
-aj
-aj
ab
-aj
ab
-aj
-aj
-aj
-aj
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
aj
cR
cR
@@ -16738,8 +16736,10 @@ aj
aj
aj
aj
-aj
-aj
+ab
+ab
+ab
+ab
ab
ab
ab
@@ -16748,9 +16748,7 @@ ab
ab
ab
aj
-aj
-aj
-aj
+ab
cR
ey
cR
@@ -17268,7 +17266,7 @@ aj
cR
BT
cR
-ab
+aj
aj
aj
aj
@@ -17525,7 +17523,7 @@ aj
cR
BT
cR
-ab
+aj
aj
aj
aj
@@ -17778,11 +17776,11 @@ ab
ab
ab
aj
-ab
+aj
br
ez
br
-ab
+aj
aj
aj
aj
@@ -18035,11 +18033,11 @@ ab
ab
aj
aj
-ab
+aj
br
ez
br
-ab
+aj
aj
aj
aj
@@ -18296,7 +18294,7 @@ ab
br
ez
br
-ab
+aj
aj
aj
aj
@@ -18554,7 +18552,7 @@ br
UQ
br
ab
-ab
+aj
aj
aj
aj
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index 94950c84062..7ebfb6721b5 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -2,12 +2,37 @@
"aaa" = (
/turf/open/space/basic,
/area/space)
+"aab" = (
+/obj/effect/mapping_helpers/dead_body_placer,
+/turf/open/floor/plasteel/dark,
+/area/medical/morgue)
+"aac" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"aad" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/department/science)
+"aae" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"abf" = (
/obj/structure/bed,
/turf/open/floor/plating,
@@ -97,9 +122,6 @@
},
/area/ai_monitored/turret_protected/ai)
"acj" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
/obj/effect/landmark/start/ai/secondary,
/obj/item/radio/intercom{
anyai = 1;
@@ -112,13 +134,16 @@
dir = 1;
pixel_y = 26
},
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"ack" = (
/obj/machinery/power/smes{
charge = 5e+006
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/camera/motion{
@@ -129,23 +154,23 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
/obj/machinery/status_display/ai{
pixel_y = 32
},
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"acl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 1;
name = "AI Chamber APC";
areastring = "/area/ai_monitored/turret_protected/ai";
- pixel_y = 24
+ pixel_y = 23
},
/obj/effect/landmark/start/ai/secondary,
/obj/item/radio/intercom{
@@ -186,26 +211,26 @@
/turf/open/floor/circuit,
/area/ai_monitored/turret_protected/ai)
"acp" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/command/glass{
name = "AI Core";
req_access_txt = "65"
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/white,
/area/ai_monitored/turret_protected/ai)
"acq" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
/obj/machinery/turretid{
control_area = "/area/ai_monitored/turret_protected/ai";
name = "AI Chamber turret control";
pixel_x = 5;
pixel_y = -24
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plasteel/white,
/area/ai_monitored/turret_protected/ai)
"acr" = (
@@ -358,43 +383,22 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on,
/turf/open/floor/plating/airless,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acG" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
+"acI" = (
/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/ai_monitored/turret_protected/ai)
-"acH" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/ai_monitored/turret_protected/ai)
-"acI" = (
/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
/turf/open/floor/plasteel/white{
heat_capacity = 1e+006
},
/area/ai_monitored/turret_protected/ai)
"acJ" = (
+/obj/machinery/door/firedoor/heavy,
/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/machinery/door/firedoor/heavy,
/turf/open/floor/plasteel/white,
/area/ai_monitored/turret_protected/ai)
"acK" = (
@@ -404,12 +408,12 @@
/turf/open/floor/plasteel/white,
/area/ai_monitored/turret_protected/ai)
"acL" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
/obj/machinery/ai_slipper{
uses = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel/white,
/area/ai_monitored/turret_protected/ai)
"acM" = (
@@ -428,12 +432,6 @@
"acP" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acQ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextAP)
"acR" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel/dark,
@@ -461,7 +459,6 @@
/area/ai_monitored/turret_protected/AIsatextAP)
"acX" = (
/obj/machinery/computer/monitor,
-/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
"acY" = (
@@ -484,9 +481,6 @@
/area/ai_monitored/turret_protected/ai)
"adb" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
/obj/machinery/door/airlock/command/glass{
name = "AI Core";
req_access_txt = "65"
@@ -501,6 +495,9 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai)
"adc" = (
@@ -550,7 +547,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
"adi" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plating,
@@ -562,20 +559,20 @@
"adk" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
/obj/machinery/power/apc{
dir = 8;
name = "MiniSat Antechamber APC";
areastring = "/area/ai_monitored/turret_protected/aisat_interior";
- pixel_x = -24
+ pixel_x = -25
},
/obj/machinery/recharger,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
"adl" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/structure/cable/yellow{
@@ -593,7 +590,7 @@
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
"adn" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/grimy,
@@ -614,7 +611,7 @@
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
"adq" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plating,
@@ -788,10 +785,10 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"adN" = (
@@ -949,7 +946,7 @@
/area/security/prison)
"aen" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -966,14 +963,14 @@
/area/security/prison)
"aep" = (
/obj/item/cultivator,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/dark,
/area/security/prison)
"aeq" = (
/obj/machinery/hydroponics/constructable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/seeds/glowshroom,
@@ -988,10 +985,10 @@
/area/security/prison)
"aer" = (
/obj/item/reagent_containers/glass/bucket,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -999,7 +996,7 @@
"aes" = (
/obj/structure/easel,
/obj/item/canvas/nineteenXnineteen,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/poster/official/random{
@@ -1008,10 +1005,10 @@
/turf/open/floor/plasteel/dark,
/area/security/prison)
"aet" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -1107,7 +1104,7 @@
/turf/open/floor/plasteel/dark,
/area/security/prison)
"aeH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -1161,12 +1158,12 @@
req_one_access_txt = "65"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"aeP" = (
@@ -1232,14 +1229,14 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "0-4"
- },
/obj/machinery/power/apc{
dir = 8;
name = "MiniSat Port Maintenance APC";
areastring = "/area/ai_monitored/turret_protected/AIsatextAP";
- pixel_x = -24
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
@@ -1256,9 +1253,6 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/machinery/airalarm{
pixel_y = 22
},
@@ -1267,6 +1261,9 @@
dir = 2;
network = list("minisat")
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
"afb" = (
@@ -1284,7 +1281,7 @@
req_access_txt = "65"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -1302,39 +1299,36 @@
/obj/item/twohanded/required/kirbyplants/photosynthetic{
pixel_y = 10
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/effect/turf_decal/tile/blue{
dir = 1
},
/obj/effect/turf_decal/tile/blue{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"aff" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
/obj/effect/turf_decal/tile/blue{
dir = 1
},
/obj/effect/turf_decal/tile/blue{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"afg" = (
/obj/item/twohanded/required/kirbyplants/photosynthetic{
pixel_y = 10
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/machinery/camera/motion{
c_tag = "MiniSat Foyer";
dir = 2;
@@ -1344,15 +1338,18 @@
/obj/effect/turf_decal/tile/blue{
dir = 4
},
-/turf/open/floor/plasteel/dark,
-/area/ai_monitored/turret_protected/aisat_interior)
-"afh" = (
/obj/structure/cable/yellow{
icon_state = "4-8"
},
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/turret_protected/aisat_interior)
+"afh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/aisat_interior)
"afi" = (
@@ -1360,12 +1357,12 @@
name = "MiniSat Maintenance";
req_access_txt = "65"
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
"afj" = (
@@ -1381,9 +1378,6 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
/obj/machinery/airalarm{
pixel_y = 22
},
@@ -1392,6 +1386,9 @@
dir = 2;
network = list("minisat")
},
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
"afl" = (
@@ -1402,15 +1399,15 @@
/area/ai_monitored/turret_protected/AIsatextAS)
"afm" = (
/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/cable/yellow{
- icon_state = "0-8"
- },
/obj/machinery/power/apc{
dir = 4;
name = "MiniSat Starboard Maintenance APC";
areastring = "/area/ai_monitored/turret_protected/AIsatextAS";
pixel_x = 24
},
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
"afn" = (
@@ -1573,7 +1570,7 @@
/turf/open/floor/plasteel/dark,
/area/security/prison)
"afH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -1844,7 +1841,7 @@
/turf/closed/wall,
/area/security/prison)
"agB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -1970,7 +1967,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"agM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -2033,7 +2030,7 @@
/area/space/nearstation)
"agT" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -2084,7 +2081,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aha" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -2197,7 +2194,7 @@
name = "Long-Term Cell 1";
req_access_txt = "2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -2231,7 +2228,7 @@
"ahu" = (
/obj/structure/table/glass,
/obj/item/flashlight/lamp,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -2246,7 +2243,7 @@
/turf/open/floor/plasteel/white,
/area/security/execution/transfer)
"ahv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -2267,10 +2264,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -2365,7 +2362,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"ahG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -2387,10 +2384,10 @@
/turf/open/floor/plasteel,
/area/security/prison)
"ahH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -2402,7 +2399,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -2412,9 +2409,9 @@
dir = 1;
name = "Prison Wing APC";
pixel_x = 1;
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
@@ -2493,16 +2490,16 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/security/execution/transfer)
"ahV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -2514,10 +2511,10 @@
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
@@ -2526,7 +2523,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -2541,13 +2538,13 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
"ahZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -2556,7 +2553,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aia" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
@@ -2565,23 +2562,23 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aib" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/security/prison)
"aic" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/security/prison)
"aid" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -2729,7 +2726,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -2786,7 +2783,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aiG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -2838,7 +2835,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
"aiN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
@@ -2853,7 +2850,7 @@
name = "Armory APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -2934,10 +2931,10 @@
/turf/open/floor/plasteel/dark,
/area/security/execution/transfer)
"aja" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/red,
@@ -2953,7 +2950,7 @@
name = "Prisoner Transfer Centre";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/red,
@@ -2986,7 +2983,7 @@
/turf/open/floor/plasteel,
/area/security/prison)
"aje" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable,
@@ -3059,7 +3056,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
"aji" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -3302,7 +3299,7 @@
name = "Crematorium";
req_access_txt = "2;27"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -3323,7 +3320,7 @@
id = "Prison Gate";
name = "prison blast door"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/delivery,
@@ -3423,7 +3420,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
"ajS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -3443,13 +3440,13 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
"ajU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 8;
name = "Security Office APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/effect/turf_decal/tile/red{
@@ -3568,7 +3565,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"akj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/light/small{
@@ -3582,7 +3579,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"akk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3594,7 +3591,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"akl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3612,7 +3609,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"akm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3624,7 +3621,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"akn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3633,7 +3630,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"ako" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3646,7 +3643,7 @@
/obj/machinery/door/airlock/public/glass{
name = "space-bridge access"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -3661,7 +3658,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"akq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/light/small{
@@ -3728,10 +3725,10 @@
/turf/open/floor/plasteel/dark,
/area/security/processing/cremation)
"aky" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
@@ -3743,10 +3740,10 @@
/obj/machinery/power/apc{
dir = 1;
name = "Crematorium APC";
- pixel_y = 24
+ pixel_y = 23
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -3829,7 +3826,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"akG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -3886,12 +3883,12 @@
/area/security/brig)
"akL" = (
/obj/structure/rack,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler{
pixel_x = -3;
pixel_y = 3
},
-/obj/item/gun/energy/e_gun/advtaser,
-/obj/item/gun/energy/e_gun/advtaser{
+/obj/item/gun/energy/disabler,
+/obj/item/gun/energy/disabler{
pixel_x = 3;
pixel_y = -3
},
@@ -3915,7 +3912,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
"akO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -3935,7 +3932,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
"akQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/newscaster{
@@ -3966,13 +3963,13 @@
/area/security/main)
"akT" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
"akU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -4007,7 +4004,7 @@
/area/crew_quarters/heads/hos)
"akZ" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -4033,7 +4030,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"ale" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -4101,7 +4098,7 @@
/turf/open/floor/plasteel/dark,
/area/security/processing/cremation)
"aln" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -4189,7 +4186,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"alv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -4252,7 +4249,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/security/armory)
"alB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -4304,7 +4301,7 @@
/turf/open/floor/plasteel/dark,
/area/security/main)
"alI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -4315,7 +4312,7 @@
/area/crew_quarters/heads/hos)
"alK" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/carpet,
@@ -4334,7 +4331,7 @@
/area/crew_quarters/heads/hos)
"alN" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable,
@@ -4392,13 +4389,13 @@
/area/maintenance/department/security/brig)
"alW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
/area/security/processing/cremation)
"alX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/dark,
@@ -4420,7 +4417,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"ama" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -4433,7 +4430,7 @@
/turf/open/floor/plasteel/white,
/area/security/brig)
"amb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -4448,7 +4445,7 @@
icon_state = "right";
name = "Brig Infirmary"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -4458,20 +4455,20 @@
/turf/open/floor/plasteel/white,
/area/security/brig)
"amd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
"ame" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -4480,7 +4477,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"amf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc/highcap/ten_k{
@@ -4501,7 +4498,7 @@
/turf/closed/wall/r_wall,
/area/security/warden)
"amh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -4515,7 +4512,7 @@
name = "Armory";
req_access_txt = "3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -4532,10 +4529,10 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"amj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -4549,10 +4546,10 @@
name = "Armory";
req_access_txt = "3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -4569,13 +4566,13 @@
/turf/open/floor/plasteel/dark,
/area/security/warden)
"aml" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/closed/wall/r_wall,
/area/security/warden)
"amm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light{
@@ -4607,7 +4604,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"amo" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/security_officer,
@@ -4624,7 +4621,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"amq" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/structure/disposalpipe/segment{
@@ -4637,7 +4634,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"amr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -4654,7 +4651,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"ams" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -4670,7 +4667,7 @@
name = "Head of Security";
req_access_txt = "58"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -4683,16 +4680,16 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"amu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -4701,7 +4698,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"amv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -4714,7 +4711,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/carpet,
@@ -4786,7 +4783,7 @@
name = "Crematorium Maintenance";
req_one_access_txt = "2;27"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -4828,7 +4825,7 @@
/turf/open/floor/plasteel/dark,
/area/security/processing/cremation)
"amL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4837,7 +4834,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"amM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -4894,7 +4891,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"amQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -4918,9 +4915,9 @@
/obj/machinery/power/apc{
dir = 8;
name = "Brig Control APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/reagent_dispensers/peppertank{
@@ -4978,13 +4975,13 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"ana" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
/area/security/warden)
"anb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -5016,7 +5013,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"anf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -5027,19 +5024,19 @@
/turf/open/floor/plasteel,
/area/security/main)
"ang" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"anh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hos)
"ani" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/carpet,
@@ -5068,7 +5065,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"anp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/robot_debris{
@@ -5082,7 +5079,7 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"anr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -5093,7 +5090,7 @@
"ans" = (
/obj/item/wirecutters,
/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -5102,7 +5099,7 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"ant" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -5115,10 +5112,10 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -5148,7 +5145,7 @@
name = "Brig Infirmary Maintenance";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -5172,13 +5169,13 @@
/turf/open/floor/plasteel,
/area/security/brig)
"anz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/security/brig)
"anA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -5189,20 +5186,20 @@
/turf/open/floor/plasteel,
/area/security/brig)
"anB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/security/warden)
"anC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/showroomfloor,
@@ -5250,7 +5247,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"anK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable,
@@ -5261,7 +5258,7 @@
/turf/open/floor/plating,
/area/security/warden)
"anL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -5277,14 +5274,14 @@
/turf/open/floor/plasteel,
/area/security/main)
"anM" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/security_officer,
/turf/open/floor/plasteel,
/area/security/main)
"anN" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/structure/disposalpipe/segment,
@@ -5292,7 +5289,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"anO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -5318,7 +5315,7 @@
/area/security/main)
"anQ" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -5327,7 +5324,7 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/hos)
"anR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -5342,7 +5339,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"anS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/keycard_auth{
@@ -5357,7 +5354,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"anT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -5369,7 +5366,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"anU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/camera{
@@ -5389,15 +5386,15 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hos)
"anV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 2;
name = "Head of Security's Office APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/red{
@@ -5410,7 +5407,7 @@
/area/crew_quarters/heads/hos)
"anW" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable,
@@ -5444,7 +5441,7 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"aoe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -5453,7 +5450,7 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -5465,7 +5462,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -5474,13 +5471,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"aoi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -5489,7 +5486,7 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"aoj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -5555,20 +5552,20 @@
name = "Brig Control";
req_access_txt = "3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"aot" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/red{
@@ -5580,13 +5577,13 @@
/turf/open/floor/plasteel,
/area/security/main)
"aou" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/security/main)
"aov" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -5598,7 +5595,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"aow" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -5607,7 +5604,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"aox" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -5617,10 +5614,10 @@
/turf/open/floor/plasteel,
/area/security/main)
"aoy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/light{
@@ -5713,10 +5710,10 @@
},
/area/maintenance/department/security/brig)
"aoL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -5743,14 +5740,14 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"aoP" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/dark,
/area/security/brig)
"aoQ" = (
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -5781,7 +5778,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"aoT" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/warden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
@@ -5821,7 +5818,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"aoZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable,
@@ -5890,7 +5887,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"apf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -5916,7 +5913,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"apg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -5929,7 +5926,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"aph" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -5941,12 +5938,12 @@
/obj/machinery/power/apc{
dir = 1;
name = "Fore Maintenance APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/disposalpipe/segment{
@@ -5955,7 +5952,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"apj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -5967,7 +5964,7 @@
/turf/open/floor/plating,
/area/maintenance/fore)
"apk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -6059,7 +6056,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"apu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6068,7 +6065,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"apv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6079,7 +6076,7 @@
},
/area/maintenance/department/crew_quarters/dorms)
"apw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6119,19 +6116,19 @@
/turf/open/floor/plasteel,
/area/security/brig)
"apI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
/area/security/warden)
"apJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -6139,10 +6136,10 @@
/area/security/warden)
"apK" = (
/obj/structure/table/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/window/brigdoor{
@@ -6164,10 +6161,10 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"apL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -6179,7 +6176,7 @@
name = "Brig Control";
req_access_txt = "3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -6188,13 +6185,13 @@
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
"apN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall/r_wall,
/area/security/warden)
"apO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/closed/wall/r_wall,
@@ -6210,7 +6207,7 @@
/turf/open/floor/plasteel,
/area/security/main)
"apQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -6284,7 +6281,7 @@
/turf/closed/wall,
/area/crew_quarters/dorms)
"aqa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/solar{
@@ -6304,7 +6301,7 @@
/turf/open/space,
/area/solar/port)
"aqc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/solar{
@@ -6314,7 +6311,7 @@
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port)
"aqd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/solar{
@@ -6357,7 +6354,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"aqo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -6530,7 +6527,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"aqE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -6545,17 +6542,17 @@
/turf/open/space/basic,
/area/space/nearstation)
"aqH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/closed/wall/r_wall,
/area/bridge)
"aqI" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -6565,13 +6562,13 @@
/turf/open/floor/plating,
/area/bridge)
"aqJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall/r_wall,
/area/bridge)
"aqK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/closed/wall/r_wall,
@@ -6613,9 +6610,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Vault APC";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/circuit/green{
@@ -6642,9 +6639,9 @@
/obj/machinery/power/apc{
dir = 8;
name = "Gateway APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6654,7 +6651,7 @@
/area/gateway)
"aqR" = (
/obj/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -6667,7 +6664,7 @@
name = "Gateway Chamber";
req_access_txt = "62"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -6728,22 +6725,22 @@
/area/maintenance/department/crew_quarters/dorms)
"ara" = (
/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/structure/cable{
icon_state = "2-8"
},
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
/turf/open/space,
/area/solar/port)
"arc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -6946,7 +6943,7 @@
/turf/open/space/basic,
/area/space/nearstation)
"arG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
@@ -7130,7 +7127,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit/green{
@@ -7197,7 +7194,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"arZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -7224,10 +7221,10 @@
/turf/open/floor/plasteel,
/area/gateway)
"asb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -7236,7 +7233,7 @@
},
/area/maintenance/department/crew_quarters/dorms)
"asc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
@@ -7246,7 +7243,7 @@
/area/maintenance/department/crew_quarters/dorms)
"asd" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -7259,7 +7256,7 @@
/area/crew_quarters/dorms)
"ase" = (
/obj/effect/landmark/event_spawn,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -7273,7 +7270,7 @@
"asf" = (
/obj/effect/landmark/start/assistant,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -7289,7 +7286,7 @@
/obj/machinery/newscaster{
pixel_x = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -7321,7 +7318,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"asm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light{
@@ -7334,7 +7331,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"asn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7344,7 +7341,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"aso" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -7353,7 +7350,7 @@
},
/area/maintenance/department/security/brig)
"asr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -7389,7 +7386,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"asx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light,
@@ -7556,16 +7553,16 @@
/turf/open/floor/plasteel,
/area/bridge)
"asP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/closed/wall/r_wall,
/area/bridge)
"asQ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/keycard_auth{
@@ -7588,7 +7585,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"asR" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/dark,
@@ -7597,10 +7594,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"asT" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/button/door{
@@ -7617,7 +7614,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"asU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/closed/wall/r_wall,
@@ -7660,7 +7657,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit/green{
@@ -7685,7 +7682,7 @@
/obj/machinery/light_switch{
pixel_x = -20
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -7694,7 +7691,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"atb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -7703,7 +7700,7 @@
/turf/open/floor/plasteel,
/area/gateway)
"atc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/landmark/event_spawn,
@@ -7810,7 +7807,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"atp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit/green,
@@ -7819,7 +7816,7 @@
/turf/open/floor/circuit/green,
/area/maintenance/department/security/brig)
"atv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -7831,7 +7828,7 @@
id = "Cell 1";
name = "Cell 1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -7841,10 +7838,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"atx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -7852,19 +7849,19 @@
/turf/open/floor/plating,
/area/security/brig)
"aty" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/closed/wall,
/area/security/brig)
"atz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -7876,7 +7873,7 @@
id = "Cell 2";
name = "Cell 2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -7886,7 +7883,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"atB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall,
@@ -7896,7 +7893,7 @@
id = "Cell 3";
name = "Cell 3"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red,
@@ -7906,10 +7903,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"atD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -7923,7 +7920,7 @@
name = "Brig";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -7937,10 +7934,10 @@
/turf/open/floor/plasteel,
/area/security/brig)
"atF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/spawner/structure/window/reinforced,
@@ -7981,7 +7978,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"atK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -8026,7 +8023,7 @@
/obj/machinery/computer/monitor{
name = "Bridge Power Monitoring Console"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/purple{
@@ -8056,7 +8053,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"atR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/purple{
@@ -8099,7 +8096,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"atW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/yellow,
@@ -8166,7 +8163,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
@@ -8178,7 +8175,7 @@
dir = 1
},
/obj/machinery/light,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/dark,
@@ -8204,7 +8201,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/nuke_storage)
"auf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -8287,7 +8284,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"auo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8296,7 +8293,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"aup" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/grille/broken,
@@ -8307,7 +8304,7 @@
/area/maintenance/department/crew_quarters/dorms)
"auq" = (
/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8451,7 +8448,7 @@
/turf/closed/wall,
/area/crew_quarters/heads/captain)
"auJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -8482,7 +8479,7 @@
/turf/closed/wall/r_wall,
/area/bridge)
"auN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/airalarm{
@@ -8498,7 +8495,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"auO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/purple{
@@ -8510,10 +8507,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"auP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/purple{
@@ -8588,7 +8585,7 @@
/obj/machinery/door/airlock/vault{
req_access_txt = "53"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -8614,7 +8611,7 @@
name = "Gateway Access";
req_access_txt = "62"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -8747,7 +8744,7 @@
/turf/open/floor/plating,
/area/crew_quarters/fitness/recreation)
"avn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -8902,7 +8899,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"avD" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -8917,7 +8914,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"avF" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
@@ -9075,7 +9072,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"avT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -9171,7 +9168,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -9183,7 +9180,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -9196,7 +9193,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -9205,7 +9202,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -9215,10 +9212,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -9407,9 +9404,9 @@
dir = 1;
name = "Fitness Room APC";
areastring = "/area/crew_quarters/fitness/recreation";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
@@ -9418,10 +9415,10 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -9442,7 +9439,7 @@
/turf/open/floor/plasteel/dark,
/area/security/brig)
"awI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -9453,10 +9450,10 @@
/turf/open/floor/plating,
/area/security/brig)
"awJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -9467,10 +9464,10 @@
/turf/open/floor/plating,
/area/security/brig)
"awK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -9490,7 +9487,7 @@
name = "Brig";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -9503,7 +9500,7 @@
/turf/open/floor/plasteel,
/area/security/brig)
"awM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable,
@@ -9600,7 +9597,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/heads/captain)
"awT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -9653,7 +9650,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"awZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -9688,7 +9685,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"axd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -9743,7 +9740,7 @@
/turf/closed/wall/r_wall,
/area/hallway/primary/central)
"axm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -9828,7 +9825,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"axA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9925,7 +9922,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/heads/captain)
"axR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -9941,9 +9938,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Captain's Office APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/carpet,
@@ -9994,7 +9991,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"axY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10082,7 +10079,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"ayh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -10206,7 +10203,7 @@
/obj/structure/chair{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/assistant,
@@ -10231,7 +10228,7 @@
name = "Port Solar Control";
track = 0
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -10243,13 +10240,13 @@
/turf/open/floor/plating,
/area/maintenance/solars/port)
"ayC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Port Solar APC";
- pixel_y = 24
+ pixel_y = 23
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
@@ -10390,7 +10387,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"ayX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
@@ -10400,10 +10397,10 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"ayY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10435,7 +10432,7 @@
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
"azd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -10452,10 +10449,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"aze" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10464,7 +10461,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"azf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -10477,7 +10474,7 @@
/obj/structure/fireaxecabinet{
pixel_y = -32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10489,7 +10486,7 @@
/obj/machinery/light{
light_color = "#e8eaff"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10498,7 +10495,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"azi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/requests_console{
@@ -10514,10 +10511,10 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"azj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/holopad,
@@ -10536,7 +10533,7 @@
c_tag = "Bridge Central";
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10548,7 +10545,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/newscaster{
@@ -10557,7 +10554,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"azm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10569,16 +10566,16 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"azn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/dark,
@@ -10591,7 +10588,7 @@
areastring = "/area/bridge";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/blue,
@@ -10611,7 +10608,7 @@
/area/bridge)
"azq" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -10720,7 +10717,7 @@
/obj/structure/chair{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/camera{
@@ -10761,10 +10758,10 @@
/turf/open/space,
/area/solar/port)
"azL" = (
+/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-4"
},
-/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
"azN" = (
@@ -10773,15 +10770,6 @@
},
/turf/open/floor/plating,
/area/maintenance/solars/port)
-"azP" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/solars/port)
"azQ" = (
/obj/structure/cable{
icon_state = "2-8"
@@ -10789,10 +10777,10 @@
/turf/open/floor/plating,
/area/maintenance/solars/port)
"azR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -10802,7 +10790,7 @@
name = "Port Solar Access";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -10830,9 +10818,9 @@
/obj/machinery/power/apc{
dir = 8;
name = "Fore Primary Hallway APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/red{
@@ -10844,7 +10832,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"aAc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10857,7 +10845,7 @@
/area/hallway/primary/fore)
"aAd" = (
/obj/machinery/light,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -10869,7 +10857,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"aAe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -10990,7 +10978,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"aAu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11023,7 +11011,7 @@
/turf/open/floor/carpet,
/area/crew_quarters/heads/captain)
"aAz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11055,7 +11043,7 @@
name = "AI Upload Access";
req_access_txt = "16"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -11075,7 +11063,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/dark,
@@ -11085,7 +11073,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/button/door{
@@ -11131,7 +11119,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aAK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11181,7 +11169,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/fitness/recreation)
"aAU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -11221,7 +11209,7 @@
},
/area/maintenance/department/security/brig)
"aBc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11286,7 +11274,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"aBl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -11322,7 +11310,7 @@
name = "Bridge";
req_access_txt = "19"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11380,7 +11368,7 @@
/area/ai_monitored/turret_protected/ai_upload)
"aBv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/blue{
@@ -11392,7 +11380,7 @@
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"aBw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -11408,9 +11396,9 @@
dir = 1;
name = "Upload APC";
areastring = "/area/ai_monitored/turret_protected/ai_upload";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -11424,7 +11412,7 @@
/area/ai_monitored/turret_protected/ai_upload)
"aBy" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -11521,7 +11509,7 @@
name = "Central Hall APC";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/disposalpipe/segment,
@@ -11532,7 +11520,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aBJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -11663,7 +11651,7 @@
/obj/machinery/light{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -11674,15 +11662,15 @@
/area/crew_quarters/fitness/recreation)
"aCa" = (
/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/structure/cable{
icon_state = "1-4"
},
/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
/turf/open/space,
/area/solar/port)
"aCc" = (
@@ -11702,7 +11690,7 @@
/turf/open/floor/wood,
/area/lawoffice)
"aCg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11712,7 +11700,7 @@
/area/maintenance/department/security/brig)
"aCh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -11924,7 +11912,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"aCz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
@@ -11932,7 +11920,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"aCA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -11941,7 +11929,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"aCB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -11950,7 +11938,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"aCC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/camera{
@@ -11972,7 +11960,7 @@
/turf/closed/wall/r_wall,
/area/crew_quarters/heads/captain)
"aCE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -12078,7 +12066,7 @@
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
"aCO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -12101,7 +12089,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"aCQ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/head_of_personnel,
@@ -12115,7 +12103,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"aCT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -12124,7 +12112,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"aCU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -12141,7 +12129,7 @@
name = "Head of Personnel";
req_access_txt = "57"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -12153,10 +12141,10 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"aCW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction/flip{
@@ -12168,7 +12156,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aCX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -12182,10 +12170,10 @@
/area/hallway/primary/central)
"aCY" = (
/obj/machinery/holopad,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -12289,7 +12277,7 @@
},
/area/crew_quarters/dorms)
"aDl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -12299,7 +12287,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aDm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -12358,13 +12346,13 @@
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
"aDw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Tool Storage APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -12377,7 +12365,7 @@
},
/area/storage/primary)
"aDx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -12438,7 +12426,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"aDG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -12455,7 +12443,7 @@
name = "Captain's Office";
req_access_txt = "20"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -12467,10 +12455,10 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"aDI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -12541,7 +12529,7 @@
/turf/open/floor/plasteel/dark,
/area/bridge)
"aDP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -12564,7 +12552,7 @@
name = "Head of Personnel";
req_access_txt = "57"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -12573,7 +12561,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hop)
"aDR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -12586,7 +12574,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"aDS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -12598,10 +12586,10 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"aDT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -12613,7 +12601,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"aDU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -12625,7 +12613,7 @@
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
"aDV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -12634,22 +12622,22 @@
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
"aDW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
"aDX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -12663,7 +12651,7 @@
name = "Head of Personnel APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/carpet,
@@ -12672,7 +12660,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aEa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -12737,7 +12725,7 @@
/turf/closed/wall,
/area/maintenance/department/cargo)
"aEk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -12795,7 +12783,7 @@
name = "Detective's Office APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/grimy,
@@ -12834,7 +12822,7 @@
},
/area/storage/primary)
"aEu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -12889,7 +12877,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/captain)
"aEB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -13033,7 +13021,7 @@
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-24"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/wood,
@@ -13058,13 +13046,13 @@
/obj/machinery/computer/card{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
/area/crew_quarters/heads/hop)
"aEQ" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/button/flasher{
id = "hopflash";
pixel_x = 38;
@@ -13123,7 +13111,7 @@
pixel_x = -24
},
/obj/item/storage/toolbox,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/airalarm{
@@ -13215,7 +13203,7 @@
"aFk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/spawner/lootdrop/minor/bowler_or_that,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -13224,7 +13212,7 @@
},
/area/maintenance/department/security/brig)
"aFm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13241,7 +13229,7 @@
dir = 1
},
/obj/effect/landmark/start/detective,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13250,7 +13238,7 @@
/turf/open/floor/carpet,
/area/security/detectives_office)
"aFp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13288,7 +13276,7 @@
},
/area/storage/primary)
"aFt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -13343,7 +13331,7 @@
},
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -13382,7 +13370,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aFE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -13398,7 +13386,7 @@
name = "Starboard Emergency Storage APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -13410,7 +13398,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
"aFH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13419,7 +13407,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
"aFI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13428,7 +13416,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
"aFJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -13439,7 +13427,7 @@
name = "Unisex Showers";
req_access_txt = "0"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13448,7 +13436,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
"aFL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light{
@@ -13463,7 +13451,7 @@
/obj/machinery/shower{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13507,13 +13495,13 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aFU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -13530,7 +13518,7 @@
name = "Detective Maintenance";
req_access_txt = "4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13542,7 +13530,7 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"aFW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13570,7 +13558,7 @@
/turf/open/floor/carpet,
/area/security/detectives_office)
"aGa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/grimy,
@@ -13768,7 +13756,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aGv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/bot,
@@ -13801,7 +13789,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aGA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -13831,7 +13819,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
"aGG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -13857,7 +13845,7 @@
/obj/machinery/shower{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -13918,7 +13906,7 @@
/obj/machinery/door/airlock/public/glass{
name = "Primary Tool Storage"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -13973,7 +13961,7 @@
name = "bridge blast door"
},
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -14026,7 +14014,7 @@
/area/bridge)
"aHf" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -14072,17 +14060,17 @@
"aHi" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/hallway/primary/central)
"aHj" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -14090,7 +14078,7 @@
"aHk" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -14104,7 +14092,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -14117,14 +14105,14 @@
req_access_txt = "0"
},
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/storage/emergency/starboard)
"aHo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light{
@@ -14180,13 +14168,13 @@
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
"aHC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/junction{
@@ -14227,7 +14215,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14351,7 +14339,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/junction,
@@ -14394,7 +14382,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14406,7 +14394,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aHY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14482,7 +14470,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -14521,7 +14509,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"aIi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14547,10 +14535,10 @@
/obj/machinery/power/apc{
dir = 4;
name = "Dormitory Bathrooms APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -14590,14 +14578,14 @@
req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"aIH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -14621,46 +14609,46 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -14669,10 +14657,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -14682,10 +14670,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -14694,35 +14682,35 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/observer_start,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aIY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -14750,10 +14738,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -14763,7 +14751,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -14776,7 +14764,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -14790,30 +14778,30 @@
/obj/machinery/door/airlock/public/glass{
name = "Dormitory"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14822,7 +14810,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJk" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14835,7 +14823,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -14845,7 +14833,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14860,7 +14848,7 @@
name = "Unisex Restrooms";
req_access_txt = "0"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14869,7 +14857,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/restrooms)
"aJo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -14882,7 +14870,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aJq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -14900,7 +14888,7 @@
},
/area/maintenance/department/cargo)
"aJr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -14914,7 +14902,7 @@
},
/area/maintenance/department/cargo)
"aJs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -14926,7 +14914,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aJt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -14941,10 +14929,10 @@
},
/area/maintenance/department/cargo)
"aJv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -14991,9 +14979,9 @@
dir = 1;
name = "Departure Lounge APC";
areastring = "/area/hallway/secondary/exit/departure_lounge";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -15042,7 +15030,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -15056,7 +15044,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -15121,7 +15109,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -15195,7 +15183,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aJY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -15279,13 +15267,13 @@
dir = 6
},
/obj/effect/decal/cleanable/oil,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aKn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -15343,7 +15331,7 @@
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
"aKD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -15360,7 +15348,7 @@
},
/area/hallway/secondary/exit/departure_lounge)
"aKE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -15371,7 +15359,7 @@
},
/area/hallway/secondary/exit/departure_lounge)
"aKG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/red{
@@ -15411,7 +15399,7 @@
/obj/machinery/door/airlock/public/glass{
name = "Art Storage"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -15431,7 +15419,7 @@
/obj/machinery/door/airlock/public/glass{
name = "Cafeteria"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -15448,7 +15436,7 @@
id_tag = "Potty1";
name = "Unisex Restrooms"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -15466,7 +15454,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -15507,7 +15495,7 @@
/area/storage/eva)
"aLc" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -15536,7 +15524,7 @@
req_access_txt = "31"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -15547,7 +15535,7 @@
/area/maintenance/department/cargo)
"aLj" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -15623,7 +15611,7 @@
/turf/open/floor/plasteel,
/area/storage/art)
"aLy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -15675,7 +15663,7 @@
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/cafeteria)
"aLC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -15704,7 +15692,7 @@
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet/auxiliary)
"aLF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -15714,7 +15702,7 @@
/obj/structure/urinal{
pixel_y = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/button/door{
@@ -15799,9 +15787,9 @@
/obj/machinery/power/apc{
dir = 8;
name = "Teleporter APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/airalarm{
@@ -15813,26 +15801,26 @@
/turf/open/floor/plasteel,
/area/teleporter)
"aLX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/teleporter)
"aLY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/teleporter)
"aLZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -16017,7 +16005,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -16028,7 +16016,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -16039,7 +16027,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -16056,7 +16044,7 @@
/obj/structure/sign/poster/official/random{
pixel_y = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -16074,7 +16062,7 @@
c_tag = "Cargo Warehouse";
dir = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -16085,7 +16073,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -16099,10 +16087,10 @@
dir = 4;
name = "Cargo Warehouse APC";
areastring = "/area/quartermaster/warehouse";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -16115,7 +16103,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aMx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -16127,7 +16115,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aMy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -16152,7 +16140,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aMB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -16164,7 +16152,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aMC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -16277,7 +16265,7 @@
/turf/open/floor/plasteel,
/area/storage/art)
"aMW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -16298,7 +16286,7 @@
"aMX" = (
/obj/structure/table,
/obj/item/airlock_painter,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
@@ -16347,7 +16335,7 @@
/obj/machinery/power/apc{
dir = 2;
name = "Cafeteria APC";
- pixel_y = -24
+ pixel_y = -23
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/cafeteria)
@@ -16374,7 +16362,7 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 2;
name = "Auxiliary Restrooms APC";
- pixel_y = -24
+ pixel_y = -23
},
/obj/item/soap/nanotrasen,
/obj/machinery/shower{
@@ -16403,7 +16391,7 @@
/obj/item/crowbar,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating{
@@ -16411,7 +16399,7 @@
},
/area/maintenance/department/crew_quarters/bar)
"aNj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -16484,7 +16472,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"aNv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/corner{
@@ -16558,7 +16546,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
"aNE" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/depsec/supply,
@@ -16644,7 +16632,7 @@
/obj/structure/sign/poster/official/random{
pixel_x = -32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -16667,7 +16655,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/warehouse)
"aNR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -16784,7 +16772,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"aOm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -16870,10 +16858,10 @@
},
/area/maintenance/department/crew_quarters/bar)
"aOx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -16883,7 +16871,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aOy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16892,7 +16880,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aOz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16901,7 +16889,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aOA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/spawner/lootdrop/maintenance,
@@ -16964,7 +16952,7 @@
/area/teleporter)
"aOF" = (
/obj/structure/chair/stool,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -16977,7 +16965,7 @@
/area/teleporter)
"aOG" = (
/obj/structure/chair/stool,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -16987,7 +16975,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"aOH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -16997,7 +16985,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"aOI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17015,7 +17003,7 @@
id = "teleshutter";
name = "Teleporter Shutters"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17025,7 +17013,7 @@
/turf/open/floor/plasteel,
/area/teleporter)
"aOK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17038,10 +17026,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aOL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
@@ -17051,7 +17039,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aOM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -17064,13 +17052,13 @@
/area/hallway/primary/central)
"aON" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/security/checkpoint/supply)
"aOO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/table,
@@ -17168,7 +17156,7 @@
"aOY" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -17325,9 +17313,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Bar Maintenance APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -17341,7 +17329,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aPG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -17456,7 +17444,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Security Post - Cargo APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/closet/secure_closet/security/cargo,
/obj/effect/turf_decal/tile/red{
@@ -17536,7 +17524,7 @@
req_access_txt = "31"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -17712,7 +17700,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aQF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17721,7 +17709,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aQG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17730,10 +17718,10 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aQH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -17747,7 +17735,7 @@
},
/area/maintenance/department/crew_quarters/bar)
"aQI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -17761,7 +17749,7 @@
"aQJ" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -17773,7 +17761,7 @@
/area/maintenance/department/crew_quarters/bar)
"aQK" = (
/obj/structure/grille,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -17783,7 +17771,7 @@
/area/maintenance/department/crew_quarters/bar)
"aQL" = (
/obj/structure/grille/broken,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -17793,7 +17781,7 @@
/area/maintenance/department/crew_quarters/bar)
"aQM" = (
/obj/item/reagent_containers/glass/bucket,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -17802,7 +17790,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aQN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -17811,13 +17799,13 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aQO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17826,7 +17814,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aQP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -17838,10 +17826,10 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aQQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -17858,7 +17846,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17903,7 +17891,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aQX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/broken_bottle,
@@ -17924,18 +17912,18 @@
/obj/item/stack/sheet/metal/fifty,
/obj/item/stack/sheet/metal/fifty,
/obj/item/crowbar,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 2;
name = "EVA Storage APC";
- pixel_y = -24
+ pixel_y = -23
},
/turf/open/floor/plasteel,
/area/storage/eva)
"aRa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -18038,9 +18026,9 @@
/obj/machinery/power/apc/highcap/fifteen_k{
dir = 4;
name = "Delivery Office APC";
- pixel_x = 28
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -18060,7 +18048,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -18268,14 +18256,14 @@
/turf/open/floor/plasteel/dark,
/area/hallway/primary/central)
"aRJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aRK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -18289,7 +18277,7 @@
name = "Hydroponics Maintenance";
req_access_txt = "35"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -18300,7 +18288,7 @@
/turf/closed/wall,
/area/crew_quarters/kitchen)
"aRO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -18327,7 +18315,7 @@
/turf/open/floor/wood,
/area/crew_quarters/bar)
"aRR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/chair/wood/normal{
@@ -18339,7 +18327,7 @@
},
/area/crew_quarters/bar)
"aRS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -18348,7 +18336,7 @@
/turf/open/floor/wood,
/area/crew_quarters/bar)
"aRT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -18361,7 +18349,7 @@
name = "Bar Storage Maintenance";
req_access_txt = "25"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -18370,7 +18358,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aRV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -18379,10 +18367,10 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aRW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/chair,
@@ -18394,7 +18382,7 @@
name = "EVA Maintenance";
req_access_txt = "18"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -18472,7 +18460,7 @@
"aSh" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -18488,7 +18476,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -18512,7 +18500,7 @@
name = "Cargo Maintenance APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/disposalpipe/segment,
@@ -18532,14 +18520,14 @@
name = "Disposal APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/disposal)
"aSu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -18577,7 +18565,7 @@
/turf/open/floor/grass,
/area/hallway/secondary/exit/departure_lounge)
"aSz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -18592,7 +18580,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"aSB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -18641,7 +18629,7 @@
req_access_txt = "28"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -18706,7 +18694,7 @@
},
/area/crew_quarters/bar)
"aSO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -18733,7 +18721,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aSS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -18742,10 +18730,10 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aST" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -18754,7 +18742,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aSV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -18857,7 +18845,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -18874,7 +18862,7 @@
departmentType = 2;
pixel_y = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -18889,7 +18877,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -18961,16 +18949,16 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"aTu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aTv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -18979,10 +18967,10 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aTw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction/yjunction{
@@ -18994,7 +18982,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aTx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -19010,7 +18998,7 @@
name = "Disposal Access";
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -19022,7 +19010,7 @@
/turf/open/floor/plating,
/area/maintenance/disposal)
"aTz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -19034,7 +19022,7 @@
/turf/open/floor/plating,
/area/maintenance/disposal)
"aTA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -19046,7 +19034,7 @@
/turf/open/floor/plating,
/area/maintenance/disposal)
"aTB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -19058,7 +19046,7 @@
/turf/open/floor/plating,
/area/maintenance/disposal)
"aTC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/solar{
@@ -19078,7 +19066,7 @@
/turf/open/space,
/area/solar/starboard)
"aTE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/solar{
@@ -19164,7 +19152,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"aTR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -19222,7 +19210,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
"aTY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -19268,7 +19256,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/department/crew_quarters/bar)
"aUd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -19465,7 +19453,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aUC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -19474,20 +19462,20 @@
/area/maintenance/department/cargo)
"aUD" = (
/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/structure/cable{
icon_state = "2-8"
},
/obj/structure/cable{
icon_state = "2-4"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
/turf/open/space,
/area/solar/starboard)
"aUG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -19505,7 +19493,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -19520,7 +19508,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -19531,7 +19519,7 @@
},
/area/hallway/primary/central)
"aUK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -19540,10 +19528,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aUL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment,
@@ -19553,7 +19541,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aUM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -19564,7 +19552,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aUN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -19576,7 +19564,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aUO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -19586,7 +19574,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/bar)
"aUP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -19632,7 +19620,7 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"aUT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/vending/wardrobe/hydro_wardrobe,
@@ -19643,7 +19631,7 @@
name = "Hydroponics APC";
pixel_y = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
@@ -19661,7 +19649,7 @@
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
"aUY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/showroomfloor,
@@ -19708,7 +19696,7 @@
name = "Bar Storage";
req_access_txt = "25"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -19836,7 +19824,7 @@
name = "Theatre Maintenance";
req_access_txt = "46"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -19994,7 +19982,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aVE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -20144,7 +20132,7 @@
/obj/machinery/power/apc{
dir = 2;
name = "Kitchen APC";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/turf/open/floor/plasteel/showroomfloor,
@@ -20190,14 +20178,14 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/bar)
"aWe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/crew_quarters/bar)
"aWf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/requests_console{
@@ -20216,7 +20204,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/bar)
"aWg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -20228,7 +20216,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/item/radio/intercom{
@@ -20263,7 +20251,7 @@
name = "Theatre APC";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/red{
@@ -20279,7 +20267,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/theatre)
"aWo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/start/mime,
@@ -20299,7 +20287,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/theatre)
"aWp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20321,7 +20309,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -20343,7 +20331,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/theatre)
"aWr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
@@ -20667,7 +20655,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Bar APC";
- pixel_x = 27
+ pixel_x = 24
},
/obj/structure/cable,
/turf/open/floor/plasteel/dark,
@@ -21160,7 +21148,7 @@
/obj/machinery/door/airlock{
name = "Service Access";
req_access_txt = "0";
- req_one_access_txt = "25; 26; 28; 35"
+ req_one_access_txt = "22;25;26;28;35;37;38;46"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -21316,7 +21304,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aYo" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -21329,7 +21317,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"aYp" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/cargo_technician,
@@ -21899,7 +21887,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"aZv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -21911,7 +21899,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"aZw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -22037,7 +22025,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"aZJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22054,7 +22042,7 @@
name = "Security Checkpoint";
req_access_txt = "1"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22073,7 +22061,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"aZL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -22083,10 +22071,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"aZM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
@@ -22124,9 +22112,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Custodial Closet APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -22359,7 +22347,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"bav" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
@@ -22367,12 +22355,12 @@
name = "Cargo Office APC";
areastring = "/area/quartermaster/office";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
"baw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -22390,7 +22378,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/office)
"baA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment,
@@ -22400,7 +22388,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"baB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22415,18 +22403,18 @@
/obj/machinery/power/apc{
dir = 2;
name = "Cargo Bay APC";
- pixel_y = -24
+ pixel_y = -23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"baD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light,
@@ -22439,7 +22427,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/storage)
"baE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -22468,7 +22456,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard)
"baI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/solar{
@@ -22557,7 +22545,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"baS" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/tile/red,
@@ -22582,7 +22570,7 @@
dir = 2;
name = "Security Checkpoint APC";
pixel_x = 1;
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/effect/turf_decal/tile/red,
@@ -22595,7 +22583,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"baV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -22634,7 +22622,7 @@
pixel_x = -25;
req_access_txt = "26"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/dirt,
@@ -22644,7 +22632,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -22657,7 +22645,7 @@
departmentType = 1;
pixel_x = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -22851,7 +22839,7 @@
name = "Cargo Office Maintenance";
req_access_txt = "50"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -22891,7 +22879,7 @@
name = "Quartermaster";
req_access_txt = "41"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -22912,7 +22900,7 @@
/area/quartermaster/miningdock)
"bbJ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -22934,7 +22922,7 @@
/area/quartermaster/miningdock)
"bbL" = (
/obj/machinery/power/smes,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -22943,18 +22931,15 @@
/obj/machinery/power/terminal{
dir = 8
},
-/obj/structure/cable{
- icon_state = "0-2"
- },
/obj/machinery/light/small{
dir = 1
},
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/starboard)
"bbO" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
@@ -22962,6 +22947,9 @@
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/starboard)
"bbP" = (
@@ -23028,7 +23016,7 @@
"bbX" = (
/obj/structure/janitorialcart,
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -23247,7 +23235,7 @@
},
/area/maintenance/department/cargo)
"bcz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -23273,7 +23261,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"bcB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -23322,7 +23310,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bcE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -23361,10 +23349,10 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bcH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -23372,13 +23360,13 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bcI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bcJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
@@ -23388,10 +23376,10 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard)
"bcK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -23516,7 +23504,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -23649,7 +23637,7 @@
},
/area/maintenance/department/cargo)
"bdB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -23658,7 +23646,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bdC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -23667,7 +23655,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bdD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -23679,7 +23667,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bdE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -23688,14 +23676,14 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bdF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Quartermaster APC";
areastring = "/area/quartermaster/qm";
- pixel_x = -24
+ pixel_x = -25
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
@@ -23709,7 +23697,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"bdG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -23738,11 +23726,11 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bdK" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/shaft_miner,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -23768,7 +23756,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bdQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -23782,12 +23770,12 @@
},
/area/maintenance/department/cargo)
"bdR" = (
-/obj/structure/cable,
/obj/machinery/power/apc{
dir = 8;
name = "Starboard Solar APC";
- pixel_x = -24
+ pixel_x = -25
},
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/maintenance/solars/starboard)
"bdS" = (
@@ -23854,7 +23842,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bec" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -24198,7 +24186,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/qm)
"beK" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/landmark/start/quartermaster,
@@ -24222,7 +24210,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"beN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -24242,7 +24230,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"beR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/spawner/lootdrop/maintenance,
@@ -24256,15 +24244,15 @@
/area/maintenance/department/cargo)
"beU" = (
/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/obj/structure/cable{
icon_state = "1-4"
},
/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
/turf/open/space,
/area/solar/starboard)
"beY" = (
@@ -24305,14 +24293,14 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"bfc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"bfd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -24325,7 +24313,7 @@
/obj/machinery/door/airlock/public/glass{
name = "Central Access"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -24335,7 +24323,7 @@
/area/hallway/secondary/entry)
"bff" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -24344,7 +24332,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bfg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -24353,10 +24341,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bfh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
@@ -24368,7 +24356,7 @@
name = "Custodial Closet";
req_access_txt = "26"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -24482,9 +24470,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Mech Bay APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/dark,
@@ -24500,7 +24488,7 @@
/area/science/robotics/mechbay)
"bfy" = (
/obj/machinery/mech_bay_recharge_port,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/status_display/evac{
@@ -24513,7 +24501,7 @@
/area/science/robotics/mechbay)
"bfA" = (
/obj/machinery/computer/mech_bay_power_console,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/dark,
@@ -24604,7 +24592,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bfF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/landmark/start/shaft_miner,
@@ -24689,7 +24677,7 @@
/obj/machinery/door/airlock/public/glass{
name = "Lounge"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -24734,7 +24722,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bgg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -24956,7 +24944,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"bgF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/corner{
@@ -24971,7 +24959,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"bgH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/circuit/green,
@@ -24980,7 +24968,7 @@
/turf/open/floor/circuit/green,
/area/science/robotics/mechbay)
"bgJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light{
@@ -24993,13 +24981,13 @@
/turf/open/floor/circuit/green,
/area/science/robotics/mechbay)
"bgK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 8;
name = "Mining Dock APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/effect/turf_decal/tile/brown{
dir = 1
@@ -25007,7 +24995,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bgL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -25041,7 +25029,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/lounge)
"bgW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -25069,10 +25057,10 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/lounge)
"bgZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -25082,7 +25070,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bha" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -25094,7 +25082,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bhb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25106,7 +25094,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bhc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -25193,10 +25181,10 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"bhl" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -25208,7 +25196,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"bhm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -25223,13 +25211,13 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"bhn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -25238,7 +25226,7 @@
/turf/open/floor/circuit,
/area/science/robotics/mechbay)
"bho" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -25251,7 +25239,7 @@
name = "Mech Bay Maintenance";
req_access_txt = "29"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -25260,10 +25248,10 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bhq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -25276,7 +25264,7 @@
name = "Mining Maintenance";
req_access_txt = "48"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -25288,10 +25276,10 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"bhs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -25311,7 +25299,7 @@
/area/quartermaster/miningdock)
"bht" = (
/obj/structure/closet/secure_closet/miner,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -25350,7 +25338,7 @@
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"bhz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -25365,7 +25353,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -25391,7 +25379,7 @@
/turf/open/floor/carpet,
/area/crew_quarters/lounge)
"bhH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -25417,7 +25405,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"bhK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -25490,7 +25478,7 @@
/turf/open/floor/plasteel,
/area/science/robotics/mechbay)
"bhS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -25527,13 +25515,13 @@
/area/crew_quarters/lounge)
"bic" = (
/obj/effect/landmark/start/assistant,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/carpet,
/area/crew_quarters/lounge)
"bid" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/carpet,
@@ -25542,7 +25530,7 @@
/obj/structure/chair/comfy/beige{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/grimy,
@@ -25692,7 +25680,7 @@
/turf/open/floor/plasteel/dark,
/area/science/robotics/mechbay)
"bix" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/robot_debris{
@@ -25701,7 +25689,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"biy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small{
@@ -25710,10 +25698,10 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"biz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -25725,7 +25713,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"biC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -25749,7 +25737,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -25809,7 +25797,7 @@
dir = 2;
name = "Lounge APC";
areastring = "/area/crew_quarters/lounge";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/turf/open/floor/plasteel/grimy,
@@ -25841,7 +25829,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/sign/departments/examroom{
@@ -25970,7 +25958,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/purple,
@@ -26049,7 +26037,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -26059,7 +26047,7 @@
/turf/open/floor/circuit/telecomms,
/area/science/xenobiology)
"bjD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -26071,7 +26059,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -26080,7 +26068,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -26142,7 +26130,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
@@ -26152,9 +26140,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Morgue APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -26361,11 +26349,7 @@
/turf/open/floor/plasteel/dark,
/area/hallway/primary/aft)
"bks" = (
-/obj/structure/table,
-/obj/item/wrench,
-/obj/item/stack/cable_coil,
-/obj/item/electronics/apc,
-/obj/item/electronics/airlock,
+/obj/machinery/vending/modularpc,
/turf/open/floor/plasteel/dark,
/area/hallway/primary/aft)
"bkt" = (
@@ -26397,7 +26381,7 @@
/turf/open/floor/plating,
/area/science/robotics/lab)
"bkw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -26513,7 +26497,7 @@
"bkY" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/freezer,
@@ -26531,9 +26515,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Port Emergency Storage APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/freezer,
@@ -26566,7 +26550,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/morgue)
"blf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -26890,10 +26874,10 @@
dir = 2;
sortType = 14
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -26912,9 +26896,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Robotics Lab APC";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/green{
@@ -27019,7 +27003,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"bmd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating{
@@ -27027,7 +27011,7 @@
},
/area/maintenance/department/engine)
"bme" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/spawner/lootdrop/maintenance,
@@ -27036,13 +27020,13 @@
},
/area/maintenance/department/engine)
"bmf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bmg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
@@ -27053,7 +27037,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bmh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/freezer,
@@ -27065,10 +27049,10 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/freezer,
@@ -27078,10 +27062,10 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/freezer,
@@ -27135,7 +27119,7 @@
areastring = "/area/security/checkpoint/medical";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/camera{
@@ -27154,7 +27138,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"bmt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -27311,7 +27295,7 @@
/area/science/robotics/lab)
"bmP" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -27481,7 +27465,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"bnu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating{
@@ -27498,7 +27482,7 @@
req_access_txt = "0";
req_one_access_txt = "5;9"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -27563,7 +27547,7 @@
name = "Medbay Security Post";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -27640,6 +27624,15 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
+"bnK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"bnL" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -27704,7 +27697,7 @@
/area/science/robotics/lab)
"bnR" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -27846,7 +27839,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"boq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -27893,7 +27886,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"box" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -27977,7 +27970,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"boF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28367,7 +28360,7 @@
/area/hallway/secondary/entry)
"bpu" = (
/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -28419,7 +28412,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bpA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -28455,7 +28448,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"bpE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -28464,7 +28457,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"bpF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -28481,7 +28474,7 @@
opacity = 1;
req_access_txt = "6"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28490,7 +28483,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/morgue)
"bpH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28499,14 +28492,14 @@
/turf/open/floor/plasteel/dark,
/area/medical/morgue)
"bpI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/dark,
/area/medical/morgue)
"bpJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light{
@@ -28519,10 +28512,10 @@
/turf/open/floor/plasteel/dark,
/area/medical/morgue)
"bpK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28539,7 +28532,7 @@
/area/engine/engineering)
"bpM" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/grunge{
@@ -28556,10 +28549,10 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -28571,7 +28564,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bpO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -28762,7 +28755,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -28771,7 +28764,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -28780,7 +28773,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -28805,13 +28798,13 @@
name = "Server Room APC";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/dark,
/area/science/server)
"bqm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -28992,7 +28985,7 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
@@ -29010,7 +29003,7 @@
id = "xenobio5";
name = "containment blast door"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -29021,10 +29014,10 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/engine,
@@ -29035,7 +29028,7 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
@@ -29053,7 +29046,7 @@
id = "xenobio6";
name = "containment blast door"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -29064,10 +29057,10 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/engine,
@@ -29077,7 +29070,7 @@
req_access_txt = "0";
req_one_access_txt = "12; 55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29091,7 +29084,7 @@
areastring = "/area/hallway/secondary/entry";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -29145,10 +29138,10 @@
/area/medical/genetics)
"bqX" = (
/obj/machinery/holopad,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -29158,7 +29151,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bqY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -29168,7 +29161,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bqZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -29187,7 +29180,7 @@
/obj/effect/mapping_helpers/airlock/unres{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -29200,7 +29193,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -29212,13 +29205,13 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"brc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -29235,7 +29228,7 @@
name = "Medbay APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/light{
@@ -29254,7 +29247,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Medbay APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -29479,7 +29472,7 @@
/turf/open/floor/plasteel/dark,
/area/science/robotics/lab)
"brx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -29566,14 +29559,14 @@
/turf/open/floor/plasteel/dark,
/area/science/server)
"brE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/science/server)
"brF" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/dark,
@@ -29712,7 +29705,7 @@
dir = 8;
layer = 2.9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -29743,7 +29736,7 @@
dir = 8;
layer = 2.9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -29777,7 +29770,7 @@
/turf/open/floor/plating,
/area/hallway/secondary/entry)
"bsm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/camera{
@@ -29843,7 +29836,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bst" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -29883,7 +29876,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"bsy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -30087,9 +30080,9 @@
/obj/machinery/power/apc{
dir = 4;
name = "Research Lab APC";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/white,
@@ -30134,7 +30127,7 @@
/turf/open/floor/plasteel/dark,
/area/science/robotics/lab)
"bsX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -30225,7 +30218,7 @@
name = "Server Room";
req_access_txt = "30"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -30344,7 +30337,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"btx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30376,7 +30369,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"btB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -30389,29 +30382,29 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"btF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/landmark/blobstart,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -30456,7 +30449,7 @@
/turf/open/floor/plating,
/area/hallway/secondary/entry)
"btN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
@@ -30466,7 +30459,7 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
"btO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
@@ -30478,7 +30471,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"btP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -30490,10 +30483,10 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -30534,7 +30527,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"btW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -30706,7 +30699,7 @@
/turf/open/floor/plasteel,
/area/science/lab)
"bus" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/camera{
@@ -30750,7 +30743,7 @@
/area/hallway/primary/aft)
"buv" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -30778,7 +30771,7 @@
/area/science/explab)
"bux" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -30897,7 +30890,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -30909,7 +30902,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -30921,7 +30914,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -30930,13 +30923,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -30945,7 +30938,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -30972,7 +30965,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/purple,
@@ -30986,7 +30979,7 @@
/area/maintenance/department/engine)
"bvb" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -30999,7 +30992,7 @@
name = "Genetics";
req_access_txt = "9"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -31036,19 +31029,19 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"bvg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"bvh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/junction/flip{
@@ -31061,7 +31054,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
@@ -31070,7 +31063,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
@@ -31080,7 +31073,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
@@ -31179,7 +31172,7 @@
/turf/open/floor/plasteel,
/area/science/lab)
"bvz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -31227,7 +31220,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -31316,9 +31309,9 @@
/obj/machinery/power/apc/highcap/ten_k{
dir = 1;
name = "Research Division APC";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -31344,7 +31337,7 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bvN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -31506,7 +31499,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"bwf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -31539,7 +31532,7 @@
dir = 1
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -31569,7 +31562,7 @@
/area/maintenance/department/engine)
"bwt" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating{
@@ -31622,7 +31615,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bwy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -31684,7 +31677,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"bwC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -31863,7 +31856,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -31876,7 +31869,7 @@
/turf/open/floor/plasteel/white,
/area/science/lab)
"bxe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -31890,7 +31883,7 @@
/turf/open/floor/plasteel/white,
/area/science/lab)
"bxf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -31905,10 +31898,10 @@
/turf/open/floor/plasteel/white,
/area/science/lab)
"bxg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -31921,7 +31914,7 @@
/area/science/lab)
"bxh" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -31939,7 +31932,7 @@
/turf/open/floor/plasteel,
/area/science/lab)
"bxi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -31957,7 +31950,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bxj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/holopad,
@@ -31969,7 +31962,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bxm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -31982,13 +31975,13 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bxn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -31998,7 +31991,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -32017,7 +32010,7 @@
name = "research shutters"
},
/obj/machinery/door/firedoor/heavy,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/delivery,
@@ -32034,7 +32027,7 @@
name = "Research Division Access";
req_access_txt = "47"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -32043,7 +32036,7 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bxr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -32053,7 +32046,7 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bxs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -32072,7 +32065,7 @@
name = "Research Division Access";
req_access_txt = "47"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -32081,10 +32074,10 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bxu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -32094,7 +32087,7 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bxv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -32106,11 +32099,11 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bxw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -32122,7 +32115,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -32131,7 +32124,7 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bxy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -32141,7 +32134,7 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bxz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -32151,7 +32144,7 @@
/area/science/explab)
"bxA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -32265,7 +32258,7 @@
dir = 8;
layer = 2.9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -32302,7 +32295,7 @@
dir = 8;
layer = 2.9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -32335,7 +32328,7 @@
dir = 8;
layer = 2.9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -32373,7 +32366,7 @@
/area/maintenance/department/engine)
"byc" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating{
@@ -32426,7 +32419,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"byi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -32476,7 +32469,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"bym" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -32534,7 +32527,7 @@
id = "cmoshutters";
name = "Privacy shutters"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -32544,9 +32537,9 @@
/obj/machinery/power/apc{
dir = 8;
name = "Chemistry APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -32560,7 +32553,7 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"byx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -32612,7 +32605,7 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -32624,7 +32617,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -32644,11 +32637,11 @@
/area/science/lab)
"byG" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/purple,
@@ -32720,7 +32713,7 @@
/area/hallway/primary/aft)
"byM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/navbeacon{
@@ -32881,7 +32874,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -32983,7 +32976,7 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
@@ -33001,7 +32994,7 @@
name = "Containment Pen #1";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -33012,7 +33005,7 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable,
@@ -33024,7 +33017,7 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
@@ -33037,7 +33030,7 @@
},
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/engine,
@@ -33048,7 +33041,7 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
@@ -33066,7 +33059,7 @@
name = "Containment Pen #3";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
@@ -33077,7 +33070,7 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/cable,
@@ -33120,7 +33113,7 @@
"bzD" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light/small{
@@ -33170,7 +33163,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bzJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -33209,7 +33202,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"bzN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/green,
@@ -33229,9 +33222,6 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"bzP" = (
-/obj/machinery/sleeper{
- dir = 4
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -33252,6 +33242,7 @@
network = list("ss13","medbay");
dir = 4
},
+/obj/machinery/stasis,
/turf/open/floor/plasteel,
/area/medical/sleeper)
"bzQ" = (
@@ -33327,7 +33318,7 @@
/area/crew_quarters/heads/cmo)
"bzZ" = (
/obj/machinery/suit_storage_unit/cmo,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -33360,7 +33351,7 @@
/area/crew_quarters/heads/cmo)
"bAb" = (
/obj/machinery/computer/med_data,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -33397,7 +33388,7 @@
pixel_x = 38;
req_access_txt = "40"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -33423,7 +33414,7 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"bAf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -33499,7 +33490,7 @@
req_one_access_txt = "7;29"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -33511,13 +33502,13 @@
id = "rdprivacy";
name = "Privacy shutters"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/crew_quarters/heads/hor)
"bAp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -33527,10 +33518,10 @@
req_one_access_txt = "0"
},
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -33548,10 +33539,10 @@
id = "rdprivacy";
name = "Privacy shutters"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -33563,10 +33554,10 @@
id = "rdprivacy";
name = "Privacy shutters"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -33591,7 +33582,7 @@
/area/hallway/primary/aft)
"bAw" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -33634,7 +33625,7 @@
/area/science/explab)
"bAD" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -33688,7 +33679,7 @@
/area/hallway/secondary/entry)
"bAM" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/extinguisher,
@@ -33749,7 +33740,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bAT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -33792,7 +33783,7 @@
name = "Virology Exterior Airlock";
req_access_txt = "39"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/doorButtons/access_button{
@@ -33857,13 +33848,13 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay/central)
"bBg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/blue{
@@ -33875,7 +33866,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/cmo)
"bBh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -33895,10 +33886,10 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/blue{
@@ -33913,7 +33904,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -33934,10 +33925,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/computer/security/telescreen/cmo{
@@ -33957,7 +33948,7 @@
name = "Chemistry Lab Maintenance";
req_access_txt = "5; 33"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -33984,7 +33975,7 @@
name = "RD Office APC";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/purple{
@@ -33996,7 +33987,7 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/heads/hor)
"bBr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -34100,7 +34091,7 @@
/area/security/checkpoint/science)
"bBz" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -34180,7 +34171,7 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bBI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -34247,13 +34238,13 @@
/turf/open/floor/plasteel/dark,
/area/science/mixing)
"bBQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Toxins Lab APC";
- pixel_y = 25
+ pixel_y = 23
},
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -34392,7 +34383,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bCc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/purple{
@@ -34401,7 +34392,7 @@
/turf/open/floor/plasteel/white,
/area/medical/genetics)
"bCd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
@@ -34410,9 +34401,9 @@
/obj/machinery/power/apc{
dir = 4;
name = "Genetics APC";
- pixel_x = 27
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/purple,
@@ -34434,7 +34425,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bCg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34477,9 +34468,6 @@
/turf/open/floor/plasteel,
/area/medical/sleeper)
"bCj" = (
-/obj/machinery/sleeper{
- dir = 4
- },
/obj/effect/turf_decal/tile/blue{
dir = 1
},
@@ -34490,6 +34478,7 @@
/obj/effect/turf_decal/tile/blue{
dir = 8
},
+/obj/machinery/stasis,
/turf/open/floor/plasteel,
/area/medical/sleeper)
"bCl" = (
@@ -34574,7 +34563,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -34636,7 +34625,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/cmo)
"bCv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -34646,7 +34635,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/blue{
@@ -34662,7 +34651,7 @@
name = "CMO Maintenance";
req_access_txt = "40"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -34674,7 +34663,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bCx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -34689,10 +34678,10 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bCy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -34703,7 +34692,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bCz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -34715,7 +34704,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bCA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small{
@@ -34730,7 +34719,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bCB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -34739,7 +34728,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -34753,7 +34742,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -34812,7 +34801,7 @@
id = "rdprivacy";
name = "Privacy shutters"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -34825,7 +34814,7 @@
network = list("ss13","rd")
},
/obj/item/book/manual/wiki/security_space_law,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -34839,10 +34828,10 @@
/area/security/checkpoint/science)
"bCL" = (
/obj/effect/landmark/start/depsec/science,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -34904,7 +34893,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -34927,7 +34916,7 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bDa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -35022,7 +35011,7 @@
"bDj" = (
/obj/item/trash/candy,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -35077,7 +35066,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bDp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -35113,7 +35102,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/blue{
@@ -35168,7 +35157,7 @@
dir = 4;
name = "CMO's Office APC";
areastring = "/area/crew_quarters/heads/cmo";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable,
/obj/effect/turf_decal/tile/blue{
@@ -35183,7 +35172,7 @@
/turf/closed/wall,
/area/medical/exam_room)
"bDz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -35245,7 +35234,7 @@
/obj/machinery/recharger{
pixel_y = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -35258,10 +35247,10 @@
/area/security/checkpoint/science)
"bDH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -35326,14 +35315,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/engine,
/area/science/storage)
"bDQ" = (
/obj/machinery/door/firedoor/heavy,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -35349,7 +35338,7 @@
/turf/open/floor/plasteel/dark,
/area/science/storage)
"bDR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -35364,13 +35353,13 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bDS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -35379,7 +35368,7 @@
/turf/open/floor/plasteel/dark,
/area/science/explab)
"bDT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -35398,7 +35387,7 @@
name = "Toxins Lab";
req_access_txt = "8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -35423,7 +35412,7 @@
/turf/open/floor/plasteel/dark,
/area/science/mixing)
"bDV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -35435,7 +35424,7 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bDW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -35444,13 +35433,13 @@
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bDX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
/area/science/mixing)
"bDY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -35460,10 +35449,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/white,
@@ -35587,7 +35576,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bEo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -35596,14 +35585,14 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bEp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bEq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -35626,7 +35615,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bEt" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -35849,7 +35838,7 @@
/turf/open/floor/plasteel/white,
/area/crew_quarters/heads/cmo)
"bEI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/closet,
@@ -35865,7 +35854,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/exam_room)
"bEJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small{
@@ -35882,7 +35871,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/exam_room)
"bEK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/button/door{
@@ -35904,7 +35893,7 @@
name = "Personal Examination Room";
req_access_txt = "40"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -35913,11 +35902,11 @@
/turf/open/floor/plasteel/dark,
/area/medical/exam_room)
"bEM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -36059,10 +36048,10 @@
/area/security/checkpoint/science)
"bEX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/red,
@@ -36078,7 +36067,7 @@
pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/closet/secure_closet/security/science,
@@ -36127,7 +36116,7 @@
/turf/open/floor/engine,
/area/science/storage)
"bFd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/engine,
@@ -36191,7 +36180,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/white,
@@ -36211,7 +36200,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -36350,7 +36339,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bFG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -36401,7 +36390,7 @@
name = "Virology Interior Airlock";
req_access_txt = "39"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/doorButtons/access_button{
@@ -36490,7 +36479,7 @@
/area/medical/exam_room)
"bFW" = (
/obj/effect/decal/remains/human,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -36508,7 +36497,7 @@
/turf/open/floor/plasteel/dark,
/area/medical/exam_room)
"bFY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -36531,7 +36520,7 @@
name = "Research Security Post";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -36605,7 +36594,7 @@
/turf/open/floor/engine,
/area/science/storage)
"bGi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/camera{
@@ -36823,7 +36812,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/dark,
@@ -36936,7 +36925,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bGN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -36992,7 +36981,7 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"bGT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -37002,9 +36991,9 @@
/obj/machinery/power/apc/highcap/five_k{
dir = 1;
name = "Virology APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
@@ -37227,7 +37216,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/purple{
@@ -37278,7 +37267,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -37320,7 +37309,7 @@
/turf/open/floor/engine,
/area/science/storage)
"bHv" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/sign/poster/random{
@@ -37382,9 +37371,9 @@
areastring = "/area/science/mixing/chamber";
dir = 4;
name = "Toxins Chamber APC";
- pixel_x = 26
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -37781,7 +37770,7 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/navbeacon{
@@ -37795,7 +37784,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/navbeacon{
@@ -37808,7 +37797,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -37820,7 +37809,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -37830,24 +37819,24 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bIA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bIC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/navbeacon{
@@ -37857,7 +37846,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bID" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -37889,17 +37878,17 @@
name = "Toxins Storage APC";
pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/engine,
/area/science/storage)
"bIG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line,
@@ -37907,14 +37896,14 @@
/area/science/storage)
"bIH" = (
/obj/machinery/light,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/engine,
/area/science/storage)
"bII" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/nosmoking{
@@ -37926,7 +37915,7 @@
/turf/open/floor/engine,
/area/science/storage)
"bIJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/engine,
@@ -38290,7 +38279,7 @@
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"bJy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -38307,7 +38296,7 @@
name = "Surgery Maintenance";
req_access_txt = "45"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -38316,10 +38305,10 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bJA" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
@@ -38329,7 +38318,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bJB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -38480,7 +38469,7 @@
name = "Toxins Storage";
req_access_txt = "24"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -38565,13 +38554,13 @@
/area/chapel/dock)
"bKb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
/area/chapel/dock)
"bKc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -38582,7 +38571,7 @@
name = "Monastery Docking Bay APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -38809,7 +38798,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Surgery APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -38822,7 +38811,7 @@
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"bKH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -38838,7 +38827,7 @@
/area/hallway/primary/aft)
"bKJ" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -38891,9 +38880,9 @@
/obj/machinery/power/apc{
dir = 8;
name = "Atmospherics APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/yellow{
@@ -38912,7 +38901,7 @@
dir = 2;
pixel_y = 22
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -38934,7 +38923,7 @@
name = "Head of Security RC";
pixel_y = 30
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -38952,7 +38941,7 @@
/obj/item/radio/intercom{
pixel_y = 26
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light{
@@ -38970,10 +38959,10 @@
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/yellow{
@@ -39071,7 +39060,7 @@
/area/chapel/dock)
"bLo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -39479,7 +39468,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bMg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -39563,7 +39552,7 @@
/turf/open/space/basic,
/area/space/nearstation)
"bMs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -39824,7 +39813,7 @@
/turf/open/floor/plasteel/white,
/area/medical/surgery)
"bMS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -39970,7 +39959,7 @@
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -40062,7 +40051,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -40255,10 +40244,10 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bNY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment,
@@ -40268,7 +40257,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bNZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -40280,7 +40269,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bOa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -40293,10 +40282,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bOb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -40421,7 +40410,7 @@
dir = 1;
name = "Pure to Mix"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -40468,7 +40457,7 @@
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid/monastery)
"bOx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -40522,7 +40511,7 @@
/turf/open/floor/plating,
/area/medical/virology)
"bOF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -40534,7 +40523,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bOG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -40543,7 +40532,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bOH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -40556,7 +40545,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bOI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -40568,7 +40557,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bOJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -40752,7 +40741,7 @@
/area/engine/atmos)
"bPc" = (
/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -40804,7 +40793,7 @@
name = "Chapel";
opacity = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -40853,7 +40842,7 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/department/engine)
"bPs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -40865,7 +40854,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -40953,7 +40942,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bPH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/holopad,
@@ -41044,7 +41033,7 @@
/area/engine/atmos)
"bPV" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -41102,7 +41091,7 @@
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid/monastery)
"bQf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/sand,
@@ -41348,7 +41337,7 @@
pixel_x = -25;
pixel_y = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -41358,10 +41347,10 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bQC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/navbeacon{
@@ -41391,7 +41380,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bQF" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/atmospheric_technician,
@@ -41505,7 +41494,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bQU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -41517,7 +41506,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bQV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -41527,7 +41516,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"bQW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -41542,10 +41531,10 @@
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -41557,7 +41546,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -41636,10 +41625,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/dark,
@@ -41648,7 +41637,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -41658,7 +41647,7 @@
dir = 1
},
/obj/effect/turf_decal/stripes/corner,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -41668,7 +41657,7 @@
dir = 1
},
/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -41680,7 +41669,7 @@
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -41689,7 +41678,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/dark,
@@ -41701,7 +41690,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/dark,
@@ -41754,7 +41743,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/atmospheric_technician,
@@ -41776,7 +41765,7 @@
"bRu" = (
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
+ departmentType = 3;
name = "Atmos RC";
pixel_x = 30
},
@@ -41890,7 +41879,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -41900,7 +41889,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -41915,7 +41904,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -41924,7 +41913,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/dark,
@@ -42001,13 +41990,13 @@
/turf/open/floor/plasteel/dark,
/area/storage/tech)
"bRT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/dark,
@@ -42017,7 +42006,7 @@
name = "Tech Storage";
req_access_txt = "23"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -42027,7 +42016,7 @@
/turf/open/floor/plasteel/dark,
/area/storage/tech)
"bRV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -42039,22 +42028,22 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bRW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bRX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bRY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -42063,7 +42052,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bRZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel,
@@ -42135,7 +42124,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bSg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/trinary/mixer{
@@ -42271,7 +42260,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -42282,7 +42271,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 6
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/turf/open/floor/plasteel,
@@ -42291,7 +42280,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/closed/wall/r_wall,
@@ -42306,7 +42295,7 @@
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -42317,7 +42306,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/beacon,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -42329,7 +42318,7 @@
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -42342,7 +42331,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -42355,7 +42344,7 @@
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/turf/open/floor/plasteel/dark,
@@ -42366,7 +42355,7 @@
/turf/open/floor/plasteel/dark,
/area/storage/tech)
"bSK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -42405,7 +42394,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"bSO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -42623,20 +42612,20 @@
/obj/machinery/power/terminal{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
/area/engine/gravity_generator)
"bTs" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/smes{
@@ -42776,7 +42765,7 @@
dir = 2;
name = "Tech Storage APC";
areastring = "/area/storage/tech";
- pixel_y = -24
+ pixel_y = -23
},
/obj/structure/cable,
/obj/structure/closet/crate/solarpanel_small,
@@ -42808,7 +42797,7 @@
name = "Engineering";
req_one_access_txt = "10;24"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -43086,25 +43075,25 @@
/obj/effect/turf_decal/stripes/line{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 1;
name = "Engineering Foyer APC";
- pixel_y = 24
+ pixel_y = 23
},
/turf/open/floor/plasteel,
/area/engine/break_room)
"bUm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -43143,6 +43132,9 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3{
+ dir = 6
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bUq" = (
@@ -43150,12 +43142,18 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bUr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bUs" = (
@@ -43168,12 +43166,13 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/engine/atmos)
"bUu" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bUv" = (
@@ -43185,7 +43184,7 @@
/area/engine/atmos)
"bUw" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/purple/visible{
@@ -43273,7 +43272,7 @@
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Chief Engineer's Desk";
- departmentType = 3;
+ departmentType = 4;
name = "Chief Engineer RC";
pixel_x = -32
},
@@ -43359,16 +43358,16 @@
/turf/closed/wall/r_wall,
/area/storage/tech)
"bUP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/closed/wall,
/area/engine/engine_smes)
"bUQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/smes/engineering,
@@ -43381,10 +43380,10 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"bUR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/smes/engineering,
@@ -43401,7 +43400,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"bUS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/smes/engineering,
@@ -43442,10 +43441,10 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bUW" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/landmark/start/depsec/engineering,
@@ -43455,7 +43454,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bUX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43472,7 +43471,7 @@
name = "Engineering Security Post";
req_access_txt = "63"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43491,7 +43490,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bUZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -43504,10 +43503,10 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bVa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
@@ -43567,6 +43566,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bVf" = (
@@ -43598,7 +43598,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bVj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
@@ -43754,9 +43754,9 @@
/obj/machinery/power/apc{
dir = 4;
name = "CE Office APC";
- pixel_x = 28
+ pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/item/clothing/glasses/meson/engine,
@@ -43802,7 +43802,7 @@
pixel_y = 7
},
/obj/item/storage/box/lights/mixed,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/airalarm{
@@ -43821,7 +43821,7 @@
/obj/machinery/power/terminal{
dir = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -43846,9 +43846,9 @@
dir = 8;
name = "Engineering Security APC";
areastring = "/area/security/checkpoint/engineering";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/turf_decal/tile/red{
@@ -43860,7 +43860,7 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
"bVP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -43894,7 +43894,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bVT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -43922,6 +43922,7 @@
/obj/machinery/atmospherics/components/binary/pump{
name = "Waste to Space"
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bVW" = (
@@ -44055,7 +44056,7 @@
/area/crew_quarters/heads/chief)
"bWq" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -44138,10 +44139,10 @@
/obj/item/stack/sheet/glass/fifty{
layer = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/light{
@@ -44163,10 +44164,10 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"bWw" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -44175,13 +44176,13 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"bWx" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-4"
},
/obj/effect/landmark/start/station_engineer,
@@ -44191,7 +44192,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"bWy" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
@@ -44272,7 +44273,7 @@
name = "engineering security door"
},
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -44301,6 +44302,7 @@
"bWI" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bWJ" = (
@@ -44382,7 +44384,7 @@
name = "Chapel";
opacity = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -44409,14 +44411,14 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/department/engine)
"bXe" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -44448,7 +44450,7 @@
/turf/open/floor/plasteel,
/area/crew_quarters/heads/chief)
"bXi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -44497,7 +44499,7 @@
dir = 8;
name = "Engine Room APC";
areastring = "/area/engine/engine_smes";
- pixel_x = -26
+ pixel_x = -25
},
/obj/structure/cable,
/obj/item/stack/sheet/metal/fifty,
@@ -44511,13 +44513,13 @@
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"bXm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
/area/engine/engine_smes)
"bXn" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -44535,7 +44537,7 @@
name = "Engine Room";
req_access_txt = "10"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -44553,6 +44555,7 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3,
/turf/open/floor/plasteel,
/area/engine/atmos)
"bXs" = (
@@ -44659,7 +44662,7 @@
/turf/open/floor/plasteel,
/area/engine/atmos)
"bXD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
@@ -44676,7 +44679,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/yellow,
@@ -44702,13 +44705,10 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/purple/visible{
- dir = 6
- },
/turf/closed/wall/r_wall,
/area/engine/atmos)
"bXI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -44762,7 +44762,7 @@
/area/maintenance/department/engine)
"bXY" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -44774,10 +44774,10 @@
"bXZ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -44787,15 +44787,15 @@
/turf/open/floor/plating,
/area/crew_quarters/heads/chief)
"bYa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/door/airlock/command{
@@ -44813,7 +44813,7 @@
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"bYd" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/modular_computer/console/preset/engineering,
@@ -44830,7 +44830,7 @@
/area/engine/engine_smes)
"bYg" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -44841,7 +44841,7 @@
name = "Power Storage";
req_access_txt = "11"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -44871,7 +44871,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -44917,7 +44917,7 @@
/obj/machinery/atmospherics/pipe/simple/green/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/atmos{
@@ -44949,10 +44949,11 @@
/turf/open/floor/plasteel/chapel,
/area/chapel/main/monastery)
"bYC" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/station_engineer,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYF" = (
@@ -44986,7 +44987,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/yellow{
@@ -44998,7 +44999,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45017,10 +45018,10 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/sorting/mail{
@@ -45037,10 +45038,10 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -45058,7 +45059,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45084,7 +45085,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45102,10 +45103,10 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYP" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -45123,7 +45124,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45141,7 +45142,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45166,7 +45167,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45187,10 +45188,10 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -45208,13 +45209,16 @@
/obj/effect/turf_decal/tile/yellow{
dir = 4
},
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYU" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
@@ -45236,7 +45240,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45246,10 +45250,13 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45270,7 +45277,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45295,7 +45302,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -45320,12 +45327,9 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bYZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
- icon_state = "2-8"
- },
/obj/structure/disposalpipe/sorting/mail/flip{
dir = 8;
sortType = 4
@@ -45336,7 +45340,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bZa" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -45377,13 +45381,13 @@
/obj/machinery/power/apc{
dir = 8;
name = "Incinerator APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/machinery/airalarm/unlocked{
dir = 2;
pixel_y = 22
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -45398,34 +45402,29 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"bZg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/power/terminal{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
+"bZh" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
icon_state = "0-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/dark,
-/area/maintenance/disposal/incinerator)
-"bZh" = (
-/obj/machinery/power/smes,
-/obj/structure/cable{
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
@@ -45456,7 +45455,7 @@
},
/area/chapel/main/monastery)
"bZn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -45508,7 +45507,7 @@
/area/engine/engineering)
"bZy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -45526,7 +45525,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bZB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -45549,7 +45548,7 @@
/area/engine/engineering)
"bZE" = (
/obj/machinery/holopad,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -45563,9 +45562,6 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"bZG" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/structure/disposalpipe/segment{
dir = 5
},
@@ -45603,6 +45599,7 @@
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3,
/turf/open/floor/plating/airless,
/area/engine/atmos)
"bZL" = (
@@ -45643,30 +45640,11 @@
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"bZP" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
-"bZQ" = (
-/obj/machinery/computer/turbine_computer{
- dir = 8;
- id = "incineratorturbine"
- },
-/obj/machinery/button/door/incinerator_vent_atmos_main{
- pixel_x = 24;
- pixel_y = 6
- },
-/obj/machinery/button/door/incinerator_vent_atmos_aux{
- pixel_x = 24;
- pixel_y = -6
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/turf/open/floor/plasteel/dark,
-/area/maintenance/disposal/incinerator)
"bZR" = (
/obj/machinery/atmospherics/pipe/simple/purple/visible{
dir = 5
@@ -45698,10 +45676,6 @@
},
/turf/open/floor/engine/vacuum,
/area/maintenance/disposal/incinerator)
-"bZV" = (
-/obj/structure/sign/warning/fire,
-/turf/closed/wall/r_wall,
-/area/maintenance/disposal/incinerator)
"bZY" = (
/turf/closed/wall,
/area/chapel/office)
@@ -45740,24 +45714,27 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cai" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/station_engineer,
/turf/open/floor/plasteel,
/area/engine/engineering)
"caj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/start/station_engineer,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cak" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/start/station_engineer,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"cal" = (
@@ -45791,22 +45768,22 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"caq" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"car" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
/obj/machinery/camera{
c_tag = "Engineering Central";
dir = 1
},
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"cat" = (
@@ -45839,6 +45816,7 @@
"caw" = (
/obj/structure/table,
/obj/item/twohanded/rcl/pre_loaded,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cax" = (
@@ -45848,10 +45826,6 @@
/obj/item/electronics/apc,
/obj/item/stock_parts/cell/high/plus,
/obj/item/stock_parts/cell/high/plus,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/item/stack/cable_coil,
/turf/open/floor/plasteel,
/area/engine/engineering)
"caz" = (
@@ -45923,32 +45897,19 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
-/turf/open/floor/plasteel/dark,
-/area/maintenance/disposal/incinerator)
-"caJ" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
+/obj/structure/table/glass,
+/obj/item/paper_bin,
+/obj/item/pen,
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"caK" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-4"
},
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"caL" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/mapping_helpers/airlock/locked,
@@ -45960,7 +45921,7 @@
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"caM" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{
@@ -45969,7 +45930,7 @@
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"caN" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/effect/mapping_helpers/airlock/locked,
@@ -45977,7 +45938,7 @@
/turf/open/floor/engine,
/area/maintenance/disposal/incinerator)
"caO" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/igniter/incinerator_atmos,
@@ -45988,10 +45949,10 @@
/turf/open/floor/engine/vacuum,
/area/maintenance/disposal/incinerator)
"caP" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-4"
},
/obj/machinery/power/compressor{
@@ -46007,7 +45968,7 @@
/turf/open/floor/engine/vacuum,
/area/maintenance/disposal/incinerator)
"caQ" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-8"
},
/obj/machinery/power/turbine{
@@ -46016,10 +45977,6 @@
},
/turf/open/floor/engine/vacuum,
/area/maintenance/disposal/incinerator)
-"caR" = (
-/obj/machinery/door/poddoor/incinerator_atmos_main,
-/turf/open/floor/engine/vacuum,
-/area/maintenance/disposal/incinerator)
"caS" = (
/turf/closed/wall,
/area/chapel/asteroid/monastery)
@@ -46061,13 +46018,13 @@
},
/area/maintenance/department/engine)
"cbc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -46092,7 +46049,7 @@
pixel_y = 3
},
/obj/item/book/manual/wiki/engineering_construction,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -46106,6 +46063,7 @@
},
/obj/item/book/manual/wiki/engineering_guide,
/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cbh" = (
@@ -46132,15 +46090,15 @@
"cbk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
+ id = "SupermatterExternal";
name = "radiation shutters"
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
/obj/effect/turf_decal/bot{
dir = 2
},
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"cbl" = (
@@ -46162,14 +46120,12 @@
"cbn" = (
/obj/structure/table,
/obj/item/storage/belt/utility,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cbo" = (
/obj/structure/table,
/obj/machinery/cell_charger,
-/obj/structure/cable{
- icon_state = "1-2"
- },
/turf/open/floor/plasteel,
/area/engine/engineering)
"cbp" = (
@@ -46211,51 +46167,24 @@
"cby" = (
/turf/open/floor/engine/air,
/area/engine/atmos)
-"cbz" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating/airless,
-/area/maintenance/disposal/incinerator)
"cbA" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
- },
/obj/effect/turf_decal/tile/yellow{
dir = 1
},
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
-/turf/open/floor/plasteel/dark,
-/area/maintenance/disposal/incinerator)
-"cbB" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/unary/tank/toxins,
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"cbC" = (
-/obj/machinery/button/ignition/incinerator/atmos{
- pixel_x = 26;
- pixel_y = -6
- },
-/obj/machinery/atmospherics/components/trinary/filter/flipped{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
},
+/obj/machinery/meter,
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
-"cbE" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8
- },
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/engine,
-/area/maintenance/disposal/incinerator)
"cbF" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
@@ -46283,7 +46212,7 @@
"cbN" = (
/obj/structure/table/wood,
/obj/item/storage/book/bible,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -46348,14 +46277,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
"cca" = (
/obj/effect/landmark/start/station_engineer,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46364,10 +46293,10 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"ccb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -46390,14 +46319,24 @@
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/emitter/anchored{
+ dir = 4;
+ state = 2
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"cce" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/engine/engineering)
@@ -46414,6 +46353,12 @@
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/reflector/single/anchored{
+ dir = 10
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"ccg" = (
@@ -46445,6 +46390,7 @@
/obj/item/storage/toolbox/mechanical{
pixel_x = -2
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cck" = (
@@ -46456,9 +46402,6 @@
/obj/item/storage/toolbox/electrical{
pixel_x = -2
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
/turf/open/floor/plasteel,
/area/engine/engineering)
"ccm" = (
@@ -46483,19 +46426,15 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
-/turf/open/floor/plasteel/dark,
-/area/maintenance/disposal/incinerator)
-"ccq" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"ccr" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
/turf/open/floor/plasteel/dark,
/area/maintenance/disposal/incinerator)
"ccs" = (
@@ -46507,7 +46446,7 @@
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid/monastery)
"ccE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46577,7 +46516,7 @@
/turf/open/floor/plating,
/area/engine/engineering)
"ccS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -46592,7 +46531,7 @@
"ccW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
+ id = "SupermatterExternal";
name = "radiation shutters"
},
/obj/effect/turf_decal/bot{
@@ -46601,29 +46540,28 @@
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"ccX" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
/area/engine/engineering)
"ccY" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
/turf/open/floor/plating,
/area/engine/engineering)
"ccZ" = (
-/obj/structure/particle_accelerator/end_cap,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"cda" = (
/obj/effect/landmark/event_spawn,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"cdc" = (
@@ -46632,50 +46570,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cdf" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cdg" = (
-/obj/structure/table/glass,
-/obj/item/paper_bin,
-/obj/item/pen,
-/obj/effect/turf_decal/tile/yellow{
- dir = 1
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/maintenance/disposal/incinerator)
-"cdh" = (
-/obj/structure/table/glass,
-/obj/item/storage/toolbox/emergency,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/maintenance/disposal/incinerator)
-"cdi" = (
-/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
-/obj/machinery/meter,
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 4
- },
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel/dark,
-/area/maintenance/disposal/incinerator)
-"cdj" = (
+"cdk" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
@@ -46683,31 +46578,16 @@
name = "Atmospherics External Access";
req_access_txt = "24"
},
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 4
- },
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
-"cdk" = (
+"cdl" = (
/obj/machinery/light/small{
dir = 1
},
/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal/incinerator)
-"cdl" = (
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/machinery/door/airlock/external{
- name = "Atmospherics External Access";
- req_access_txt = "24"
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plating,
/area/maintenance/disposal/incinerator)
"cdm" = (
@@ -46815,9 +46695,6 @@
/area/engine/engineering)
"cdL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -46825,6 +46702,9 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
"cdM" = (
@@ -46841,15 +46721,8 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cdN" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
"cdO" = (
/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-4"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -46865,9 +46738,6 @@
/area/engine/engineering)
"cdP" = (
/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "2-8"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -46875,6 +46745,7 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cdQ" = (
@@ -46897,7 +46768,7 @@
dir = 6
},
/obj/machinery/button/door{
- id = "Singularity";
+ id = "SupermatterExternal";
name = "Shutters Control";
pixel_x = 25;
req_access_txt = "11"
@@ -46913,31 +46784,22 @@
/area/engine/engineering)
"cdS" = (
/obj/machinery/button/door{
- id = "Singularity";
+ id = "SupermatterExternal";
name = "Shutters Control";
pixel_x = -25;
req_access_txt = "11"
},
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/light{
+ dir = 8
+ },
/turf/open/floor/plating,
/area/engine/engineering)
-"cdT" = (
-/obj/machinery/particle_accelerator/control_box,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cdU" = (
-/obj/structure/particle_accelerator/fuel_chamber,
-/turf/open/floor/plating,
-/area/engine/engineering)
"cdW" = (
/obj/machinery/button/door{
- id = "Singularity";
+ id = "SupermatterExternal";
name = "Shutters Control";
pixel_x = 25;
req_access_txt = "11"
@@ -46945,6 +46807,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"cdX" = (
@@ -46952,7 +46818,7 @@
dir = 10
},
/obj/machinery/button/door{
- id = "Singularity";
+ id = "SupermatterExternal";
name = "Shutters Control";
pixel_x = -25;
req_access_txt = "11"
@@ -46961,28 +46827,16 @@
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cdY" = (
/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/tile/yellow,
-/obj/effect/turf_decal/tile/yellow{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cdZ" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable{
- icon_state = "1-8"
- },
/obj/effect/turf_decal/tile/yellow,
/obj/effect/turf_decal/tile/yellow{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"ceb" = (
@@ -46996,12 +46850,8 @@
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plating/airless,
/area/maintenance/disposal/incinerator)
-"ced" = (
-/obj/structure/closet/emcloset/anchored,
-/turf/open/floor/plating,
-/area/maintenance/disposal/incinerator)
"cee" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small{
@@ -47011,7 +46861,7 @@
/turf/open/floor/plasteel,
/area/chapel/office)
"cef" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/sand,
@@ -47023,7 +46873,7 @@
opacity = 1;
req_access_txt = "22"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47046,7 +46896,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -47097,9 +46947,6 @@
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -47110,47 +46957,33 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"cet" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
"ceu" = (
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
/obj/item/stack/cable_coil{
pixel_x = 3;
pixel_y = -7
},
/obj/item/crowbar,
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cev" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cew" = (
-/obj/structure/particle_accelerator/power_box,
-/turf/open/floor/plating,
-/area/engine/engineering)
"cex" = (
/obj/item/screwdriver,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"cey" = (
@@ -47205,7 +47038,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -47214,7 +47047,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
@@ -47286,80 +47119,75 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"ceX" = (
-/obj/machinery/light/small{
- dir = 8;
- light_color = "#fff4bc"
- },
-/obj/structure/closet/emcloset/anchored,
/obj/structure/disposalpipe/segment{
dir = 10
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
"ceY" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cfa" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cfb" = (
/obj/structure/cable/yellow{
icon_state = "1-2"
},
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cfb" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/emitter/anchored{
+ dir = 4;
+ state = 2
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"cfc" = (
-/obj/structure/particle_accelerator/particle_emitter/left,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cfd" = (
-/obj/structure/particle_accelerator/particle_emitter/center,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"cfe" = (
-/obj/structure/particle_accelerator/particle_emitter/right,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"cff" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = -32
- },
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
"cfg" = (
-/obj/machinery/light/small{
- dir = 4;
- light_color = "#fff4bc"
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
},
-/obj/structure/closet/emcloset/anchored,
-/turf/open/floor/plating,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 6
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
"cfk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47372,7 +47200,7 @@
name = "Chapel Access";
opacity = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -47421,33 +47249,23 @@
/turf/open/floor/plating,
/area/engine/engineering)
"cfs" = (
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"cfu" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cfv" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/engine/engineering)
"cfw" = (
/obj/item/wirecutters,
-/obj/structure/cable/yellow{
- icon_state = "2-8"
- },
/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"cfx" = (
@@ -47465,7 +47283,7 @@
/turf/open/floor/plasteel,
/area/chapel/main/monastery)
"cfD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -47492,9 +47310,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Monastery APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -47583,76 +47401,58 @@
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
"cfS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
/obj/effect/turf_decal/stripes/line{
- dir = 1
+ dir = 8
},
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cfT" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cfU" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Port Fore";
- dir = 2;
- network = list("engine")
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1{
+ dir = 6
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-8"
- },
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cfV" = (
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/layer_manifold/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
"cfW" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engine/engineering)
"cfX" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "1-8"
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cfY" = (
-/obj/machinery/disposal/deliveryChute,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 9
},
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/engine,
/area/engine/engineering)
"cgb" = (
/obj/machinery/airalarm{
@@ -47718,7 +47518,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cgp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/item/wrench,
@@ -47735,37 +47535,49 @@
name = "Engineering External Access";
req_access_txt = "61"
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/engine/engineering)
"cgu" = (
-/obj/structure/cable/yellow{
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cgv" = (
-/obj/structure/cable/yellow{
- icon_state = "4-8"
+/obj/structure/cable{
+ icon_state = "2-4"
},
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/engine,
/area/engine/engineering)
"cgw" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-8"
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "Chamber Bypass"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/engine,
/area/engine/engineering)
"cgx" = (
-/obj/structure/cable/yellow{
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 10
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cgG" = (
/obj/structure/window/reinforced/fulltile,
@@ -47789,8 +47601,8 @@
/area/hydroponics/garden/monastery)
"cgL" = (
/obj/structure/closet/cabinet,
-/obj/item/clothing/suit/holidaypriest,
-/obj/item/clothing/suit/nun,
+/obj/item/clothing/suit/chaplainsuit/holidaypriest,
+/obj/item/clothing/suit/chaplainsuit/nun,
/obj/item/clothing/head/nun_hood,
/obj/machinery/button/door{
id = "Cell1";
@@ -47838,41 +47650,49 @@
/obj/structure/sign/warning/vacuum/external{
pixel_x = -32
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/engine/engineering)
"cgT" = (
/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/engine,
+/area/engine/supermatter)
"cgU" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
},
-/turf/open/floor/plating/airless,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
/area/engine/engineering)
"cgV" = (
-/obj/structure/window/plasma/reinforced{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+/obj/structure/cable{
+ icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
- dir = 8
+ dir = 4
},
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/engine,
/area/engine/engineering)
"cgY" = (
/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 4
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/engine,
+/area/engine/supermatter)
"chb" = (
/obj/machinery/camera{
c_tag = "Monastery Kitchen";
@@ -47893,7 +47713,7 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -47905,7 +47725,7 @@
/turf/open/floor/grass,
/area/hydroponics/garden/monastery)
"chj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/grass,
@@ -47987,31 +47807,23 @@
name = "Engineering External Access";
req_access_txt = "61"
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/engine/engineering)
"chw" = (
-/obj/structure/cable/yellow{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"chA" = (
-/obj/effect/turf_decal/stripes/line{
+/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/engine,
/area/engine/engineering)
"chB" = (
/obj/item/seeds/banana,
@@ -48159,8 +47971,8 @@
/area/space/nearstation)
"cio" = (
/obj/structure/closet/cabinet,
-/obj/item/clothing/suit/holidaypriest,
-/obj/item/clothing/suit/nun,
+/obj/item/clothing/suit/chaplainsuit/holidaypriest,
+/obj/item/clothing/suit/chaplainsuit/nun,
/obj/item/clothing/head/nun_hood,
/obj/machinery/button/door{
id = "Cell2";
@@ -48186,27 +47998,21 @@
/turf/open/floor/plasteel/showroomfloor,
/area/chapel/main/monastery)
"cir" = (
-/obj/effect/turf_decal/stripes/end{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/machinery/light{
- dir = 8
+/obj/machinery/camera/emp_proof{
+ dir = 4
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cit" = (
-/obj/machinery/the_singularitygen/tesla,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"civ" = (
-/obj/effect/turf_decal/stripes/end{
- dir = 4
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
},
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/engine,
+/area/engine/supermatter)
"ciy" = (
/obj/item/reagent_containers/glass/bucket,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -48226,7 +48032,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"ciD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -48260,22 +48066,21 @@
/turf/open/floor/plasteel/grimy,
/area/chapel/main/monastery)
"ciG" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/engine,
/area/engine/engineering)
"ciH" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/engineering/glass/critical{
+ heat_proof = 1;
+ name = "Supermatter Chamber";
+ req_access_txt = "10"
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/open/floor/engine,
+/area/engine/supermatter)
"ciI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/manifold/orange/visible,
+/turf/open/floor/engine,
/area/engine/engineering)
"ciJ" = (
/obj/structure/closet/emcloset,
@@ -48307,7 +48112,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"ciR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -48427,16 +48232,15 @@
/turf/open/floor/grass,
/area/hydroponics/garden/monastery)
"cjs" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/obj/machinery/meter,
+/turf/open/floor/engine,
/area/engine/engineering)
"cjt" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/manifold/orange/visible{
+ dir = 8
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cju" = (
/turf/closed/mineral,
@@ -48510,11 +48314,11 @@
/turf/open/floor/carpet,
/area/library)
"cjR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -48567,7 +48371,7 @@
charge = 5e+006
},
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -48625,22 +48429,6 @@
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/dark,
/area/library/lounge)
-"ckr" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Port Aft";
- dir = 1;
- network = list("engine")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cks" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Starboard Aft";
- dir = 1;
- network = list("engine")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"ckt" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid/airless,
@@ -48716,7 +48504,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -48736,7 +48524,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -48917,7 +48705,7 @@
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
"clz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating/airless,
@@ -48928,13 +48716,13 @@
name = "Telecommunications External Access";
req_access_txt = "61"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/tcommsat/computer)
"clB" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/closed/wall/r_wall,
@@ -48949,7 +48737,7 @@
brightness = 3;
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -48981,7 +48769,7 @@
name = "Telecommunications External Access";
req_access_txt = "61"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -49019,7 +48807,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"clR" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -49034,7 +48822,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-4"
},
/turf/open/floor/plasteel,
@@ -49043,7 +48831,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "4-8"
},
/turf/closed/wall,
@@ -49053,7 +48841,7 @@
dir = 9
},
/obj/item/wrench,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -49070,10 +48858,10 @@
/area/tcommsat/computer)
"clY" = (
/obj/item/beacon,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49083,7 +48871,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"clZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -49092,7 +48880,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"cma" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49105,19 +48893,19 @@
/turf/open/floor/plating,
/area/tcommsat/computer)
"cmb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/tcommsat/computer)
"cmc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49128,7 +48916,7 @@
/area/tcommsat/computer)
"cmd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -49181,7 +48969,7 @@
req_access_txt = "61"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -49191,7 +48979,7 @@
name = "Control Room";
req_access_txt = "19; 61"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -49210,9 +48998,9 @@
dir = 1;
name = "Telecomms Monitoring APC";
areastring = "/area/tcommsat/computer";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -49257,7 +49045,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
@@ -49272,7 +49060,7 @@
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"cmp" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply,
@@ -49290,7 +49078,7 @@
/turf/open/floor/plating,
/area/tcommsat/computer)
"cmr" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49361,7 +49149,7 @@
name = "Server Room";
req_access_txt = "61"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -49416,7 +49204,7 @@
/turf/closed/wall/r_wall,
/area/tcommsat/server)
"cmF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -49436,7 +49224,7 @@
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cmH" = (
-/obj/machinery/telecomms/message_server,
+/obj/machinery/telecomms/message_server/preset,
/turf/open/floor/circuit/telecomms/mainframe,
/area/tcommsat/server)
"cmK" = (
@@ -49709,9 +49497,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Dormitory APC";
- pixel_y = 25
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/sign/poster/official/random{
@@ -49729,7 +49517,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Dormitory Maintenance APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable,
/obj/machinery/light/small,
@@ -49820,7 +49608,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cou" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -49843,7 +49631,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -49855,7 +49643,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/camera{
@@ -49868,7 +49656,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"coF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49879,7 +49667,7 @@
},
/area/maintenance/department/crew_quarters/bar)
"coG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49891,7 +49679,7 @@
},
/area/maintenance/department/crew_quarters/bar)
"coH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49902,7 +49690,7 @@
},
/area/maintenance/department/crew_quarters/bar)
"coJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49935,7 +49723,7 @@
/turf/open/floor/plasteel/dark,
/area/hallway/primary/central)
"coW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -50440,7 +50228,7 @@
/area/hallway/primary/aft)
"cqv" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
@@ -50449,14 +50237,14 @@
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"cqw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
"cqx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -50546,7 +50334,7 @@
dir = 1
},
/obj/effect/landmark/start/chief_engineer,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel,
@@ -50765,7 +50553,7 @@
name = "Chapel Office APC";
pixel_x = 24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/dark,
@@ -50805,7 +50593,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"csh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -50835,8 +50623,8 @@
/obj/structure/closet,
/obj/item/storage/backpack/cultpack,
/obj/item/clothing/head/nun_hood,
-/obj/item/clothing/suit/nun,
-/obj/item/clothing/suit/holidaypriest,
+/obj/item/clothing/suit/chaplainsuit/nun,
+/obj/item/clothing/suit/chaplainsuit/holidaypriest,
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -50874,7 +50662,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"csr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -50953,7 +50741,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"csF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/red{
@@ -50969,7 +50757,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"csG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -50985,7 +50773,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"csM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/camera{
@@ -50997,26 +50785,26 @@
/turf/open/floor/plasteel,
/area/chapel/office)
"csN" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"csO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"csQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -51148,7 +50936,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"ctK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -51160,13 +50948,13 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"ctL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -51419,7 +51207,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cuz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51450,9 +51238,7 @@
/turf/open/floor/grass,
/area/hydroponics/garden/monastery)
"cuG" = (
-/obj/structure/closet/secure_closet/freezer/fridge{
- req_access = null
- },
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/obj/machinery/light/small{
dir = 2
},
@@ -51485,9 +51271,9 @@
/obj/machinery/power/apc{
dir = 8;
name = "Garden APC";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/light/small{
@@ -51551,10 +51337,10 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cuV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -51563,14 +51349,14 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cuW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cuX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock{
@@ -51735,7 +51521,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cvu" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -51811,7 +51597,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cvE" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -51821,7 +51607,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cvF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51840,10 +51626,10 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cvH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -51863,7 +51649,7 @@
/area/chapel/main/monastery)
"cvI" = (
/obj/machinery/light/small,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51889,7 +51675,7 @@
/area/chapel/main/monastery)
"cvJ" = (
/obj/machinery/light/small,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -51912,7 +51698,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -51965,19 +51751,19 @@
/turf/open/floor/plasteel/dark,
/area/chapel/main/monastery)
"cvX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/closed/wall/mineral/iron,
/area/maintenance/department/chapel/monastery)
"cvY" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/closed/wall/mineral/iron,
/area/maintenance/department/chapel/monastery)
"cvZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/closed/wall/mineral/iron,
@@ -51986,7 +51772,7 @@
/turf/closed/wall/mineral/iron,
/area/maintenance/department/chapel/monastery)
"cwc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
@@ -52003,7 +51789,7 @@
/obj/machinery/door/airlock/grunge{
name = "Library"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -52032,7 +51818,7 @@
/area/chapel/main/monastery)
"cwm" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -52041,7 +51827,7 @@
/turf/open/floor/plating,
/area/maintenance/department/chapel/monastery)
"cwn" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/item/storage/toolbox/mechanical,
@@ -52057,12 +51843,12 @@
/obj/machinery/power/apc{
dir = 1;
name = "Monastery Maintenance APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -52072,7 +51858,7 @@
/area/maintenance/department/chapel/monastery)
"cwp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -52084,7 +51870,7 @@
/obj/item/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
@@ -52208,7 +51994,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -52272,7 +52058,7 @@
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
@@ -52308,7 +52094,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -52357,7 +52143,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -52405,7 +52191,7 @@
/obj/machinery/light/small{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -52441,7 +52227,7 @@
dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -52488,7 +52274,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -53020,7 +52806,7 @@
},
/area/maintenance/department/crew_quarters/dorms)
"cBx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53038,7 +52824,7 @@
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
"cBy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53086,27 +52872,17 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/chapel/office)
-"cBQ" = (
-/obj/machinery/power/rad_collector,
-/turf/open/floor/plating,
-/area/engine/engineering)
"cBR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "Freezer Bypass"
},
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cBS" = (
-/obj/structure/cable/yellow{
- icon_state = "1-8"
- },
-/obj/structure/cable/yellow{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/engine,
/area/engine/engineering)
"cBT" = (
/obj/effect/spawner/structure/window/plasma/reinforced,
@@ -53118,6 +52894,12 @@
"cCl" = (
/turf/closed/wall/r_wall,
/area/science/lab)
+"cCp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"cCt" = (
/turf/open/floor/plasteel/white,
/area/science/lab)
@@ -53136,10 +52918,11 @@
/turf/open/floor/plasteel/white,
/area/engine/gravity_generator)
"cCI" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light{
+ light_color = "#cee5d2"
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"cCO" = (
/obj/structure/disposalpipe/segment{
@@ -53184,7 +52967,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -53193,17 +52976,17 @@
/obj/structure/disposalpipe/segment{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"cCZ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plating,
@@ -53211,6 +52994,13 @@
"cDa" = (
/turf/closed/wall,
/area/quartermaster/warehouse)
+"cDy" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/orange/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
"cDB" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
@@ -53238,6 +53028,16 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
+"cJw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"cKA" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -53350,24 +53150,33 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"cZt" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+"cYq" = (
+/obj/structure/cable{
+ icon_state = "4-8"
},
-/obj/structure/window/plasma/reinforced{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
+/obj/effect/turf_decal/tile/yellow{
dir = 4
},
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
+"cZt" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
"daY" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/disposal)
"dbi" = (
-/obj/machinery/vr_sleeper,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"dci" = (
@@ -53380,11 +53189,17 @@
/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"dfr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"dgg" = (
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -53403,10 +53218,10 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"dgI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -53416,7 +53231,7 @@
/area/maintenance/department/security/brig)
"dhz" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -53436,7 +53251,7 @@
/area/maintenance/department/science)
"dmT" = (
/obj/machinery/shieldwallgen/xenobiologyaccess,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/sign/warning/electricshock{
@@ -53444,21 +53259,11 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
-"dnS" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"doo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating{
@@ -53476,7 +53281,7 @@
dir = 1;
pixel_y = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -53493,6 +53298,13 @@
},
/turf/open/floor/plasteel/dark,
/area/chapel/office)
+"dqb" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
"dqw" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
@@ -53532,7 +53344,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating{
@@ -53572,16 +53384,16 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"dye" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/obj/structure/sign/departments/science{
pixel_y = 32
},
@@ -53608,7 +53420,7 @@
},
/area/maintenance/department/engine)
"dJm" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/research/glass{
@@ -53620,7 +53432,7 @@
"dKs" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating{
@@ -53635,13 +53447,6 @@
"dMB" = (
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
-"dMG" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"dMI" = (
/obj/item/clothing/suit/apron/surgical,
/turf/open/floor/plating{
@@ -53656,7 +53461,7 @@
/area/maintenance/department/science)
"dNr" = (
/obj/structure/cable,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/sign/warning{
@@ -53675,12 +53480,6 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
-"dUv" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"dVI" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -53706,18 +53505,30 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
/area/engine/engineering)
-"dZj" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
+"dWO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
},
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/caution,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"dYQ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dZj" = (
+/obj/machinery/atmospherics/components/binary/pump,
+/turf/open/floor/engine,
/area/engine/engineering)
"eaw" = (
/obj/structure/closet,
@@ -53765,7 +53576,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -53800,18 +53611,33 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"elk" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/wood,
/area/lawoffice)
"emV" = (
/turf/open/space,
/area/space/nearstation)
+"eoo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"epJ" = (
/obj/structure/sign/poster/contraband/random{
pixel_y = 32
},
/turf/open/floor/carpet,
/area/maintenance/department/crew_quarters/dorms)
+"eqg" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/engine,
+/area/engine/engineering)
"eqD" = (
/obj/structure/sign/poster/contraband/random{
pixel_x = -32
@@ -53827,7 +53653,7 @@
req_access_txt = "10"
},
/obj/effect/turf_decal/delivery,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53848,6 +53674,10 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science)
+"evB" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
"ezF" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -53858,7 +53688,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
@@ -53880,27 +53710,27 @@
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
"eCw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"eCK" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"eDC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
@@ -53917,6 +53747,11 @@
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
+"eGh" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
"eHI" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
@@ -53927,6 +53762,16 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"eJU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
"eLt" = (
/obj/structure/closet/firecloset,
/obj/effect/turf_decal/tile/neutral{
@@ -53967,6 +53812,19 @@
/obj/item/gavelhammer,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"ePB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"ePU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -53992,7 +53850,7 @@
/area/science/xenobiology)
"eQZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -54027,10 +53885,13 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"eWi" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/dark,
-/area/engine/engineering)
+"eWo" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
"eXo" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
@@ -54062,11 +53923,15 @@
/obj/item/stack/cable_coil/cut/random,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
+"fbC" = (
+/obj/machinery/atmospherics/components/trinary/filter,
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"fdQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -54121,11 +53986,25 @@
},
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
+"fhE" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Engine Containment Port Aft";
+ dir = 1;
+ network = list("engine")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"fhM" = (
/obj/item/storage/secure/safe{
pixel_x = -22
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -54159,6 +54038,12 @@
},
/turf/open/floor/plasteel,
/area/science/explab)
+"flQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"fmh" = (
/turf/open/floor/wood,
/area/maintenance/department/engine)
@@ -54182,7 +54067,7 @@
/turf/open/space/basic,
/area/space/nearstation)
"fow" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/turf_decal/tile/red{
@@ -54194,13 +54079,33 @@
/turf/open/floor/plasteel,
/area/security/checkpoint/customs)
"fpT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"fsA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"ftb" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/engine,
+/area/engine/engineering)
"ftp" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
@@ -54216,7 +54121,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/wood,
@@ -54229,10 +54134,10 @@
/area/engine/atmos)
"fvb" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/plating,
@@ -54244,6 +54149,17 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit/departure_lounge)
+"fwi" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Engine Containment Starboard Fore";
+ dir = 2;
+ network = list("engine")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"fwl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -54258,45 +54174,60 @@
/area/science/mixing)
"fwI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
-"fwR" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel/dark,
-/area/engine/engineering)
"fyF" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+/obj/structure/cable{
+ icon_state = "1-2"
},
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ dir = 1;
+ id = "Supermatter";
+ name = "Shielding Control";
+ pixel_x = -25;
+ req_access_txt = "11"
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
"fyO" = (
-/turf/open/space/basic,
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
"fzu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/item/clothing/gloves/color/black,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/maintenance/department/engine)
"fAx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"fBp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3,
+/turf/closed/wall/r_wall,
+/area/engine/atmos)
"fBt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -54326,15 +54257,35 @@
},
/turf/open/floor/plasteel/dark,
/area/science/mixing)
-"fFv" = (
-/obj/structure/lattice,
+"fBJ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
/turf/open/space/basic,
+/area/space)
+"fDm" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/engine,
+/area/maintenance/disposal/incinerator)
+"fEl" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"fFv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
"fIu" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/vr_sleeper,
/turf/open/floor/plasteel,
/area/crew_quarters/dorms)
"fIN" = (
@@ -54365,7 +54316,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"fQf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -54413,6 +54364,13 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/kitchen)
+"gbu" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Supermatter Mix Pump"
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
"gdJ" = (
/obj/structure/table/glass,
/obj/item/folder/blue,
@@ -54457,7 +54415,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -54469,7 +54427,7 @@
/turf/open/floor/plating,
/area/chapel/office)
"giO" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -54489,7 +54447,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
@@ -54505,6 +54463,13 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"gkz" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Freezer Return"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"gkR" = (
/obj/item/twohanded/required/kirbyplants/random,
/obj/structure/extinguisher_cabinet{
@@ -54556,7 +54521,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -54623,7 +54588,7 @@
},
/area/hallway/secondary/exit/departure_lounge)
"gpI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark/telecomms,
@@ -54632,10 +54597,10 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -54722,6 +54687,16 @@
},
/turf/open/floor/plasteel/dark,
/area/science/explab)
+"gEI" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "Hot to Cold Loop"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"gFo" = (
/obj/structure/window/reinforced,
/obj/structure/table/glass,
@@ -54776,23 +54751,23 @@
/area/medical/chemistry)
"gHZ" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
"gIC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -54819,7 +54794,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/spawner/lootdrop/maintenance,
@@ -54886,7 +54861,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"gUb" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plating,
@@ -54907,6 +54882,15 @@
/obj/structure/grille,
/turf/open/space/basic,
/area/space/nearstation)
+"ham" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
"heC" = (
/obj/machinery/power/apc/highcap/five_k{
dir = 8;
@@ -54993,6 +54977,19 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
+"hqF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/camera/emp_proof{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"hsW" = (
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -55011,10 +55008,10 @@
name = "containment blast door"
},
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/turf/open/floor/engine,
@@ -55041,7 +55038,7 @@
/turf/open/floor/plating,
/area/security/execution/transfer)
"hwx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55079,21 +55076,18 @@
dir = 1
},
/obj/item/wrench,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
"hzd" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
@@ -55101,8 +55095,19 @@
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/port)
+"hCE" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1{
+ dir = 10
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/engine/engineering)
"hDG" = (
/obj/machinery/door/airlock/engineering{
name = "Auxillary Base Construction";
@@ -55112,6 +55117,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
+"hEU" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"hEX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -55161,11 +55173,15 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
+"hMa" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/maintenance/disposal/incinerator)
"hOx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55177,6 +55193,18 @@
/obj/item/weldingtool,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
+"hPG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"hPN" = (
/obj/structure/table/glass,
/obj/item/clothing/glasses/science,
@@ -55200,14 +55228,19 @@
/area/maintenance/department/science)
"hQz" = (
/obj/structure/closet/emcloset/anchored,
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/tcommsat/computer)
"hQC" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
"hSM" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -55246,7 +55279,7 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"hUJ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55254,6 +55287,25 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"hUX" = (
+/obj/machinery/computer/turbine_computer{
+ dir = 8;
+ id = "incineratorturbine"
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_main{
+ pixel_x = 24;
+ pixel_y = 6
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_aux{
+ pixel_x = 24;
+ pixel_y = -6
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"hVx" = (
/obj/structure/chair{
dir = 4
@@ -55284,7 +55336,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"hZB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -55295,6 +55347,17 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"hZQ" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 9
+ },
+/obj/structure/window/plasma/reinforced/spawner/west,
+/obj/machinery/power/rad_collector/anchored,
+/turf/open/floor/engine,
+/area/engine/supermatter)
"iab" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -55320,11 +55383,18 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"ick" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/dark,
/area/library)
+"igl" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"igE" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
@@ -55337,7 +55407,7 @@
dir = 8;
layer = 2.9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
@@ -55361,7 +55431,7 @@
/area/science/xenobiology)
"ijF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -55373,6 +55443,12 @@
icon_state = "platingdmg3"
},
/area/maintenance/department/science)
+"ika" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
"ikB" = (
/obj/structure/closet/secure_closet/medical2,
/turf/open/floor/plating,
@@ -55381,6 +55457,16 @@
/obj/machinery/processor/slime,
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"imB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"ioj" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -55396,6 +55482,13 @@
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
+"ipH" = (
+/obj/effect/turf_decal/caution,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
"iqc" = (
/turf/open/floor/plasteel/stairs/right,
/area/maintenance/department/crew_quarters/dorms)
@@ -55420,7 +55513,7 @@
name = "Test Chamber";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/green{
@@ -55432,7 +55525,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"iyg" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -55443,7 +55536,12 @@
/area/maintenance/department/engine)
"iyJ" = (
/obj/structure/disposalpipe/segment,
-/turf/closed/wall/r_wall,
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "SupermatterExternal";
+ name = "radiation shutters"
+ },
+/turf/open/floor/plating,
/area/engine/engineering)
"izB" = (
/obj/machinery/door/airlock/external{
@@ -55459,8 +55557,13 @@
luminosity = 2
},
/area/maintenance/department/science)
+"izP" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space/basic,
+/area/space/nearstation)
"iAx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -55469,6 +55572,11 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
+"iBq" = (
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
"iBJ" = (
/obj/machinery/camera{
c_tag = "Telecomms External Fore";
@@ -55476,7 +55584,7 @@
network = list("tcomms");
start_active = 1
},
-/obj/structure/cable/yellow{
+/obj/structure/cable{
icon_state = "0-2"
},
/turf/open/floor/plating/airless,
@@ -55492,13 +55600,9 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"iCs" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/engine,
/area/engine/engineering)
"iCV" = (
/obj/effect/turf_decal/stripes/line{
@@ -55533,7 +55637,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -55549,6 +55653,10 @@
},
/turf/open/floor/plasteel,
/area/science/xenobiology)
+"iLF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/engine,
+/area/engine/engineering)
"iPj" = (
/obj/machinery/igniter{
id = "xenoigniter";
@@ -55598,13 +55706,13 @@
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
/area/security/execution/transfer)
"iSz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55615,6 +55723,13 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"iUE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
"iUX" = (
/turf/closed/wall/r_wall,
/area/science/mixing/chamber)
@@ -55633,6 +55748,23 @@
},
/turf/open/floor/plating,
/area/maintenance/department/cargo)
+"iYO" = (
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"jcB" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "Atmospherics External Access";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal/incinerator)
"jcT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
@@ -55668,7 +55800,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -55676,6 +55808,13 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"jhq" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"jhD" = (
/obj/structure/sink{
dir = 8;
@@ -55698,6 +55837,21 @@
},
/turf/open/floor/wood,
/area/lawoffice)
+"jkf" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Filtered Loop to Chamber"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/caution{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"jlb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -55711,7 +55865,7 @@
/obj/machinery/requests_console{
announcementConsole = 0;
department = "Engineering";
- departmentType = 4;
+ departmentType = 3;
name = "Engineering RC";
pixel_x = -32
},
@@ -55730,7 +55884,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -55747,7 +55901,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"jtf" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/green,
@@ -55760,7 +55914,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"jvi" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/firealarm{
@@ -55799,6 +55953,30 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"jza" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
+"jzi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
"jzz" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/sign/warning/vacuum/external,
@@ -55820,21 +55998,11 @@
/turf/open/floor/plating,
/area/maintenance/department/cargo)
"jBn" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Engine Containment Starboard Fore";
- dir = 2;
- network = list("engine")
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/structure/cable{
- icon_state = "2-4"
- },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating/airless,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
/area/engine/engineering)
"jCv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -55875,7 +56043,7 @@
/area/maintenance/department/science)
"jFO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/carpet,
@@ -55892,15 +56060,34 @@
},
/turf/open/floor/plating,
/area/maintenance/department/crew_quarters/dorms)
-"jLW" = (
-/obj/machinery/atmospherics/pipe/simple/purple/visible,
-/turf/closed/wall/r_wall,
-/area/maintenance/disposal/incinerator)
+"jMt" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/airalarm/engine{
+ pixel_y = 22
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
"jMS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/spawner/xmastree,
/turf/open/floor/carpet,
/area/library)
+"jOe" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/engineering/glass/critical{
+ heat_proof = 1;
+ name = "Supermatter Chamber";
+ req_access_txt = "10"
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
"jOB" = (
/turf/open/floor/plating,
/area/storage/emergency/starboard)
@@ -55929,7 +56116,7 @@
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -55941,7 +56128,7 @@
/obj/machinery/light{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -55956,7 +56143,7 @@
/turf/closed/wall,
/area/maintenance/department/engine)
"jTh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -56020,6 +56207,16 @@
icon_state = "platingdmg3"
},
/area/maintenance/department/engine)
+"kbV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
"kfh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -56036,6 +56233,19 @@
/obj/item/storage/book/bible,
/turf/open/floor/carpet,
/area/chapel/office)
+"kfS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/emitter/anchored{
+ dir = 8;
+ state = 2
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"kgR" = (
/obj/structure/toilet{
dir = 4
@@ -56101,18 +56311,6 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/engine/engineering)
-"knw" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"kpK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -56133,6 +56331,14 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"ktM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"kvj" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -56162,7 +56368,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"kxj" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/carpet,
@@ -56279,7 +56485,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -56319,7 +56525,7 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"kJo" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -56334,19 +56540,30 @@
icon_state = "platingdmg3"
},
/area/maintenance/department/security/brig)
-"kJN" = (
-/obj/machinery/field/generator,
-/obj/machinery/light{
- dir = 4;
- light_color = "#c1caff"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"kKI" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/closet,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
+"kMO" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/caution{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
"kNf" = (
/obj/machinery/door/window/northleft{
base_state = "right";
@@ -56355,7 +56572,7 @@
name = "Containment Pen #4";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -56381,7 +56598,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -56414,11 +56631,20 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"kSw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"kSF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -56437,16 +56663,49 @@
},
/turf/open/floor/plating,
/area/storage/emergency/port)
-"kWQ" = (
+"kUj" = (
/obj/structure/cable{
- icon_state = "0-8"
+ icon_state = "1-2"
},
-/obj/machinery/power/emitter/anchored{
- dir = 8;
- state = 2
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/turf/open/floor/plating/airless,
+/obj/machinery/button/door{
+ id = "Supermatter";
+ name = "Shielding Control";
+ pixel_x = 25;
+ req_access_txt = "11"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/engine,
/area/engine/engineering)
+"kWQ" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"kXe" = (
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"lbC" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"lcU" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -56474,18 +56733,28 @@
},
/turf/open/floor/plating,
/area/security/execution/transfer)
+"lfH" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"lhu" = (
+/obj/machinery/shieldgen,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#c1caff"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"lhA" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"liR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
/area/engine/engineering)
"lje" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
@@ -56530,6 +56799,17 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
+"ltl" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"ltu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"lzJ" = (
/obj/structure/closet/crate/bin,
/turf/open/floor/carpet,
@@ -56544,6 +56824,12 @@
"lAs" = (
/turf/closed/wall,
/area/quartermaster/sorting)
+"lAK" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"lAR" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -56556,6 +56842,17 @@
},
/turf/open/floor/plasteel/white,
/area/science/explab)
+"lBJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Supermatter";
+ name = "supermatter shielding"
+ },
+/obj/item/wrench,
+/turf/open/floor/plating,
+/area/engine/supermatter)
"lBP" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -56572,7 +56869,7 @@
/turf/open/space/basic,
/area/space/nearstation)
"lFh" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/holopad,
@@ -56581,6 +56878,13 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"lFA" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
"lGp" = (
/obj/structure/weightmachine/weightlifter,
/turf/open/floor/plasteel/dark,
@@ -56597,7 +56901,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"lGS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/green{
@@ -56621,11 +56925,11 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"lIr" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
@@ -56640,7 +56944,7 @@
req_access_txt = "0"
},
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -56650,7 +56954,7 @@
/area/storage/emergency/starboard)
"lMU" = (
/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -56694,22 +56998,22 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"lRY" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"lTC" = (
/obj/item/shard,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"lWv" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"lWy" = (
/turf/open/floor/plating,
/area/maintenance/department/science)
@@ -56735,11 +57039,24 @@
/obj/item/clothing/head/beret,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"lXk" = (
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access";
+ req_access_txt = "10;13"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"mal" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -56782,10 +57099,10 @@
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
"mci" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/engine/engineering)
"mdL" = (
@@ -56801,11 +57118,17 @@
/turf/open/floor/plasteel/white,
/area/science/lab)
"meF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"mgX" = (
/obj/structure/cable{
icon_state = "1-2"
},
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plating/airless,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
"mlr" = (
/obj/structure/lattice,
@@ -56831,9 +57154,9 @@
/turf/open/floor/wood,
/area/maintenance/department/crew_quarters/dorms)
"mpd" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/engine/engineering)
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/supermatter)
"mpy" = (
/obj/structure/table/wood,
/obj/item/paper_bin,
@@ -56852,9 +57175,13 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"mqH" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
"msX" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -56874,7 +57201,7 @@
/turf/closed/wall,
/area/maintenance/department/security/brig)
"mtI" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc/highcap/five_k{
@@ -56902,19 +57229,17 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"mwG" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/structure/sign/warning/vacuum/external{
- pixel_x = 32
- },
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
"mxy" = (
/obj/machinery/power/terminal{
dir = 4
},
-/obj/structure/cable/yellow,
+/obj/structure/cable,
/turf/open/floor/plating,
/area/tcommsat/computer)
"myu" = (
@@ -57004,13 +57329,13 @@
/turf/open/floor/plasteel/dark,
/area/library/lounge)
"mKk" = (
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "1-8"
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
"mLB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57035,6 +57360,20 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"mOH" = (
+/obj/machinery/button/ignition/incinerator/atmos{
+ pixel_x = 26;
+ pixel_y = -6
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"mPh" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -57054,7 +57393,7 @@
/turf/open/floor/plating,
/area/maintenance/department/science)
"mTS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -57062,6 +57401,12 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"mUa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"mVM" = (
/turf/open/floor/plating/airless,
/area/space/nearstation)
@@ -57074,6 +57419,15 @@
"mZE" = (
/turf/open/space/basic,
/area/space/nearstation)
+"mZR" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/engine,
+/area/engine/engineering)
"naq" = (
/obj/structure/disposaloutlet{
dir = 4
@@ -57089,6 +57443,12 @@
icon_state = "platingdmg3"
},
/area/maintenance/department/science)
+"ndP" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/space/basic,
+/area/space)
"nev" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -57101,6 +57461,16 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"nfj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"nfz" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -57149,6 +57519,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/chapel/office)
+"nmx" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
"nnf" = (
/obj/effect/turf_decal/tile/yellow,
/obj/effect/turf_decal/tile/yellow{
@@ -57173,8 +57550,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"nqj" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"nqV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -57183,6 +57566,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"nrQ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Filter to Freezer"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"nsy" = (
/obj/structure/table,
/obj/item/stack/sheet/metal/fifty,
@@ -57199,9 +57589,9 @@
dir = 8;
name = "Auxillary Base Construction APC";
areastring = "/area/construction/mining/aux_base";
- pixel_x = -24
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -57216,7 +57606,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small{
@@ -57234,6 +57624,15 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"nwg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"nxT" = (
/obj/machinery/smartfridge/extract/preloaded,
/turf/open/floor/plasteel,
@@ -57266,17 +57665,10 @@
},
/area/maintenance/department/science)
"nAs" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 1
- },
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
"nBw" = (
/obj/machinery/computer/crew{
@@ -57316,7 +57708,7 @@
/area/hallway/secondary/exit/departure_lounge)
"nEb" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable,
@@ -57354,7 +57746,7 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -57380,7 +57772,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"nMG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -57395,7 +57787,7 @@
dir = 2;
network = list("tcomms")
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/yellow{
@@ -57406,6 +57798,15 @@
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
+"nMP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"nNJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -57436,6 +57837,13 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"nPh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"nPA" = (
/obj/item/chair,
/turf/open/floor/plating,
@@ -57450,6 +57858,18 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"nQt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"nSj" = (
/obj/structure/grille/broken,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -57462,6 +57882,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/lawoffice)
+"nUq" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
"nVz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sign/directions/evac{
@@ -57494,8 +57920,17 @@
/obj/effect/mapping_helpers/airlock/abandoned,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
+"oag" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
"obj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57530,6 +57965,10 @@
},
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"oex" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space)
"ofN" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/blue,
@@ -57539,7 +57978,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"ofX" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57608,7 +58047,7 @@
name = "Server Room";
req_access_txt = "61"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -57658,6 +58097,14 @@
/obj/structure/window/reinforced,
/turf/open/floor/plasteel,
/area/science/xenobiology)
+"ots" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"ous" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/loading_area{
@@ -57733,16 +58180,13 @@
/turf/closed/wall/r_wall,
/area/science/xenobiology)
"oCn" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/start/lawyer,
/turf/open/floor/carpet,
/area/lawoffice)
"oCX" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
@@ -57750,6 +58194,9 @@
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/starboard)
"oDP" = (
@@ -57775,6 +58222,17 @@
icon_state = "platingdmg3"
},
/area/maintenance/department/science)
+"oEN" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Supermatter";
+ name = "supermatter shielding"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/engine/supermatter)
"oEW" = (
/obj/machinery/button/door{
id = "misclab";
@@ -57823,14 +58281,17 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
"oKa" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance/two,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating{
@@ -57843,6 +58304,9 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/hallway/secondary/exit/departure_lounge)
+"oMk" = (
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"oMN" = (
/turf/open/floor/plasteel/stairs/left,
/area/maintenance/department/crew_quarters/dorms)
@@ -57858,7 +58322,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"oPx" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57884,7 +58348,7 @@
/area/maintenance/department/cargo)
"oSc" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/structure/disposalpipe/segment,
@@ -57895,13 +58359,13 @@
/turf/open/floor/engine,
/area/science/xenobiology)
"oSL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -57913,7 +58377,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -57926,7 +58390,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small{
@@ -57948,7 +58412,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -57979,6 +58443,12 @@
},
/turf/open/floor/plasteel/white,
/area/security/execution/transfer)
+"oXQ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3,
+/turf/open/space,
+/area/space/nearstation)
"oYj" = (
/obj/effect/turf_decal/loading_area{
dir = 4
@@ -57991,6 +58461,12 @@
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"paI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"pbm" = (
/obj/machinery/door/airlock/external{
name = "Pod Docking Bay"
@@ -58015,7 +58491,7 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"pdW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -58028,10 +58504,10 @@
/area/science/explab)
"pfz" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
@@ -58052,7 +58528,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"pjH" = (
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "1-2"
},
/turf/open/floor/plating/airless,
@@ -58067,6 +58543,12 @@
/obj/structure/piano,
/turf/open/floor/plasteel/dark,
/area/maintenance/department/crew_quarters/dorms)
+"pmj" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space,
+/area/space/nearstation)
"pnU" = (
/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{
dir = 4;
@@ -58087,19 +58569,15 @@
},
/turf/open/floor/plasteel/white/corner,
/area/hallway/secondary/exit/departure_lounge)
-"prQ" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
+"pth" = (
/obj/effect/turf_decal/stripes/corner{
- dir = 8
+ dir = 1
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"pvK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -58116,7 +58594,7 @@
/turf/open/floor/plasteel/dark,
/area/hallway/secondary/exit/departure_lounge)
"pwj" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -58131,8 +58609,16 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+"pAb" = (
+/obj/machinery/power/emitter,
+/obj/machinery/light{
+ dir = 8;
+ light_color = "#e8eaff"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"pBD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/sign/warning{
@@ -58159,7 +58645,7 @@
/turf/open/floor/plasteel/dark,
/area/chapel/office)
"pFy" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -58186,11 +58672,30 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads/hop)
+"pIh" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "inc_in"
+ },
+/turf/open/floor/plating/airless,
+/area/maintenance/disposal/incinerator)
"pKd" = (
/obj/effect/spawner/lootdrop/maintenance/two,
/obj/structure/closet/crate,
/turf/open/floor/plating,
/area/maintenance/department/cargo)
+"pKg" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Engine Containment Starboard Aft";
+ dir = 1;
+ network = list("engine")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"pMG" = (
/obj/structure/sink{
dir = 8;
@@ -58232,7 +58737,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/red{
@@ -58270,16 +58775,22 @@
icon_state = "wood-broken5"
},
/area/maintenance/department/engine)
+"pWb" = (
+/obj/structure/lattice,
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space/basic,
+/area/space/nearstation)
"pWm" = (
/obj/machinery/door/window/southleft{
dir = 4;
name = "Test Chamber";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -58305,7 +58816,7 @@
/area/hydroponics)
"pXc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/carpet,
@@ -58334,7 +58845,7 @@
areastring = "/area/lawoffice";
dir = 8;
name = "Law Office APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable,
/turf/open/floor/wood,
@@ -58360,14 +58871,9 @@
/turf/open/floor/plasteel/white,
/area/medical/virology)
"qbp" = (
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/machinery/power/emitter/anchored{
- dir = 4;
- state = 2
- },
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/meter,
+/turf/open/floor/engine,
/area/engine/engineering)
"qbZ" = (
/obj/structure/rack,
@@ -58398,7 +58904,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/firedoor,
@@ -58437,6 +58943,28 @@
/obj/machinery/iv_drip,
/turf/open/floor/plating,
/area/maintenance/department/science)
+"qqa" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 4
+ },
+/obj/structure/window/plasma/reinforced/spawner/west,
+/obj/machinery/power/rad_collector/anchored,
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"qrw" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
"qtA" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
@@ -58468,6 +58996,10 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
+"qux" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space)
"qxq" = (
/obj/machinery/atmospherics/components/binary/pump/on{
name = "Air Out"
@@ -58478,7 +59010,7 @@
/turf/open/floor/plating,
/area/tcommsat/computer)
"qyF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -58506,21 +59038,29 @@
/turf/open/floor/plasteel/dark,
/area/crew_quarters/bar)
"qFu" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/open/floor/plasteel/dark,
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "SupermatterExternal";
+ name = "radiation shutters"
+ },
+/turf/open/floor/plating,
/area/engine/engineering)
+"qFJ" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"qGu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"qGZ" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
@@ -58529,6 +59069,12 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads/chief)
+"qHu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
"qHI" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -58536,7 +59082,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -58564,13 +59110,13 @@
"qMi" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/general/visible,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/door/poddoor/preopen{
@@ -58583,13 +59129,13 @@
/turf/open/floor/plasteel/dark,
/area/library/lounge)
"qOH" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -58604,18 +59150,8 @@
},
/turf/open/floor/plasteel/dark,
/area/maintenance/department/crew_quarters/dorms)
-"qQr" = (
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"qQD" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -58673,11 +59209,15 @@
"qXq" = (
/obj/machinery/door/airlock/maintenance,
/obj/effect/mapping_helpers/airlock/abandoned,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"qXu" = (
+/obj/machinery/atmospherics/pipe/simple/purple/visible,
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
"qXH" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -58694,13 +59234,13 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
"qYq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/item/wrench,
@@ -58714,7 +59254,7 @@
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
"qYS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plasteel/dark/telecomms,
@@ -58736,6 +59276,11 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
+"rdn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
"reH" = (
/obj/item/reagent_containers/food/drinks/bottle/vodka,
/obj/structure/disposalpipe/segment{
@@ -58751,7 +59296,7 @@
"rgn" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -58794,7 +59339,7 @@
/turf/open/floor/plasteel/dark,
/area/hallway/secondary/exit/departure_lounge)
"riW" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -58832,7 +59377,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"roc" = (
-/obj/structure/cable,
+/obj/structure/cable/cyan,
/turf/open/floor/plating/airless,
/area/space/nearstation)
"ros" = (
@@ -58843,15 +59388,8 @@
luminosity = 2
},
/area/maintenance/department/science)
-"rqj" = (
-/obj/machinery/power/emitter,
-/obj/machinery/light{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
"rrb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -58873,7 +59411,7 @@
/area/chapel/office)
"rse" = (
/obj/machinery/power/smes/engineering,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -58889,6 +59427,24 @@
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
+"rtG" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"rue" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
"rui" = (
/obj/structure/closet/emcloset/anchored,
/obj/machinery/light/small{
@@ -58948,6 +59504,12 @@
icon_state = "panelscorched"
},
/area/maintenance/department/engine)
+"rzq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"rBh" = (
/obj/structure/mopbucket,
/obj/item/mop,
@@ -58962,6 +59524,12 @@
/obj/item/reagent_containers/blood/random,
/turf/open/floor/plating,
/area/maintenance/department/science)
+"rFj" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/solars/port)
"rFq" = (
/obj/structure/chair,
/obj/item/reagent_containers/food/snacks/donkpocket,
@@ -58999,9 +59567,6 @@
/turf/open/floor/plating,
/area/construction/mining/aux_base)
"rKr" = (
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
@@ -59009,6 +59574,9 @@
name = "Solar Maintenance";
req_access_txt = "10; 13"
},
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/maintenance/solars/port)
"rKL" = (
@@ -59027,6 +59595,13 @@
/obj/item/ammo_casing/shotgun/improvised,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"rLQ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
"rMV" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -59038,18 +59613,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/maintenance/department/science)
-"rPg" = (
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"rPW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
@@ -59081,7 +59644,7 @@
/turf/open/floor/plating,
/area/maintenance/solars/starboard)
"rXT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -59102,14 +59665,18 @@
},
/turf/open/floor/plating,
/area/storage/emergency/starboard)
-"rYY" = (
-/obj/structure/cable{
- icon_state = "1-2"
+"rYH" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
},
-/obj/effect/mapping_helpers/airlock/cyclelink_helper,
-/obj/machinery/door/airlock/external{
- name = "Engineering External Access";
- req_access_txt = "10;13"
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"rYY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
},
/turf/open/floor/plating,
/area/engine/engineering)
@@ -59131,7 +59698,7 @@
req_access_txt = "12";
req_one_access_txt = "32;47;48"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -59140,9 +59707,9 @@
/obj/machinery/power/apc/highcap/fifteen_k{
dir = 8;
name = "Engineering APC";
- pixel_x = -28
+ pixel_x = -25
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel,
@@ -59178,6 +59745,24 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/closed/wall,
/area/maintenance/department/security/brig)
+"slC" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"snY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/supermatter)
"spz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
@@ -59194,6 +59779,12 @@
},
/turf/open/floor/plasteel/dark,
/area/maintenance/department/crew_quarters/dorms)
+"sqi" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"sqQ" = (
/turf/open/floor/plating,
/area/maintenance/disposal)
@@ -59208,7 +59799,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"stQ" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/structure/sign/departments/science{
@@ -59235,8 +59826,19 @@
/obj/item/reagent_containers/food/snacks/meat/slab/monkey,
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"syn" = (
+"swE" = (
/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ dir = 5
+ },
+/obj/structure/window/plasma/reinforced/spawner/east,
+/obj/machinery/power/rad_collector/anchored,
+/turf/open/floor/engine,
+/area/engine/supermatter)
+"syn" = (
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59301,6 +59903,15 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"sIq" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/engine,
+/area/engine/engineering)
"sJp" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/effect/turf_decal/stripes/line,
@@ -59323,7 +59934,7 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"sNz" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
@@ -59335,6 +59946,13 @@
},
/turf/open/floor/plating,
/area/security/execution/transfer)
+"sPb" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"sQt" = (
/obj/machinery/door/airlock/external{
name = "Supply Dock Airlock";
@@ -59355,10 +59973,8 @@
},
/area/maintenance/department/engine)
"sWj" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
/area/engine/engineering)
"sWM" = (
/obj/effect/turf_decal/stripes/corner{
@@ -59366,6 +59982,21 @@
},
/turf/open/floor/plasteel/white,
/area/ai_monitored/turret_protected/ai)
+"sWU" = (
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"sXb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
"sXi" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -59380,13 +60011,6 @@
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall,
/area/science/xenobiology)
-"sYp" = (
-/obj/structure/lattice,
-/obj/machinery/light{
- dir = 2
- },
-/turf/open/space,
-/area/engine/engineering)
"sZh" = (
/obj/structure/closet/crate,
/turf/open/floor/plating,
@@ -59396,7 +60020,7 @@
/turf/open/floor/plating,
/area/maintenance/department/science)
"tan" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/centcom{
@@ -59413,6 +60037,12 @@
/obj/structure/chair/office/light,
/turf/open/floor/plasteel/dark,
/area/science/xenobiology)
+"taF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"taT" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
dir = 4;
@@ -59420,10 +60050,29 @@
},
/turf/open/floor/plasteel,
/area/science/xenobiology)
-"tcY" = (
+"tbC" = (
/obj/structure/cable{
icon_state = "4-8"
},
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Supermatter";
+ name = "supermatter shielding"
+ },
+/turf/open/floor/plating,
+/area/engine/supermatter)
+"tcr" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"tcY" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -59468,7 +60117,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"tfw" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating/airless,
@@ -59481,10 +60130,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/maintenance/department/security/brig)
-"thA" = (
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/closed/wall/r_wall,
-/area/maintenance/disposal/incinerator)
+"thT" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,
+/turf/open/floor/engine,
+/area/engine/engineering)
"thW" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
@@ -59503,7 +60156,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59511,6 +60164,12 @@
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
+"tky" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"tlc" = (
/obj/machinery/recharger,
/obj/structure/table,
@@ -59521,19 +60180,23 @@
/turf/open/floor/plasteel,
/area/tcommsat/computer)
"tlN" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "SupermatterExternal";
+ name = "radiation shutters"
+ },
/turf/open/floor/plating,
/area/engine/engineering)
+"tlU" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"tnY" = (
/obj/machinery/button/door{
id = "aux_base_shutters";
@@ -59555,9 +60218,18 @@
icon_state = "panelscorched"
},
/area/maintenance/department/security/brig)
+"tqO" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/engine,
+/area/engine/engineering)
"tqX" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/door/poddoor/preopen{
@@ -59566,8 +60238,15 @@
},
/turf/open/floor/plating,
/area/science/xenobiology)
+"trt" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
"tue" = (
-/obj/structure/cable{
+/obj/structure/cable/cyan{
icon_state = "2-4"
},
/turf/open/floor/plating/airless,
@@ -59587,7 +60266,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/the_singularitygen,
+/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/plating,
/area/engine/engineering)
"tvj" = (
@@ -59605,17 +60284,14 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"twv" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/effect/spawner/structure/window/reinforced,
/obj/structure/disposalpipe/segment{
dir = 5
},
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "SupermatterExternal";
+ name = "radiation shutters"
+ },
/turf/open/floor/plating,
/area/engine/engineering)
"typ" = (
@@ -59626,7 +60302,7 @@
},
/area/maintenance/department/science)
"tyL" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
@@ -59658,10 +60334,41 @@
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"tIS" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"tIU" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"tJe" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"tJX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"tMZ" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,
+/turf/open/floor/engine,
/area/engine/engineering)
"tPm" = (
/obj/structure/disposalpipe/segment{
@@ -59669,21 +60376,58 @@
},
/turf/closed/wall,
/area/engine/engineering)
+"tQj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/disposal/incinerator)
+"tQJ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Cold Loop Bypass"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"tRc" = (
/obj/structure/ore_box,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/department/engine)
+"tSK" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/caution{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/engine,
+/area/engine/engineering)
"tSL" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/department/science)
+"tSU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"tTl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"tUf" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3,
+/turf/open/space,
+/area/space/nearstation)
"tWc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59723,6 +60467,27 @@
},
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
+"tYc" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"tYU" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/reflector/box/anchored,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"uah" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
"uaC" = (
/obj/structure/chair/comfy/black{
dir = 8
@@ -59736,16 +60501,17 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"uaP" = (
-/obj/structure/cable/yellow{
- icon_state = "0-8"
+/obj/structure/cable{
+ icon_state = "1-4"
},
-/obj/structure/window/plasma/reinforced{
- dir = 4
+/obj/structure/cable{
+ icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
- dir = 8
+ dir = 4
},
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,
+/turf/open/floor/engine,
/area/engine/engineering)
"ubW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -59769,7 +60535,7 @@
/turf/open/floor/plasteel,
/area/science/xenobiology)
"ueV" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plating{
@@ -59803,7 +60569,7 @@
/area/maintenance/department/engine)
"ujI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -59828,14 +60594,14 @@
},
/turf/open/floor/plasteel,
/area/storage/primary)
+"ulV" = (
+/obj/structure/rack,
+/obj/item/gun/energy/e_gun/dragnet,
+/obj/item/gun/energy/e_gun/dragnet,
+/turf/open/floor/plasteel/dark,
+/area/ai_monitored/security/armory)
"ulY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/obj/machinery/power/grounding_rod{
- anchored = 1
- },
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"ume" = (
/obj/machinery/door/firedoor,
@@ -59863,8 +60629,11 @@
},
/area/maintenance/department/science)
"uoq" = (
-/turf/open/space,
-/area/engine/engineering)
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
"uos" = (
/obj/machinery/computer/camera_advanced/base_construction,
/obj/effect/turf_decal/stripes/line{
@@ -59880,6 +60649,12 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/security/execution/transfer)
+"urG" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
"urP" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -59887,6 +60662,11 @@
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/science/explab)
+"utI" = (
+/obj/machinery/atmospherics/pipe/layer_manifold,
+/obj/effect/spawner/structure/window/plasma/reinforced,
+/turf/open/floor/plating,
+/area/engine/engineering)
"uug" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
@@ -59899,7 +60679,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -59919,7 +60699,7 @@
/area/lawoffice)
"uvo" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/cable,
@@ -59949,7 +60729,7 @@
/area/maintenance/department/engine)
"uzn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/turf_decal/tile/yellow{
@@ -59974,6 +60754,12 @@
},
/turf/open/floor/engine,
/area/science/explab)
+"uBs" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"uCS" = (
/obj/machinery/door/poddoor/shutters{
id = "aux_base_shutters";
@@ -59983,7 +60769,7 @@
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"uHG" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plating/airless,
@@ -60007,7 +60793,7 @@
/turf/open/floor/plasteel/white,
/area/science/xenobiology)
"uLF" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -60032,24 +60818,51 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
+"uMr" = (
+/obj/machinery/power/supermatter_crystal/engine,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/engine,
+/area/engine/supermatter)
"uMt" = (
/obj/effect/turf_decal/plaque,
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"uNW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"uPu" = (
+/obj/machinery/power/smes,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"uQR" = (
/obj/item/ammo_casing/shotgun/beanbag,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"uRj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible/layer3{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/atmos)
"uRk" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
+/turf/closed/wall/r_wall,
+/area/engine/supermatter)
"uUQ" = (
/obj/machinery/door/airlock/maintenance{
name = "Engineering Maintenance";
@@ -60058,7 +60871,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
@@ -60077,19 +60890,20 @@
/turf/open/floor/carpet,
/area/lawoffice)
"uVW" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible/layer1{
+ dir = 5
},
-/obj/structure/cable{
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
/area/engine/engineering)
"uXG" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/landmark/event_spawn,
@@ -60101,10 +60915,10 @@
/area/science/xenobiology)
"uXH" = (
/obj/structure/cable{
- icon_state = "2-4"
+ icon_state = "4-8"
},
/obj/structure/cable{
- icon_state = "4-8"
+ icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/solars/starboard)
@@ -60136,7 +60950,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -60172,6 +60986,15 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
+"vjH" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
"vll" = (
/obj/structure/sign/warning,
/turf/closed/wall/r_wall,
@@ -60186,6 +61009,13 @@
},
/turf/open/floor/plasteel/dark,
/area/maintenance/department/crew_quarters/dorms)
+"vmA" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/engine,
+/area/engine/engineering)
"vmG" = (
/obj/machinery/atmospherics/components/trinary/filter,
/turf/open/floor/engine,
@@ -60210,7 +61040,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -60295,7 +61125,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -60313,13 +61143,13 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/dark,
/area/science/mixing)
"vCC" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -60347,7 +61177,7 @@
/turf/open/floor/plating,
/area/maintenance/department/engine)
"vIc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
@@ -60355,6 +61185,24 @@
},
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
+"vIM" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"vKD" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"vLy" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"vMx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -60372,16 +61220,22 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/dark,
/area/library)
+"vPX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"vRi" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating{
@@ -60417,6 +61271,19 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
+"vRw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/pump,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"vSC" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
"vTL" = (
/obj/machinery/vending/tool,
/obj/effect/turf_decal/tile/neutral{
@@ -60475,6 +61342,18 @@
},
/turf/closed/wall/r_wall,
/area/engine/engineering)
+"wdp" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"wdx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
@@ -60528,6 +61407,10 @@
icon_state = "platingdmg3"
},
/area/maintenance/department/security/brig)
+"wit" = (
+/obj/machinery/door/poddoor/incinerator_atmos_main,
+/turf/open/floor/engine/vacuum,
+/area/maintenance/disposal/incinerator)
"wiB" = (
/obj/item/shard{
icon_state = "small"
@@ -60535,6 +61418,13 @@
/obj/item/stack/cable_coil/red,
/turf/open/floor/plating,
/area/maintenance/department/engine)
+"wkA" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Atmos Supermatter Mix"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"wkZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 1
@@ -60566,30 +61456,18 @@
/obj/structure/sign/warning,
/turf/closed/wall,
/area/science/mixing)
-"woh" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
"woq" = (
/obj/structure/chair,
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"wpI" = (
-/obj/structure/window/plasma/reinforced{
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable/yellow{
- icon_state = "0-4"
+/obj/machinery/light{
+ dir = 8
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
"wqu" = (
/obj/effect/turf_decal/loading_area{
@@ -60606,7 +61484,7 @@
/turf/open/floor/wood,
/area/lawoffice)
"wun" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -60633,7 +61511,7 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"wxb" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -60651,6 +61529,12 @@
},
/turf/open/floor/plasteel/dark,
/area/security/brig)
+"wza" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"wzb" = (
/obj/structure/chair,
/turf/open/floor/wood,
@@ -60690,7 +61574,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -60713,6 +61597,17 @@
},
/turf/open/floor/plating,
/area/maintenance/department/science)
+"wGm" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ dir = 8
+ },
+/obj/structure/window/plasma/reinforced/spawner/east,
+/obj/machinery/power/rad_collector/anchored,
+/turf/open/floor/engine,
+/area/engine/supermatter)
"wIv" = (
/obj/machinery/power/apc/highcap/five_k{
dir = 8;
@@ -60720,37 +61615,32 @@
pixel_x = -25;
pixel_y = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plating,
/area/maintenance/department/engine)
-"wJP" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/purple/visible{
- dir = 9
- },
-/turf/open/space,
-/area/space/nearstation)
"wKa" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/hallway/secondary/exit/departure_lounge)
-"wKK" = (
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating,
-/area/engine/engineering)
"wLo" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
id = "cmoshutters";
name = "Privacy shutters"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/crew_quarters/heads/cmo)
+"wLq" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/maintenance/disposal/incinerator)
"wMF" = (
/obj/effect/spawner/lootdrop/three_course_meal,
/obj/effect/spawner/lootdrop/three_course_meal,
@@ -60760,14 +61650,14 @@
},
/area/maintenance/department/crew_quarters/dorms)
"wMM" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/department/engine)
"wNq" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
@@ -60798,7 +61688,7 @@
/area/science/mixing)
"wQU" = (
/obj/effect/spawner/lootdrop/maintenance,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -60818,7 +61708,7 @@
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating{
@@ -60829,9 +61719,9 @@
/obj/machinery/power/apc{
dir = 1;
name = "Brig Maintenance APC";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -60860,6 +61750,12 @@
icon_state = "platingdmg3"
},
/area/maintenance/department/science)
+"wTX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"wUf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
@@ -60881,7 +61777,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -60911,7 +61807,7 @@
/turf/open/floor/plating,
/area/maintenance/department/security/brig)
"xah" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden{
@@ -60999,7 +61895,7 @@
/turf/open/floor/plasteel/dark,
/area/library)
"xjc" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/dark,
@@ -61023,7 +61919,7 @@
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"xjT" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/purple{
@@ -61110,6 +62006,25 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
+"xvV" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/caution{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
"xxw" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2
@@ -61128,19 +62043,19 @@
name = "Containment Pen #2";
req_access_txt = "55"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/engine,
/area/science/xenobiology)
"xxS" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -61166,10 +62081,10 @@
/area/science/xenobiology)
"xCV" = (
/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/structure/disposalpipe/segment,
@@ -61190,9 +62105,9 @@
layer = 4;
name = "Telecomms Server APC";
areastring = "/area/tcommsat/server";
- pixel_y = 24
+ pixel_y = 23
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plasteel/dark/telecomms,
@@ -61253,6 +62168,13 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plating,
/area/construction/mining/aux_base)
+"xOI" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
"xPa" = (
/obj/machinery/airalarm{
pixel_y = 22
@@ -61261,7 +62183,7 @@
/area/science/explab)
"xQc" = (
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
@@ -61297,6 +62219,18 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
+"xVD" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
"xWl" = (
/obj/item/pen,
/obj/item/paper_bin{
@@ -77670,7 +78604,7 @@ aiu
azZ
axC
ayA
-azP
+azN
aAW
axC
aaa
@@ -78698,7 +79632,7 @@ aiu
wxb
axC
xuv
-azN
+rFj
vtT
vtT
aiu
@@ -84336,8 +85270,8 @@ aik
aiM
ajh
ajR
+ulV
akN
-aiM
amj
amX
anH
@@ -85680,7 +86614,7 @@ bmi
bjN
bow
bpz
-bpz
+sXb
bss
btV
bou
@@ -87782,9 +88716,9 @@ bXk
bXk
bXk
bXk
-bXk
-bXk
-bXk
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -88034,11 +88968,8 @@ oYj
uMo
bXk
mci
-cbX
-ceq
-ceq
-rqj
-ceq
+vKD
+pAb
ceq
ceq
bXk
@@ -88117,6 +89048,9 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
"}
(105,1,1) = {"
aaa
@@ -88246,7 +89180,7 @@ bil
biY
bjT
ble
-bmq
+aab
bmq
boC
bpI
@@ -88292,12 +89226,9 @@ cdI
cri
eVW
cbX
-wKK
-wKK
-wKK
-wKK
-wKK
-wKK
+ceq
+ceq
+ceq
bXk
aaa
aaa
@@ -88324,6 +89255,9 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
abI
aaa
aaa
@@ -88549,12 +89483,9 @@ cdI
cri
eVW
cbX
-cBQ
-cBQ
-cBQ
-cBQ
-cBQ
-cBQ
+ccQ
+ccQ
+ccQ
bXk
aaa
aaa
@@ -88579,6 +89510,9 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
adR
adR
adR
@@ -88806,11 +89740,8 @@ ous
bXk
tuL
ccR
+lhu
cbV
-cbV
-kJN
-ccQ
-ccQ
ccQ
bXk
aaa
@@ -88838,6 +89769,9 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
abI
aaa
aaa
@@ -89067,9 +90001,9 @@ bXk
bXk
bXk
bXk
-bXk
-bXk
-bXk
+aht
+aht
+aht
aht
abI
abI
@@ -89602,8 +90536,8 @@ mVM
mVM
mVM
tfw
-pjH
-pjH
+tky
+tky
uHG
clw
clw
@@ -89829,7 +90763,7 @@ bZy
bZy
cbc
cbZ
-bZy
+nPh
cdL
cer
ceV
@@ -89845,8 +90779,8 @@ aht
aht
aaa
aaa
-aht
-aht
+aaa
+aaa
aaa
aaa
aaa
@@ -90102,8 +91036,8 @@ aht
aht
aaa
aaa
-aht
-aht
+aaa
+aaa
aaa
aaa
aaa
@@ -90352,20 +91286,20 @@ bXk
bXk
bXk
bXk
-bXk
cbj
bXk
+bXk
cbj
bXk
bXk
bXk
-bXk
-ckJ
aaa
aaa
aaa
aaa
aaa
+fon
+aaa
aaa
aaa
aaa
@@ -90602,26 +91536,26 @@ cbf
ccb
ccS
cdO
-bXk
+cbj
ceX
-iyJ
+wdp
cfS
fFv
fFv
fFv
-fFv
-fFv
+ePB
+imB
cir
+cJw
fFv
-fFv
-fFv
-fFv
-fFv
+bnK
bXk
-aaa
-aaa
-aaa
-aaa
+aht
+aht
+aht
+aht
+aht
+fon
aaa
aaa
aaa
@@ -90857,28 +91791,28 @@ bZA
cak
cbg
bYC
-cam
+cal
cdP
rYY
mwG
nAs
cfT
-fFv
-fFv
+uBs
+gkz
qbp
-fFv
-fFv
-dMG
-fFv
-fFv
-qbp
-fFv
-fFv
+fEl
+fEl
+lfH
+nrQ
+dYQ
+iUE
bXk
+aht
+aht
+aht
aaa
aaa
-aaa
-aaa
+fon
aaa
aaa
aaa
@@ -91111,31 +92045,31 @@ bXk
bYc
bYO
bZC
-cal
+uNW
cbh
cam
cam
cdQ
-bXk
-bTE
-bXk
+cbj
+fwi
+wza
cfU
tIS
iCs
-rPg
-cBR
-cBR
-knw
-cBR
+iCs
+iCs
+iCs
+iCs
cBR
+rdn
uVW
-dUv
-ckr
bXk
-aaa
-aaa
-aaa
-aaa
+bXk
+bXk
+aht
+aht
+aht
+fon
aaa
aaa
aaa
@@ -91379,20 +92313,20 @@ ulY
cfV
cgu
cgU
-cgU
-chw
-chw
+mqH
chw
+mqH
chw
+mqH
cjs
-cfV
-cfV
-cfV
+hPG
+tSU
+fhE
bXk
-abI
-aaa
-aaa
-aaa
+cdm
+cdm
+oex
+fon
aaa
aaa
aaa
@@ -91631,24 +92565,24 @@ ccc
ccV
cdR
qFu
-cet
-ulY
-cfV
+taF
+dfr
+eJU
cgv
-cfV
-sWj
+thT
+kUj
uaP
cgV
-uaP
-cgV
-uaP
+tMZ
+jzi
+rYH
ciG
-cfV
-cfV
-bXk
-abI
-abI
-aaa
+dqb
+hCE
+utI
+vSC
+ahi
+oex
aaa
aaa
aaa
@@ -91888,25 +92822,25 @@ bXk
ccW
wcs
iyJ
-cfa
-cfa
+iyJ
+iyJ
twv
-cgv
+fsA
sWj
uRk
-uoq
-fyO
-mpd
-fyO
-uoq
-prQ
-ciG
-cfV
-bXk
-abI
-aaa
-aaa
-aaa
+tbC
+tbC
+tbC
+uRk
+tqO
+lAK
+sqi
+cCI
+cbj
+ahi
+cdm
+oex
+fon
aaa
aaa
aaa
@@ -92148,22 +93082,22 @@ ceu
cfb
cfu
tlN
-cgv
+fsA
cCI
uoq
-fyO
-fyO
-mpd
-fyO
-fyO
-uoq
+wGm
+wGm
+swE
+uRk
+mZR
+nMP
hQC
-mpd
+sWj
bXk
abI
-aaa
-aaa
-aaa
+aht
+aht
+fon
aaa
aaa
aaa
@@ -92395,32 +93329,32 @@ bWw
bXm
bYg
bYT
-bZA
+kSw
caq
cbk
cce
-ccY
-cdT
-cev
+ccZ
+ccZ
+ccZ
cfc
-cfv
+cfx
tlN
-cgv
-cCI
+xvV
+jkf
fyO
-fyO
-sWj
+snY
+ham
cgT
-ciG
-fyO
-fyO
-hQC
-mpd
+uRk
+uRk
+uRk
+slC
+sWj
bXk
abI
aaa
aaa
-aaa
+fon
aaa
aaa
aaa
@@ -92654,30 +93588,30 @@ bYh
bYU
bZE
car
-bXk
+mgX
ccf
-ccZ
-cdU
-cew
-cfd
+ccY
+ccY
+ccY
+tYU
cfw
cfW
cgw
-cCI
+vIM
mpd
-mpd
-cCI
+qHu
+uMr
cit
ciH
-mpd
-mpd
-hQC
-sYp
+ipH
+jOe
+dWO
+sWj
bXk
abI
-aaa
-aaa
-aaa
+aht
+aht
+fon
aaa
aaa
aaa
@@ -92909,32 +93843,32 @@ bWy
bXo
bYi
bYV
-bZA
-cdN
-ccW
+kSw
+caq
+cbk
ceY
cda
-cbX
+ccZ
cex
cfe
cfx
tlN
-cgv
-cCI
-fyO
-fyO
-fyF
+kMO
+tSK
+eWo
+oag
+rue
cgY
-ciI
-fyO
-fyO
-hQC
-mpd
+uRk
+uRk
+uRk
+jMt
+sWj
bXk
aaa
aaa
aaa
-aaa
+fon
aaa
aaa
aaa
@@ -93048,8 +93982,8 @@ acw
abY
abV
acc
-acG
-acQ
+sWM
+acP
acX
adi
adt
@@ -93173,20 +94107,20 @@ ccg
cey
cdW
cey
-cey
+kfS
cfy
tlN
-cgv
+nQt
cCI
-uoq
-fyO
-fyO
-mpd
-fyO
-fyO
-uoq
-hQC
-mpd
+ika
+qqa
+qqa
+hZQ
+uRk
+sIq
+vRw
+cDy
+sWj
bXk
aaa
aaa
@@ -93305,7 +94239,7 @@ acx
acx
acz
acd
-acH
+acw
acP
acY
adj
@@ -93429,26 +94363,26 @@ cbj
bXk
ccW
bXk
-bXk
-cet
-cet
+qFu
+qFu
+qFu
tlN
-cgv
-fyF
-dnS
-fyO
-fyO
-mpd
-fyO
-fyO
+nQt
+sWj
+uRk
+tbC
+lBJ
+oEN
+uRk
+eqg
dZj
ciI
-cfV
-bXk
-aaa
+cCI
+cbj
aaa
aaa
aaa
+fon
aaa
aaa
aaa
@@ -93686,26 +94620,26 @@ cbl
cch
cdc
cdX
-fwR
-cet
-ulY
+qFu
+cCp
+eoo
oGm
-cgv
-cfV
+xVD
+nwg
fyF
cZt
-wpI
cZt
+tcr
wpI
-cZt
-ciI
-cfV
-cfV
+pth
+vPX
+lWv
+sWj
bXk
abI
-aaa
-aaa
-aaa
+aht
+aht
+fon
aaa
aaa
aaa
@@ -93942,27 +94876,27 @@ cam
cam
cam
cam
-cdI
-eWi
+vjH
+qFu
cet
ulY
-oGm
+flQ
cgx
-cgU
-cgU
-cBS
-cBS
-cBS
+sWU
+sWU
cBS
+tQJ
+ciG
+ciG
cjt
-cfV
-cfV
-cfV
+ftb
+vLy
+pKg
bXk
abI
-abI
-abI
-abI
+aaa
+aaa
+pmj
aaa
aaa
aaa
@@ -94200,26 +95134,26 @@ cbm
cci
cam
ogX
-bXk
-bXk
-bXk
+cbj
+fwi
+vPX
jBn
-tIS
+mUa
meF
chA
-woh
-woh
-qQr
-woh
-woh
+iLF
+iLF
+iLF
+iLF
+vmA
liR
-lRY
-cks
+bXk
+bXk
bXk
abI
-aaa
+aht
abI
-aaa
+fon
aaa
aaa
aaa
@@ -94451,32 +95385,32 @@ bWD
bWD
bTE
bYY
-bZA
+bZD
caw
cbn
ccj
-cam
+cah
cdY
-rYY
+ktM
cff
-nAs
+nqj
cfX
-fFv
-fFv
+rzq
+wkA
kWQ
-fFv
-fFv
-dMG
-fFv
-fFv
-kWQ
-fFv
-fFv
+ulY
+ulY
+ulY
+ulY
+lFA
+sWj
bXk
+aht
+aht
abI
aaa
aaa
-aaa
+fon
aaa
aaa
aaa
@@ -94712,27 +95646,27 @@ bZG
cax
cbo
cck
-cdf
-cdZ
-bXk
+cam
+cdI
+cbj
cfg
-bXk
+qrw
cfY
-fFv
-fFv
-fFv
-fFv
-fFv
-civ
-fFv
-fFv
-fFv
-fFv
-fFv
+tJX
+kbV
+gEI
+hqF
+dfr
+dfr
+nfj
+rtG
+wTX
bXk
+aht
+aaa
abI
-abI
-abI
+aaa
+aaa
aaa
aaa
aaa
@@ -94972,25 +95906,25 @@ cci
cam
cdI
bXk
+lXk
bXk
bXk
bXk
-bXk
-bXk
-bXk
-bXk
+evB
+iYO
cbj
-bXk
+evB
+evB
cbj
+rLQ
+evB
bXk
-bXk
-bXk
-bXk
-ckJ
+aht
+aaa
abI
-aaa
-aaa
-aaa
+aht
+aht
+fon
aaa
aaa
aaa
@@ -95229,25 +96163,25 @@ cam
cam
vXt
bXk
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+tJe
+bXk
+aht
+xOI
+izP
+tIU
+lbC
+uah
+lbC
+uah
+hEU
+eGh
+tYc
+aht
aaa
abI
aaa
aaa
-aaa
+fon
aaa
aaa
aaa
@@ -95486,25 +96420,25 @@ ceb
jPo
ory
bXk
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+kXe
+ckJ
+aht
+nmx
+lbC
+uah
+trt
+nmx
+trt
+nmx
+lbC
+uah
+trt
+aht
+aht
abI
-aaa
-aaa
-aaa
+fon
+fon
+fon
aaa
aaa
aaa
@@ -95743,23 +96677,23 @@ bXk
bXk
bXk
bXk
+ltl
abI
-adR
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aht
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
aaa
aaa
aaa
+fon
aaa
aaa
aaa
@@ -95991,32 +96925,32 @@ bVe
bVV
bWI
bXr
-bKQ
-acN
+fBp
+oXQ
bZK
-abI
-abI
-abI
-abI
-aaa
-aaa
-aaa
+tUf
+tUf
+tUf
+tUf
+iBq
+fBJ
+ndP
adR
aaa
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
aaa
-acO
-adR
-adR
-adR
-adR
-adR
-adR
-adR
-aaa
-aaa
-aaa
-aaa
-aaa
+fon
+aht
+fon
aaa
aaa
aaa
@@ -96260,20 +97194,20 @@ abI
abI
adR
aaa
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
+aht
+fon
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+gYo
aaa
aaa
aaa
@@ -96500,7 +97434,7 @@ bRu
bSd
bLW
bTJ
-bMf
+urG
bUs
bMf
fuR
@@ -96517,18 +97451,18 @@ aaa
aaa
adR
aaa
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fon
aaa
aaa
aaa
@@ -96774,20 +97708,20 @@ aaa
aaa
aaa
aaa
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
+nmx
+trt
+aht
+fon
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fon
aaa
aaa
aaa
@@ -97014,7 +97948,7 @@ bRv
bSe
bPQ
bTL
-bUs
+uRj
bMf
bVX
bWM
@@ -97031,20 +97965,20 @@ aaa
aaa
aaa
aaa
+sPb
+jhq
+sPb
+jhq
+sPb
+jhq
+sPb
+jhq
+sPb
+jhq
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fon
+aht
+fon
aaa
aaa
aaa
@@ -97271,7 +98205,7 @@ bQI
bQI
bQI
bTM
-bUs
+uRj
bMf
bOk
bWL
@@ -97288,18 +98222,18 @@ aby
aaa
aaa
aaa
+aht
+aaa
+aaa
+aht
+aaa
+aht
aaa
aaa
aaa
+aht
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fon
aaa
aaa
aaa
@@ -97543,22 +98477,22 @@ bJP
abI
aby
aaa
+fon
+fon
+fon
aaa
+fon
+fon
+fon
+fon
+fon
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bHI
+fon
+fon
+fon
+aht
+fon
aaa
aaa
aaa
@@ -97785,7 +98719,7 @@ bRx
bQJ
bPQ
bTO
-bMf
+urG
bMf
bOk
bWL
@@ -97799,23 +98733,23 @@ ccn
bJP
aaa
aby
+aht
+pWb
+aaa
+aht
+aaa
+aht
aaa
aaa
aaa
+aht
aaa
aaa
+cFB
aaa
+aht
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fon
aaa
aaa
aaa
@@ -98042,7 +98976,7 @@ bPQ
bPQ
bPQ
bTP
-bMf
+urG
bVh
bVY
bWM
@@ -98057,22 +98991,22 @@ bJP
aaa
aby
aaa
+fon
aaa
+fon
+fon
+fon
+fon
aaa
+bHI
+fon
+fon
+fon
+fon
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+fon
+fon
+fon
aaa
aaa
aaa
@@ -98299,7 +99233,7 @@ bQK
bQK
bPQ
bTQ
-bMf
+urG
bKX
bOk
bWN
@@ -98314,7 +99248,7 @@ bJP
abI
aby
aaa
-aaa
+fon
aaa
aaa
aaa
@@ -98556,7 +99490,7 @@ bRy
bSf
bSR
bTM
-bMf
+nUq
bKX
bVZ
bWO
@@ -98813,7 +99747,7 @@ bRz
bMf
bSS
bTR
-bMf
+gbu
bKX
bWa
bMf
@@ -99340,7 +100274,7 @@ cBT
bYw
bYw
bYw
-aht
+bYw
aht
aby
aaa
@@ -99595,9 +100529,9 @@ bZO
caI
cbA
ccp
-cdg
-cbz
-aaa
+aac
+aae
+hMa
aaa
aby
aaa
@@ -99848,11 +100782,12 @@ bWQ
bXE
bYu
bZg
-bZP
-caJ
-cbB
-ccq
-cdh
+oMk
+oMk
+oMk
+wLq
+oMk
+tlU
bYw
aaa
aaa
@@ -99938,7 +100873,6 @@ aaa
aaa
aaa
aaa
-aaa
"}
(151,1,1) = {"
aaa
@@ -100105,11 +101039,12 @@ bNl
bXF
bYv
bZh
-bZQ
+bZP
caK
cbC
+fbC
ccr
-cdi
+ots
cec
ceA
aaa
@@ -100195,7 +101130,6 @@ aaa
aaa
aaa
aaa
-aaa
"}
(152,1,1) = {"
aaa
@@ -100360,14 +101294,14 @@ bVl
bWc
bWR
bXG
-jLW
-bZi
-bZR
-caL
-bZT
-bYw
-cdj
bYw
+uPu
+hUX
+cYq
+mOH
+igl
+igl
+jza
bYw
aaa
gYo
@@ -100616,15 +101550,15 @@ bUA
bVm
bWd
bWS
-wJP
-aht
-bZj
-bZS
-caM
-cbE
-thA
+bWd
+qXu
+bZi
+bZR
+caL
+bZT
+bYw
cdk
-ced
+tQj
bYw
aht
fon
@@ -100874,15 +101808,15 @@ bLb
bMi
bLb
bJP
-aaa
-bYw
-bZT
-caN
-bZT
-bYw
+oex
+bZj
+bZS
+caM
+fDm
+ltu
cdl
-bYw
-bYw
+paI
+pIh
aaa
mau
aaa
@@ -101131,15 +102065,15 @@ bVn
bWe
bWT
bJP
-aht
+mZE
bYw
-bZU
-caO
-cbF
-ccs
-cdm
-cdm
+bZT
+caN
+bZT
bYw
+jcB
+bYw
+abI
aht
fon
aaa
@@ -101390,12 +102324,12 @@ bVo
bJP
aht
bYw
-bYw
-caP
-bYw
-bYw
-aaa
-aaa
+bZU
+caO
+cbF
+ccs
+qux
+qux
aaa
aaa
aaa
@@ -101645,12 +102579,12 @@ bVo
bWg
bVo
bJP
-aaa
-aaa
+oex
+bYw
+bYw
+caP
bYw
-caQ
bYw
-aaa
aaa
aaa
aaa
@@ -101902,11 +102836,11 @@ bJP
bJP
bJP
bJP
-abI
-abI
-bZV
-caR
-bZV
+mZE
+mZE
+bYw
+caQ
+bYw
aaa
aaa
aaa
@@ -102159,11 +103093,11 @@ aaa
aaa
aaa
abI
-aaa
-aaa
-aaa
-aaa
-aaa
+abI
+abI
+qFJ
+wit
+qFJ
aaa
aaa
aaa
@@ -111621,7 +112555,7 @@ aaa
aaa
aaa
aaa
-bcQ
+bcR
aaa
aaa
aaa
@@ -111878,7 +112812,7 @@ aTC
aTC
aTC
aaa
-bcR
+bcS
aaa
aTC
aTC
@@ -112144,7 +113078,7 @@ beU
beU
beU
beU
-beU
+bkP
abI
aby
aaa
diff --git a/_maps/map_files/debug/multiz.dmm b/_maps/map_files/debug/multiz.dmm
index b3276091232..2beedab4783 100644
--- a/_maps/map_files/debug/multiz.dmm
+++ b/_maps/map_files/debug/multiz.dmm
@@ -75,7 +75,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/closet/secure_closet/engineering_electrical,
/obj/structure/cable{
@@ -115,7 +115,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Gravity Generator APC";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-8"
@@ -399,7 +399,7 @@
"bj" = (
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-2"
@@ -506,7 +506,7 @@
"bB" = (
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable,
/obj/structure/cable{
@@ -547,7 +547,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-2"
@@ -629,7 +629,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-2"
@@ -964,7 +964,7 @@
/obj/structure/cable,
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
@@ -995,7 +995,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable,
/obj/effect/turf_decal/stripes/line{
diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm
index 1fadeec6777..6eeac90ab2b 100644
--- a/_maps/map_files/debug/runtimestation.dmm
+++ b/_maps/map_files/debug/runtimestation.dmm
@@ -66,7 +66,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/closet/secure_closet/engineering_electrical{
locked = 0
@@ -112,7 +112,7 @@
/obj/machinery/power/apc{
dir = 1;
name = "Gravity Generator APC";
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-8"
@@ -542,7 +542,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-2"
@@ -652,7 +652,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-2"
@@ -1046,7 +1046,7 @@
/obj/structure/cable,
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
@@ -1093,7 +1093,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable{
@@ -1575,7 +1575,6 @@
/turf/open/floor/plating,
/area/quartermaster/storage)
"eD" = (
-/obj/machinery/vr_sleeper,
/turf/open/floor/plasteel,
/area/storage/primary)
"eE" = (
@@ -1660,7 +1659,7 @@
},
/obj/machinery/power/apc{
dir = 8;
- pixel_x = -24
+ pixel_x = -25
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
@@ -2146,7 +2145,7 @@
"fS" = (
/obj/machinery/power/apc{
dir = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-4"
@@ -2280,7 +2279,7 @@
},
/obj/machinery/power/apc{
dir = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/machinery/airalarm/unlocked{
pixel_x = 32
@@ -2503,7 +2502,7 @@
"hD" = (
/obj/machinery/power/apc{
dir = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-2"
@@ -2558,7 +2557,7 @@
},
/obj/machinery/power/apc{
dir = 1;
- pixel_y = 25
+ pixel_y = 23
},
/obj/structure/cable{
icon_state = "0-4"
diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm
index a2c1712990d..b011be59bca 100644
--- a/_maps/map_files/generic/CentCom.dmm
+++ b/_maps/map_files/generic/CentCom.dmm
@@ -1118,9 +1118,7 @@
/obj/structure/window{
dir = 8
},
-/obj/machinery/sleeper{
- dir = 1
- },
+/obj/machinery/stasis,
/turf/open/floor/holofloor{
icon_state = "white"
},
@@ -1132,9 +1130,7 @@
},
/area/holodeck/rec_center/medical)
"dd" = (
-/obj/machinery/sleeper{
- dir = 1
- },
+/obj/machinery/stasis,
/turf/open/floor/holofloor{
icon_state = "white"
},
@@ -1264,9 +1260,9 @@
/area/holodeck/rec_center/chapelcourt)
"dw" = (
/obj/structure/table/wood/fancy,
-/obj/item/clothing/suit/nun,
+/obj/item/clothing/suit/chaplainsuit/nun,
/obj/item/clothing/head/nun_hood,
-/obj/item/clothing/suit/holidaypriest,
+/obj/item/clothing/suit/chaplainsuit/holidaypriest,
/turf/open/floor/holofloor{
dir = 8;
icon_state = "dark"
@@ -1403,7 +1399,6 @@
/obj/structure/window/reinforced,
/obj/machinery/mass_driver{
dir = 1;
- icon_state = "mass_driver";
id = "trektorpedo1";
name = "photon torpedo tube"
},
@@ -1451,7 +1446,6 @@
/obj/structure/window/reinforced,
/obj/machinery/mass_driver{
dir = 1;
- icon_state = "mass_driver";
id = "trektorpedo2";
name = "photon torpedo tube"
},
@@ -1756,13 +1750,13 @@
/turf/open/floor/holofloor/plating,
/area/holodeck/rec_center/kobayashi)
"eJ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/holofloor/plating,
/area/holodeck/rec_center/kobayashi)
"eK" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/holofloor/plating,
@@ -5178,7 +5172,7 @@
/turf/open/floor/plasteel,
/area/centcom/supply)
"mH" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/brown{
@@ -5193,7 +5187,7 @@
/turf/open/floor/plasteel,
/area/centcom/supply)
"mI" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/turf_decal/tile/brown{
@@ -5509,7 +5503,7 @@
/turf/open/floor/plasteel,
/area/centcom/supply)
"nn" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
dir = 8
@@ -5800,7 +5794,7 @@
/turf/open/floor/plasteel,
/area/centcom/control)
"nN" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/plasteel/grimy,
/area/centcom/control)
"nO" = (
@@ -6506,10 +6500,19 @@
},
/turf/open/floor/plasteel/dark,
/area/tdome/tdomeobserve)
+"oU" = (
+/obj/structure/closet/emcloset,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
"oV" = (
-/obj/machinery/vr_sleeper{
- dir = 4
- },
/obj/machinery/light{
dir = 8
},
@@ -6644,7 +6647,7 @@
/turf/open/floor/plasteel,
/area/centcom/supply)
"pj" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/brown{
@@ -6656,7 +6659,7 @@
/turf/open/floor/plasteel,
/area/centcom/supply)
"pk" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/neutral{
@@ -6865,6 +6868,22 @@
},
/turf/open/floor/plasteel/dark,
/area/centcom/control)
+"px" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -28
+ },
+/obj/structure/sign/warning/securearea{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
"py" = (
/obj/machinery/smartfridge,
/turf/closed/indestructible{
@@ -6873,6 +6892,39 @@
smooth = 1
},
/area/centcom/holding)
+"pz" = (
+/turf/open/space/basic,
+/area/centcom/ferry)
+"pA" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry_away";
+ json_key = "ferry";
+ name = "CentCom Ferry Dock";
+ width = 5
+ },
+/turf/open/space,
+/area/centcom/ferry)
+"pB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supplypod/loading/ert)
+"pC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supplypod/loading/ert)
+"pD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supplypod/loading/ert)
"pE" = (
/obj/machinery/plantgenes/seedvault,
/obj/effect/turf_decal/tile/green{
@@ -7040,6 +7092,25 @@
/obj/item/stack/packageWrap,
/turf/open/floor/plasteel/cafeteria,
/area/centcom/holding)
+"pT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supplypod/loading/ert)
+"pU" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supplypod/loading/ert)
"pV" = (
/obj/machinery/light{
dir = 4
@@ -7050,6 +7121,12 @@
/obj/effect/landmark/ai_multicam_room,
/turf/open/ai_visible,
/area/ai_multicam_room)
+"pX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supplypod/loading/ert)
"pY" = (
/obj/machinery/washing_machine,
/turf/open/floor/plasteel/freezer{
@@ -7151,6 +7228,22 @@
},
/turf/open/floor/plasteel/dark,
/area/centcom/ferry)
+"qh" = (
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/secure/briefcase,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/centcom/ferry)
"qi" = (
/obj/structure/table/wood,
/obj/item/storage/secure/briefcase{
@@ -7407,6 +7500,16 @@
"qE" = (
/turf/closed/indestructible/riveted/uranium,
/area/wizard_station)
+"qF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supplypod/loading/ert)
+"qG" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/centcom/supplypod/loading/ert)
"qH" = (
/obj/structure/urinal{
pixel_y = 28
@@ -7548,6 +7651,25 @@
/obj/machinery/computer/shuttle,
/turf/open/floor/engine/cult,
/area/wizard_station)
+"rb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/centcom/supplypod/loading/ert)
+"rc" = (
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/centcom/ferry)
"rd" = (
/obj/structure/flora/grass/brown,
/obj/effect/light_emitter{
@@ -7823,7 +7945,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Commander's Office APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/structure/table/reinforced,
/obj/item/stack/sheet/metal/fifty,
@@ -8104,6 +8226,23 @@
},
/turf/open/floor/engine/cult,
/area/wizard_station)
+"rY" = (
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
+"rZ" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/taperecorder,
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
"sa" = (
/obj/structure/table/wood,
/obj/item/lighter,
@@ -8114,6 +8253,23 @@
/obj/machinery/vending/snack,
/turf/open/floor/plasteel,
/area/centcom/supplypod)
+"sc" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/centcom/ferry)
+"sd" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Orbital Drop Pod Loading";
+ req_access_txt = "106"
+ },
+/turf/open/floor/plasteel,
+/area/centcom/ferry)
"se" = (
/obj/machinery/light{
dir = 8
@@ -8160,7 +8316,6 @@
/turf/open/floor/plasteel,
/area/syndicate_mothership/control)
"si" = (
-/obj/machinery/computer/telecrystals/uplinker,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
@@ -8225,7 +8380,7 @@
/turf/open/floor/plasteel,
/area/centcom/ferry)
"sr" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/green{
@@ -8246,7 +8401,7 @@
/turf/open/floor/plasteel,
/area/centcom/ferry)
"st" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/turf_decal/tile/green{
@@ -8306,7 +8461,7 @@
/turf/open/floor/plasteel/grimy,
/area/centcom/ferry)
"sz" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -8340,7 +8495,7 @@
/turf/open/floor/plasteel/dark,
/area/centcom/ferry)
"sB" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
@@ -8616,11 +8771,35 @@
/area/wizard_station)
"sY" = (
/obj/machinery/door/airlock/centcom{
- name = "CentCom Supply";
+ name = "CentCom Supplypod Loading";
+ req_access_txt = "106"
+ },
+/turf/open/floor/plasteel/dark,
+/area/centcom/evac)
+"sZ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Supplypod Loading";
req_access_txt = "106"
},
/turf/open/floor/plasteel/dark,
/area/centcom/supplypod)
+"ta" = (
+/obj/machinery/light/floor,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/ferry)
+"tb" = (
+/turf/open/floor/white,
+/area/holodeck/rec_center/photobooth)
+"tc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/light/floor,
+/turf/open/floor/plating,
+/area/centcom/ferry)
+"td" = (
+/obj/structure/sign/departments/drop,
+/turf/closed/indestructible/riveted,
+/area/centcom/ferry)
"te" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/pizzaslice/mushroom,
@@ -8647,7 +8826,6 @@
/turf/open/floor/plasteel,
/area/syndicate_mothership/control)
"tg" = (
-/obj/machinery/computer/telecrystals/uplinker,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -8664,6 +8842,25 @@
},
/turf/open/floor/plating/airless,
/area/syndicate_mothership/control)
+"tj" = (
+/obj/structure/falsewall/wood,
+/obj/structure/mirror,
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/photobooth)
+"tk" = (
+/obj/structure/table/wood,
+/obj/item/paint/anycolor{
+ pixel_x = 7
+ },
+/obj/item/paint/anycolor{
+ pixel_x = -5
+ },
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/photobooth)
+"tl" = (
+/obj/structure/dresser,
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/photobooth)
"tn" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -8690,7 +8887,7 @@
/turf/open/floor/plasteel,
/area/centcom/ferry)
"tq" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/turf_decal/tile/green{
dir = 8
},
@@ -8744,7 +8941,7 @@
/turf/open/floor/plasteel/grimy,
/area/centcom/ferry)
"tz" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/structure/cable/white{
@@ -9202,7 +9399,7 @@
/turf/open/floor/plasteel/dark,
/area/centcom/control)
"uw" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/turf_decal/tile/red,
/obj/effect/turf_decal/tile/red{
dir = 8
@@ -9323,7 +9520,6 @@
/turf/open/floor/plasteel,
/area/syndicate_mothership/control)
"uM" = (
-/obj/machinery/computer/telecrystals/uplinker,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
@@ -9752,7 +9948,7 @@
name = "Hanger Bay Shutters";
pixel_x = -8;
pixel_y = 24;
- req_access_txt = "2"
+ req_access_txt = "101"
},
/obj/machinery/button/door/indestructible{
id = "XCCsec3";
@@ -10114,7 +10310,7 @@
id = "XCCFerry";
name = "Hanger Bay Shutters";
pixel_y = 24;
- req_access_txt = "2"
+ req_access_txt = "101"
},
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -10298,9 +10494,6 @@
/turf/open/floor/carpet,
/area/wizard_station)
"wV" = (
-/obj/machinery/computer/telecrystals/boss{
- dir = 1
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -10342,18 +10535,6 @@
},
/turf/open/floor/plasteel,
/area/syndicate_mothership/control)
-"xb" = (
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 13;
- id = "ferry_away";
- json_key = "ferry";
- name = "CentCom Ferry Dock";
- width = 5
- },
-/turf/open/space,
-/area/space)
"xc" = (
/obj/machinery/door/airlock/external{
name = "Ferry Airlock"
@@ -10673,13 +10854,13 @@
/turf/open/floor/plasteel/dark,
/area/centcom/control)
"xV" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/wood,
/area/centcom/control)
"xW" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/wood,
@@ -10792,32 +10973,10 @@
/obj/structure/sign/warning/vacuum,
/turf/open/floor/plating,
/area/centcom/ferry)
-"yo" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/centcom/ferry)
"yp" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/centcom/ferry)
-"yq" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -28
- },
-/obj/structure/sign/warning/securearea{
- pixel_x = 32
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/centcom/ferry)
"yr" = (
/obj/machinery/door/airlock/centcom{
name = "Briefing Room";
@@ -11315,12 +11474,12 @@
/turf/open/floor/plasteel/dark,
/area/centcom/ferry)
"zB" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/ert_spawn,
/turf/open/floor/plasteel/dark,
/area/centcom/ferry)
"zC" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/landmark/ert_spawn,
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -11481,9 +11640,7 @@
/turf/open/floor/holofloor,
/area/holodeck/rec_center/basketball)
"zV" = (
-/obj/structure/closet/secure_closet/freezer/meat{
- locked = 0
- },
+/obj/structure/closet/secure_closet/freezer/meat/open,
/obj/item/reagent_containers/food/snacks/carpmeat,
/obj/item/reagent_containers/food/snacks/carpmeat,
/obj/item/reagent_containers/food/snacks/carpmeat,
@@ -11587,7 +11744,7 @@
/turf/open/floor/plasteel/dark,
/area/centcom/ferry)
"Ah" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/ert_spawn,
@@ -11748,24 +11905,6 @@
"AH" = (
/turf/open/floor/plasteel,
/area/centcom/supplypod/loading/one)
-"AJ" = (
-/obj/structure/chair/comfy/brown{
- color = "#596479";
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/centcom/ferry)
-"AK" = (
-/obj/item/clipboard,
-/obj/item/folder/red,
-/obj/item/stamp/denied{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stamp,
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/grimy,
-/area/centcom/ferry)
"AL" = (
/obj/structure/table/reinforced,
/obj/item/flashlight/seclite,
@@ -11806,7 +11945,7 @@
/turf/open/floor/plasteel/dark,
/area/centcom/ferry)
"AP" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/landmark/ert_spawn,
@@ -11844,7 +11983,7 @@
/obj/machinery/power/apc{
dir = 4;
name = "Briefing Area APC";
- pixel_x = 26
+ pixel_x = 24
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -12000,12 +12139,6 @@
},
/turf/open/floor/plasteel/grimy,
/area/centcom/ferry)
-"Bw" = (
-/obj/structure/table/reinforced,
-/obj/item/book/manual/wiki/security_space_law,
-/obj/item/taperecorder,
-/turf/open/floor/plasteel/grimy,
-/area/centcom/ferry)
"Bx" = (
/obj/structure/table/reinforced,
/obj/item/storage/fancy/donut_box,
@@ -12323,14 +12456,14 @@
/turf/open/floor/plasteel/dark,
/area/centcom/ferry)
"Ca" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/ert_spawn,
/turf/open/floor/plasteel/dark,
/area/centcom/ferry)
"Cb" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/obj/effect/landmark/ert_spawn,
@@ -12549,7 +12682,7 @@
/obj/machinery/power/apc{
dir = 2;
name = "Briefing Room APC";
- pixel_y = -26
+ pixel_y = -23
},
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -12861,9 +12994,6 @@
/turf/open/floor/plasteel/dark,
/area/centcom/evac)
"CT" = (
-/obj/machinery/vr_sleeper{
- dir = 4
- },
/turf/open/floor/wood,
/area/centcom/holding)
"CV" = (
@@ -13059,9 +13189,6 @@
/turf/closed/indestructible/riveted,
/area/ai_multicam_room)
"Dj" = (
-/obj/machinery/vr_sleeper{
- dir = 8
- },
/turf/open/floor/wood,
/area/centcom/holding)
"Dq" = (
@@ -13236,7 +13363,7 @@
/turf/open/floor/plasteel/dark,
/area/centcom/control)
"DG" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/red,
@@ -13276,7 +13403,7 @@
/turf/open/floor/plasteel,
/area/centcom/control)
"DJ" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/blue{
@@ -13287,13 +13414,6 @@
},
/turf/open/floor/plasteel/dark,
/area/centcom/control)
-"DK" = (
-/obj/machinery/door/airlock/centcom{
- name = "CentCom Supply";
- req_access_txt = "106"
- },
-/turf/open/floor/plasteel/dark,
-/area/centcom/evac)
"DL" = (
/obj/item/clothing/suit/wizrobe/black,
/obj/item/clothing/head/wizard/black,
@@ -14445,7 +14565,7 @@
/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"GF" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/obj/item/reagent_containers/food/snacks/meat/rawbacon,
/obj/item/reagent_containers/food/snacks/meat/rawbacon,
/obj/item/reagent_containers/food/snacks/meat/rawbacon,
@@ -14480,7 +14600,7 @@
/turf/open/floor/plasteel/dark,
/area/tdome/tdomeobserve)
"GG" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/obj/item/reagent_containers/food/snacks/grown/potato,
/obj/item/reagent_containers/food/snacks/grown/potato,
/obj/item/reagent_containers/food/snacks/grown/whitebeet,
@@ -14548,7 +14668,7 @@
/turf/open/floor/plasteel/dark,
/area/tdome/tdomeobserve)
"GJ" = (
-/obj/structure/closet/secure_closet/freezer/meat,
+/obj/structure/closet/secure_closet/freezer/meat/open,
/obj/item/reagent_containers/food/snacks/meat/slab/bear,
/obj/item/reagent_containers/food/snacks/meat/slab/bear,
/obj/item/reagent_containers/food/snacks/meat/slab/bear,
@@ -17371,6 +17491,13 @@
/obj/structure/closet/crate/bin,
/turf/open/floor/wood,
/area/centcom/holding)
+"Pj" = (
+/obj/structure/chair/comfy/brown{
+ color = "#596479";
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/centcom/ferry)
"Pl" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -17403,7 +17530,6 @@
/turf/open/floor/plasteel,
/area/centcom/supplypod/loading/four)
"Px" = (
-/obj/machinery/vr_sleeper,
/turf/open/floor/wood,
/area/centcom/holding)
"Pz" = (
@@ -17418,9 +17544,6 @@
/turf/open/floor/carpet/black,
/area/centcom/holding)
"PF" = (
-/obj/machinery/vr_sleeper{
- dir = 1
- },
/turf/open/floor/wood,
/area/centcom/holding)
"PI" = (
@@ -17528,9 +17651,6 @@
/turf/open/indestructible/binary,
/area/fabric_of_reality)
"Qu" = (
-/obj/machinery/vr_sleeper{
- dir = 8
- },
/obj/machinery/light{
dir = 4
},
@@ -17709,6 +17829,12 @@
"Si" = (
/turf/open/floor/plasteel,
/area/centcom/supplypod/loading/two)
+"Sq" = (
+/obj/structure/table/wood,
+/obj/item/camera,
+/obj/item/camera,
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/photobooth)
"Su" = (
/turf/open/floor/plasteel,
/area/centcom/supplypod)
@@ -18331,9 +18457,7 @@
/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"Yu" = (
-/obj/structure/closet/secure_closet/freezer/fridge{
- locked = 0
- },
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/turf/open/floor/plasteel/cafeteria,
/area/centcom/holding)
"Yv" = (
@@ -18345,13 +18469,6 @@
},
/turf/open/floor/plasteel/dark,
/area/centcom/supplypod)
-"YA" = (
-/obj/machinery/door/airlock/centcom{
- name = "CentCom Supply";
- req_access_txt = "106"
- },
-/turf/open/floor/plasteel,
-/area/centcom/supplypod)
"YJ" = (
/obj/item/reagent_containers/food/condiment/enzyme,
/obj/item/reagent_containers/food/drinks/shaker,
@@ -18427,9 +18544,6 @@
/turf/open/floor/wood,
/area/centcom/holding)
"Zt" = (
-/obj/machinery/vr_sleeper{
- dir = 1
- },
/obj/machinery/light,
/turf/open/floor/wood,
/area/centcom/holding)
@@ -18456,6 +18570,18 @@
},
/turf/open/floor/plasteel,
/area/centcom/evac)
+"ZN" = (
+/obj/structure/table/wood,
+/obj/item/toy/crayon/spraycan{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/toy/crayon/spraycan{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/open/floor/holofloor/carpet,
+/area/holodeck/rec_center/photobooth)
"ZQ" = (
/obj/effect/turf_decal/tile/brown,
/obj/effect/turf_decal/tile/brown{
@@ -23361,21 +23487,21 @@ aa
aa
aa
aa
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
aa
"}
(20,1,1) = {"
@@ -23618,6 +23744,7 @@ aa
aa
aa
aa
+jA
hH
hH
hH
@@ -23631,8 +23758,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(21,1,1) = {"
@@ -23875,6 +24001,7 @@ aa
aa
aa
aa
+jA
hH
hH
hH
@@ -23888,8 +24015,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(22,1,1) = {"
@@ -24132,6 +24258,7 @@ aa
aa
aa
aa
+jA
hH
hH
hH
@@ -24145,8 +24272,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(23,1,1) = {"
@@ -24389,6 +24515,7 @@ aa
aa
aa
aa
+jA
hH
hH
hH
@@ -24402,8 +24529,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(24,1,1) = {"
@@ -24646,6 +24772,7 @@ aa
aa
aa
aa
+jA
hH
hH
hH
@@ -24659,8 +24786,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(25,1,1) = {"
@@ -24903,7 +25029,7 @@ aa
aa
aa
aa
-hH
+jA
hH
hH
hH
@@ -24917,7 +25043,7 @@ hH
hH
hH
hH
-hH
+jA
aa
"}
(26,1,1) = {"
@@ -25160,7 +25286,7 @@ aa
aa
aa
aa
-hH
+jA
hH
hH
hH
@@ -25174,7 +25300,7 @@ hH
hH
hH
hH
-hH
+jA
aa
"}
(27,1,1) = {"
@@ -25417,7 +25543,7 @@ aa
aa
aa
aa
-hH
+jA
hH
hH
hH
@@ -25431,7 +25557,7 @@ hH
hH
hH
hH
-hH
+jA
aa
"}
(28,1,1) = {"
@@ -25674,7 +25800,7 @@ aa
aa
aa
aa
-hH
+jA
hH
hH
hH
@@ -25688,7 +25814,7 @@ hH
hH
hH
hH
-hH
+jA
aa
"}
(29,1,1) = {"
@@ -25931,7 +26057,7 @@ aa
aa
aa
aa
-hH
+jA
hH
hH
hH
@@ -25945,7 +26071,7 @@ hH
hH
hH
hH
-hH
+jA
aa
"}
(30,1,1) = {"
@@ -26188,6 +26314,7 @@ aa
aa
aa
aa
+jA
hH
hH
hH
@@ -26201,8 +26328,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(31,1,1) = {"
@@ -26445,6 +26571,7 @@ aa
aa
aa
aa
+jA
hH
hH
hH
@@ -26458,8 +26585,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(32,1,1) = {"
@@ -26702,6 +26828,7 @@ lI
lI
lI
aa
+jA
hH
hH
hH
@@ -26715,8 +26842,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(33,1,1) = {"
@@ -26959,6 +27085,7 @@ lI
lI
lI
aa
+jA
hH
hH
hH
@@ -26972,8 +27099,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(34,1,1) = {"
@@ -27216,6 +27342,7 @@ lI
lI
lI
aa
+jA
hH
hH
hH
@@ -27229,8 +27356,7 @@ hH
hH
hH
hH
-hH
-hH
+jA
aa
"}
(35,1,1) = {"
@@ -27473,21 +27599,21 @@ lI
lI
lI
aa
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
-hH
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
+jA
aa
"}
(36,1,1) = {"
@@ -52849,9 +52975,9 @@ to
uj
oe
aa
-aa
-xb
-aa
+pz
+pA
+pz
aa
aa
aa
@@ -53105,12 +53231,12 @@ sr
tp
uk
mD
-aa
+pz
oe
xc
oe
+pz
aa
-mD
aa
aa
aa
@@ -53623,7 +53749,13 @@ vB
oe
Xy
oe
-vB
+oU
+nU
+ta
+oe
+td
+oe
+ta
mD
aa
aa
@@ -53697,12 +53829,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
"}
(138,1,1) = {"
aa
@@ -53880,14 +54006,14 @@ vC
wr
xe
wr
-yo
-nU
-aa
-aa
-aa
-aa
-aa
-aa
+wx
+mD
+pB
+pT
+pT
+pT
+qF
+oe
aa
aa
aa
@@ -54138,6 +54264,12 @@ ws
xf
ws
yp
+sd
+pC
+pU
+pU
+pU
+qG
oe
aa
aa
@@ -54211,12 +54343,6 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
"}
(140,1,1) = {"
aa
@@ -54394,14 +54520,14 @@ vE
wt
xg
wt
-yq
+px
mD
-aa
-aa
-aa
-aa
-aa
-aa
+pD
+pX
+pX
+pX
+rb
+oe
aa
aa
aa
@@ -54653,11 +54779,11 @@ xh
wu
mD
mD
-oe
+tc
oe
nU
oe
-oe
+tc
mD
mD
aa
@@ -54911,8 +55037,8 @@ wv
mD
yY
zz
-oA
-uV
+qh
+rc
Bu
BZ
Cq
@@ -55426,7 +55552,7 @@ qR
za
pg
Ab
-AJ
+Pj
Bv
pg
Cs
@@ -55683,8 +55809,8 @@ nU
zb
pg
Ac
-AK
-Bw
+rY
+rZ
pg
Ct
nT
@@ -55941,7 +56067,7 @@ uV
zA
sw
zA
-sw
+sc
zA
Cu
nU
@@ -66483,7 +66609,7 @@ Cc
CO
Cc
Cc
-DK
+sY
NO
NO
NO
@@ -66742,7 +66868,7 @@ qx
Wc
qx
Yn
-sY
+sZ
Yn
Ep
Ep
@@ -67000,7 +67126,7 @@ Cc
Yn
Pz
Su
-NO
+qI
NO
PV
PV
@@ -67009,7 +67135,7 @@ NO
NO
Uw
NO
-NO
+ly
WM
Yn
ET
@@ -67257,7 +67383,7 @@ Cc
Yn
Ty
Su
-NO
+qI
ly
sb
jO
@@ -67266,7 +67392,7 @@ NO
NO
NO
NO
-NO
+ly
TT
Yn
Yn
@@ -67514,8 +67640,8 @@ Dx
Yn
Yn
Yn
-YA
-YA
+sZ
+sZ
Yn
Yn
Yn
@@ -68289,10 +68415,10 @@ AH
AH
OP
PK
-YA
+sZ
UM
UM
-YA
+sZ
Vn
PW
Vn
@@ -68546,10 +68672,10 @@ OP
OP
OP
PK
-YA
+sZ
QO
QO
-YA
+sZ
Vn
PW
Vn
@@ -69318,8 +69444,8 @@ Yn
Yn
Yn
Yn
-NO
-NO
+wk
+wk
Yn
Yn
Yn
@@ -69575,8 +69701,8 @@ zM
zM
zs
Yn
-NO
-NO
+aa
+aa
Yn
Pv
Pv
@@ -69832,8 +69958,8 @@ Se
Se
Tc
Yn
-Yv
-yf
+aa
+aa
Yn
Pm
Pm
@@ -70081,17 +70207,17 @@ Cd
qx
MI
NO
-YA
+Yn
Se
Si
Se
Si
Se
Tc
-YA
-UM
-UM
-YA
+Yn
+aa
+aa
+Yn
Xh
Xh
Pm
@@ -70338,17 +70464,17 @@ qy
qx
OD
NO
-YA
+Yn
Se
Si
Se
Si
Se
Tc
-YA
-QO
-QO
-YA
+Yn
+aa
+aa
+Yn
Xh
Xh
Pm
@@ -70603,8 +70729,8 @@ Si
Se
Tc
Yn
-Sv
-Ru
+aa
+aa
Yn
Pm
Pm
@@ -70860,8 +70986,8 @@ Vk
Vk
Oq
Yn
-Su
-Su
+aa
+aa
Yn
Co
Co
@@ -71117,8 +71243,8 @@ Yn
Yn
Yn
Yn
-wk
-wk
+aa
+aa
Yn
Yn
Yn
@@ -71438,18 +71564,18 @@ aa
aa
"}
(207,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ab
aa
aa
aa
@@ -71695,18 +71821,18 @@ aa
aa
"}
(208,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ac
+tj
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+fx
aa
aa
aa
@@ -71952,18 +72078,18 @@ aa
aa
"}
(209,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ac
+tk
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+fx
aa
aa
aa
@@ -72209,18 +72335,18 @@ aa
aa
"}
(210,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ac
+Sq
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+fx
aa
aa
aa
@@ -72466,18 +72592,18 @@ aa
aa
"}
(211,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ac
+ZN
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+fx
aa
aa
aa
@@ -72723,18 +72849,18 @@ aa
aa
"}
(212,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ac
+tl
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+tb
+fx
aa
aa
aa
@@ -72981,16 +73107,16 @@ aa
"}
(213,1,1) = {"
ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
ab
ae
ae
diff --git a/_maps/map_files/generic/City_of_Cogs.dmm b/_maps/map_files/generic/City_of_Cogs.dmm
index e67a8292212..20e8a7fade0 100644
--- a/_maps/map_files/generic/City_of_Cogs.dmm
+++ b/_maps/map_files/generic/City_of_Cogs.dmm
@@ -49,7 +49,7 @@
/area/reebe/city_of_cogs)
"am" = (
/obj/structure/table/reinforced/brass,
-/obj/item/storage/firstaid,
+/obj/item/storage/firstaid/regular,
/turf/open/floor/clockwork/reebe,
/area/reebe/city_of_cogs)
"an" = (
diff --git a/_maps/shuttles/arrival_delta.dmm b/_maps/shuttles/arrival_delta.dmm
index 3c5ea0fffde..79cb8272843 100644
--- a/_maps/shuttles/arrival_delta.dmm
+++ b/_maps/shuttles/arrival_delta.dmm
@@ -430,7 +430,7 @@
/turf/open/floor/plasteel,
/area/shuttle/arrival)
"R" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/turf_decal/tile/blue{
dir = 1
},
diff --git a/_maps/shuttles/arrival_kilo.dmm b/_maps/shuttles/arrival_kilo.dmm
new file mode 100644
index 00000000000..c6118afc13a
--- /dev/null
+++ b/_maps/shuttles/arrival_kilo.dmm
@@ -0,0 +1,549 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/arrival)
+"b" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/arrival)
+"c" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"d" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Arrival Shuttle Airlock"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"e" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"f" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"g" = (
+/turf/template_noop,
+/area/template_noop)
+"h" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"i" = (
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate/internals,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"j" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/arrows{
+ icon_state = "arrows";
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"k" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"l" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"m" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/arrows{
+ icon_state = "arrows";
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"n" = (
+/obj/structure/shuttle/engine/propulsion/left{
+ icon_state = "propulsion_l";
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"o" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"p" = (
+/obj/structure/table,
+/obj/item/flashlight{
+ pixel_y = 8
+ },
+/obj/item/flashlight,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"q" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/arrows{
+ icon_state = "arrows";
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"r" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"s" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/item/radio/intercom{
+ pixel_x = 28
+ },
+/obj/effect/turf_decal/arrows{
+ icon_state = "arrows";
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"t" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"u" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/docking_port/mobile/arrivals{
+ dir = 4;
+ name = "kilo arrivals shuttle"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"v" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/radio{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/radio{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/radio{
+ pixel_x = 0;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"w" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"x" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"y" = (
+/obj/machinery/requests_console{
+ department = "Arrival shuttle";
+ name = "Arrivals Shuttle console"
+ },
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/arrival)
+"z" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/window/shuttle,
+/turf/open/floor/grass,
+/area/shuttle/arrival)
+"A" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ use_power = 0
+ },
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/arrival)
+"B" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"C" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"D" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/machinery/door/airlock/shuttle{
+ name = "Arrival Shuttle Airlock"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"E" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"F" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"G" = (
+/obj/structure/shuttle/engine/propulsion/right{
+ icon_state = "propulsion_r";
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/arrival)
+"H" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/obj/item/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"I" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"J" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"K" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"L" = (
+/obj/machinery/status_display/ai,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"M" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"N" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+"O" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/arrival)
+"P" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/machinery/status_display/evac{
+ pixel_y = -32
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/arrival)
+
+(1,1,1) = {"
+a
+a
+n
+u
+G
+a
+a
+"}
+(2,1,1) = {"
+b
+h
+o
+o
+o
+h
+b
+"}
+(3,1,1) = {"
+c
+i
+p
+v
+H
+i
+c
+"}
+(4,1,1) = {"
+d
+j
+q
+w
+I
+O
+f
+"}
+(5,1,1) = {"
+e
+k
+r
+x
+J
+N
+e
+"}
+(6,1,1) = {"
+f
+k
+r
+y
+J
+N
+f
+"}
+(7,1,1) = {"
+f
+k
+r
+z
+J
+N
+f
+"}
+(8,1,1) = {"
+f
+k
+r
+A
+J
+N
+f
+"}
+(9,1,1) = {"
+c
+l
+r
+B
+J
+P
+c
+"}
+(10,1,1) = {"
+d
+m
+s
+C
+K
+w
+f
+"}
+(11,1,1) = {"
+b
+c
+c
+D
+L
+c
+b
+"}
+(12,1,1) = {"
+c
+e
+t
+E
+M
+e
+c
+"}
+(13,1,1) = {"
+g
+c
+k
+F
+N
+c
+g
+"}
+(14,1,1) = {"
+g
+c
+f
+f
+f
+c
+g
+"}
diff --git a/_maps/shuttles/cargo_kilo.dmm b/_maps/shuttles/cargo_kilo.dmm
new file mode 100644
index 00000000000..ce40c679c43
--- /dev/null
+++ b/_maps/shuttles/cargo_kilo.dmm
@@ -0,0 +1,392 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/supply)
+"b" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"c" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"d" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"e" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"f" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"g" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"h" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"i" = (
+/obj/machinery/door/poddoor{
+ density = 1;
+ id = "QMLoaddoor";
+ name = "Supply Dock Loading Door"
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad";
+ name = "off ramp"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"j" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/supply)
+"k" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"l" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"m" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/docking_port/mobile/supply{
+ dir = 4;
+ dwidth = 4;
+ width = 12
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/supply)
+"n" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"o" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"p" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/button/door{
+ id = "QMLoaddoor";
+ layer = 4;
+ name = "Off Ramp Toggle";
+ pixel_x = -24;
+ pixel_y = 6;
+ req_access_txt = "31"
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "QMLoaddoor2";
+ layer = 4;
+ name = "On Ramp Toggle";
+ pixel_x = -24;
+ pixel_y = -6;
+ req_access_txt = "31"
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"q" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/sign/departments/cargo{
+ pixel_x = 32
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"r" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/supply)
+"s" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"t" = (
+/obj/machinery/door/poddoor{
+ density = 1;
+ id = "QMLoaddoor2";
+ name = "Supply Dock Loading Door"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2";
+ name = "on ramp"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"u" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/supply)
+"v" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"w" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"x" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"y" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/supply)
+"z" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/supply)
+"A" = (
+/obj/effect/spawner/structure/window/shuttle,
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"B" = (
+/turf/template_noop,
+/area/template_noop)
+"C" = (
+/obj/structure/shuttle/engine/propulsion/burst/left,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"D" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"E" = (
+/obj/structure/shuttle/engine/propulsion/burst/right,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+
+(1,1,1) = {"
+a
+a
+a
+i
+m
+a
+r
+t
+a
+a
+a
+B
+"}
+(2,1,1) = {"
+a
+b
+e
+j
+n
+p
+s
+u
+v
+y
+a
+C
+"}
+(3,1,1) = {"
+a
+c
+f
+k
+o
+g
+f
+k
+k
+e
+A
+D
+"}
+(4,1,1) = {"
+a
+c
+g
+g
+g
+g
+g
+g
+g
+z
+A
+D
+"}
+(5,1,1) = {"
+a
+c
+g
+g
+g
+g
+g
+g
+w
+x
+A
+D
+"}
+(6,1,1) = {"
+a
+d
+h
+l
+h
+q
+h
+l
+x
+y
+a
+E
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+B
+"}
diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm
index eda566a240e..682cb64d8e4 100644
--- a/_maps/shuttles/emergency_delta.dmm
+++ b/_maps/shuttles/emergency_delta.dmm
@@ -1092,7 +1092,7 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/escape)
"cf" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
@@ -1126,7 +1126,7 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/escape)
"ch" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/effect/turf_decal/tile/neutral{
@@ -1168,7 +1168,7 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/escape)
"cl" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
diff --git a/_maps/shuttles/emergency_imfedupwiththisworld.dmm b/_maps/shuttles/emergency_imfedupwiththisworld.dmm
index 349918ef29f..3d6920f59f6 100644
--- a/_maps/shuttles/emergency_imfedupwiththisworld.dmm
+++ b/_maps/shuttles/emergency_imfedupwiththisworld.dmm
@@ -133,7 +133,7 @@
/turf/open/floor/wood,
/area/shuttle/escape)
"v" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/wood,
/area/shuttle/escape)
"w" = (
diff --git a/_maps/shuttles/emergency_kilo.dmm b/_maps/shuttles/emergency_kilo.dmm
new file mode 100644
index 00000000000..83f5cd1785f
--- /dev/null
+++ b/_maps/shuttles/emergency_kilo.dmm
@@ -0,0 +1,2099 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/template_noop,
+/area/template_noop)
+"ab" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"ac" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"ad" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/radio,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ae" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/computer/communications,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"af" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/computer/emergency_shuttle,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ag" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/computer/crew,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ah" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/crowbar,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ai" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"aj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ak" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/box/corners,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"al" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"am" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/box/corners{
+ icon_state = "box_corners";
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"an" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/restraints/handcuffs,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/assembly/flash/handheld,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ao" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/airlock/shuttle{
+ name = "External Shuttle Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ap" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/crowbar/red,
+/obj/item/storage/lockbox/loyalty,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"aq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"ar" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/recharger,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"as" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"at" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -24
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"au" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/folder/red{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/folder/blue,
+/obj/item/gun/energy/e_gun/mini,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"av" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 24
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aw" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/emcloset/anchored,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ax" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"ay" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/structure/sign/warning/vacuum/external{
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"az" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"aA" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"aB" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"aC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"aD" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"aE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aF" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aH" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/shuttle{
+ name = "External Shuttle Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aI" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"aJ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/security/glass{
+ name = "Holding Area";
+ req_one_access_txt = "19"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aK" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/corners{
+ icon_state = "box_corners";
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aL" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aM" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/box/corners{
+ icon_state = "box_corners";
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aN" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/airlock/command{
+ name = "Shuttle Control";
+ req_one_access_txt = "19"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aO" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aP" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"aQ" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"aR" = (
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate/internals,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"aT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"aU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "applebush"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aV" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aX" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"aY" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"aZ" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"ba" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bb" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Emergency Shuttle Airlock";
+ req_one_access_txt = "63"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bc" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"bd" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"be" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"bf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/storage/box/zipties{
+ pixel_y = 4
+ },
+/obj/item/restraints/handcuffs,
+/obj/item/restraints/handcuffs,
+/turf/open/floor/mineral/plastitanium/red/brig,
+/area/shuttle/escape)
+"bg" = (
+/obj/machinery/status_display/evac,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"bh" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"bi" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bj" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"bk" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"bl" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bm" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/security/glass{
+ name = "Holding Area";
+ req_access_txt = "2"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bn" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/emcloset,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bo" = (
+/obj/structure/table,
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = -4
+ },
+/obj/item/tank/internals/air{
+ pixel_x = 4
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/clothing/mask/breath,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bp" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Emergency Shuttle Airlock"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bq" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Emergency Shuttle Airlock"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/docking_port/mobile/emergency{
+ name = "Kilo emergency shuttle"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"br" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bs" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bt" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bu" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bv" = (
+/obj/structure/sign/departments/security{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bw" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bx" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"by" = (
+/obj/structure/sign/departments/engineering{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bz" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bA" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bB" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/machinery/status_display/evac{
+ pixel_x = -32
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bC" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bD" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bE" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bF" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bG" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bH" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/machinery/status_display/evac{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bI" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bJ" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bK" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bL" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bM" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bN" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ use_power = 0
+ },
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"bO" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/window/shuttle,
+/turf/open/floor/grass,
+/area/shuttle/escape)
+"bP" = (
+/obj/structure/flora/ausbushes/grassybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/window/shuttle,
+/turf/open/floor/grass,
+/area/shuttle/escape)
+"bQ" = (
+/obj/structure/extinguisher_cabinet,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"bR" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bS" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bT" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bU" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bV" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bW" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bX" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Emergency Shuttle Airlock"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"bY" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"bZ" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ pixel_y = -28
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ca" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cb" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cc" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"ce" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cf" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Emergency Shuttle Airlock"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cg" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/o2,
+/obj/item/tank/internals/emergency_oxygen,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"ch" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "applebush"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"ci" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/obj/item/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cj" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"ck" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cl" = (
+/obj/structure/closet/crate{
+ name = "emergency supplies crate"
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency,
+/obj/item/flashlight/flare{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/flashlight/flare{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/radio,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cm" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"cn" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Shuttle Infirmary"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"co" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/radio{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/radio{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/radio{
+ pixel_x = 0;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cp" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cq" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-05"
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cr" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"ct" = (
+/obj/structure/closet/crate/medical{
+ name = "medical crate"
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/lazarus_injector,
+/obj/effect/turf_decal/bot,
+/mob/living/simple_animal/bot/medbot{
+ name = "\improper emergency medibot";
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cu" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cv" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cw" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/twohanded/required/kirbyplants{
+ icon_state = "plant-10"
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cx" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cy" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cz" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/recharge_station,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cA" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cB" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cC" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cD" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = -1
+ },
+/obj/item/storage/toolbox/emergency{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cE" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cF" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cG" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cH" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cI" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cJ" = (
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate/internals,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cK" = (
+/obj/effect/spawner/structure/window/shuttle,
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"cL" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"cM" = (
+/obj/machinery/vending/medical,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cN" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cO" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/chair/office/light,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cP" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cQ" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/chair/office/light,
+/turf/open/floor/mineral/titanium/white,
+/area/shuttle/escape)
+"cR" = (
+/obj/structure/table,
+/obj/item/circular_saw,
+/obj/item/scalpel{
+ pixel_y = 16
+ },
+/obj/item/hemostat,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/escape)
+"cS" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/escape)
+"cT" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"cU" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/escape)
+"cV" = (
+/obj/structure/table,
+/obj/item/defibrillator/compact/loaded,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cW" = (
+/obj/structure/table,
+/obj/item/storage/firstaid/fire{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cX" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/reagent_containers/hypospray/medipen,
+/obj/item/reagent_containers/hypospray/medipen{
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/hypospray/medipen{
+ pixel_y = -6
+ },
+/obj/item/reagent_containers/glass/bottle/charcoal,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"cY" = (
+/obj/machinery/status_display/ai,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"cZ" = (
+/obj/machinery/computer/operating{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"da" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/escape)
+"db" = (
+/obj/structure/table,
+/obj/item/surgical_drapes,
+/obj/item/retractor,
+/obj/item/cautery,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/escape)
+"dc" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"dd" = (
+/obj/structure/shuttle/engine/propulsion/left,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"de" = (
+/obj/structure/shuttle/engine/propulsion/right,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+
+(1,1,1) = {"
+aa
+aa
+ab
+ac
+ab
+ac
+ai
+bb
+ab
+bq
+ab
+ac
+ac
+ac
+ab
+bX
+ab
+bX
+ai
+ab
+as
+cS
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+ac
+ap
+az
+az
+aS
+bc
+ac
+br
+bB
+bI
+bI
+bI
+bB
+bx
+ac
+cj
+cr
+cC
+cK
+cT
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+ab
+aq
+aA
+aA
+aA
+bd
+bm
+bs
+bC
+bJ
+bM
+bJ
+bS
+bY
+cf
+ck
+cs
+cD
+cL
+cU
+cS
+cS
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+ac
+ar
+aB
+aA
+aA
+be
+ac
+bt
+br
+bK
+bN
+bu
+bD
+bK
+ac
+cl
+ct
+as
+ab
+ab
+as
+cS
+cS
+"}
+(5,1,1) = {"
+ab
+ac
+ai
+as
+aC
+aI
+aT
+bf
+ab
+bu
+bD
+bK
+bO
+bu
+bD
+bZ
+as
+ab
+bg
+as
+cM
+cV
+ac
+dc
+dd
+"}
+(6,1,1) = {"
+ac
+ad
+aj
+as
+aD
+aJ
+ac
+as
+as
+bv
+bD
+bK
+bP
+bu
+bD
+bK
+cg
+cm
+cu
+cE
+cN
+cW
+cL
+dc
+cT
+"}
+(7,1,1) = {"
+ac
+ae
+ak
+at
+aE
+aK
+aU
+bg
+bn
+bw
+bE
+bK
+bQ
+bu
+bT
+ca
+bC
+cn
+cv
+cF
+cO
+cX
+ac
+dc
+de
+"}
+(8,1,1) = {"
+ac
+af
+al
+au
+aF
+aL
+aV
+aN
+aO
+bx
+bF
+bL
+bL
+bL
+bU
+cb
+ch
+ac
+cw
+cG
+cP
+cY
+ab
+cS
+cS
+"}
+(9,1,1) = {"
+ac
+ag
+am
+av
+aG
+aM
+aW
+bh
+bo
+bt
+br
+bK
+bN
+bu
+bV
+cc
+bG
+cn
+cx
+cH
+cP
+cZ
+ac
+dc
+dd
+"}
+(10,1,1) = {"
+ac
+ah
+an
+as
+as
+aN
+ab
+as
+as
+by
+bD
+bK
+bO
+bu
+bD
+bK
+ci
+cm
+cy
+cI
+cQ
+da
+cL
+dc
+cT
+"}
+(11,1,1) = {"
+ab
+ac
+ai
+as
+as
+aO
+aX
+bi
+ab
+bu
+bD
+bK
+bP
+bu
+bD
+bZ
+as
+ab
+bg
+as
+cR
+db
+ac
+dc
+de
+"}
+(12,1,1) = {"
+aa
+aa
+ab
+aw
+ac
+aP
+aY
+bj
+ac
+bw
+bE
+bK
+bQ
+bu
+bD
+bK
+ac
+co
+cz
+as
+ab
+ab
+as
+cS
+cS
+"}
+(13,1,1) = {"
+aa
+aa
+ao
+ax
+aH
+aQ
+aZ
+bk
+bp
+bz
+bG
+bJ
+bR
+bJ
+bW
+cd
+cf
+cp
+cA
+cJ
+cL
+cU
+cS
+cS
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+ab
+ay
+ac
+aR
+ba
+bl
+ac
+bA
+bH
+bl
+bl
+bl
+bH
+ce
+ac
+cq
+cB
+aR
+cK
+cT
+aa
+aa
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+ab
+ab
+ab
+ac
+ai
+ac
+ab
+ac
+ab
+ac
+ac
+ac
+ab
+ac
+ab
+ab
+ai
+ab
+as
+cS
+aa
+aa
+aa
+"}
diff --git a/_maps/shuttles/emergency_meta.dmm b/_maps/shuttles/emergency_meta.dmm
index 2bf59c226c3..5430f96b784 100644
--- a/_maps/shuttles/emergency_meta.dmm
+++ b/_maps/shuttles/emergency_meta.dmm
@@ -182,7 +182,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
"ax" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
@@ -216,7 +216,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
"aC" = (
-/obj/structure/chair/office/dark,
+/obj/structure/chair/office,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
"aE" = (
@@ -232,7 +232,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
"aG" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/mineral/titanium/blue,
diff --git a/_maps/shuttles/emergency_pod.dmm b/_maps/shuttles/emergency_pod.dmm
new file mode 100644
index 00000000000..e136d9809cc
--- /dev/null
+++ b/_maps/shuttles/emergency_pod.dmm
@@ -0,0 +1,156 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 8
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"b" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"c" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"d" = (
+/turf/open/space/basic,
+/area/space)
+"e" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Shuttle Airlock"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"f" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"g" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"i" = (
+/obj/machinery/light{
+ icon_state = "tube";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"j" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"k" = (
+/obj/machinery/computer/emergency_shuttle{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ icon_state = "bulb";
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"m" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Shuttle Airlock"
+ },
+/obj/docking_port/mobile/emergency{
+ port_direction = 2;
+ preferred_direction = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+
+(1,1,1) = {"
+a
+e
+b
+m
+a
+d
+d
+d
+a
+e
+b
+e
+a
+"}
+(2,1,1) = {"
+b
+f
+i
+j
+b
+d
+d
+d
+b
+f
+i
+j
+b
+"}
+(3,1,1) = {"
+c
+f
+g
+j
+c
+d
+d
+d
+c
+f
+g
+j
+c
+"}
+(4,1,1) = {"
+b
+f
+g
+j
+b
+d
+d
+d
+b
+f
+g
+j
+b
+"}
+(5,1,1) = {"
+b
+b
+k
+b
+b
+d
+d
+d
+b
+b
+k
+b
+b
+"}
+(6,1,1) = {"
+d
+b
+c
+b
+d
+d
+d
+d
+d
+b
+c
+b
+d
+"}
diff --git a/_maps/shuttles/emergency_pubby.dmm b/_maps/shuttles/emergency_pubby.dmm
index dc58ecf2015..7f17317b67c 100644
--- a/_maps/shuttles/emergency_pubby.dmm
+++ b/_maps/shuttles/emergency_pubby.dmm
@@ -53,7 +53,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
"al" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/mineral/titanium/blue,
@@ -75,7 +75,7 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/escape)
"aq" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/mineral/titanium/blue,
@@ -574,7 +574,7 @@
/area/shuttle/escape)
"br" = (
/obj/machinery/light,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/mineral/titanium/blue,
@@ -584,7 +584,7 @@
/area/shuttle/escape)
"bt" = (
/obj/machinery/light,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/mineral/titanium/blue,
diff --git a/_maps/shuttles/emergency_raven.dmm b/_maps/shuttles/emergency_raven.dmm
index e17712dd778..638d351eb17 100644
--- a/_maps/shuttles/emergency_raven.dmm
+++ b/_maps/shuttles/emergency_raven.dmm
@@ -79,7 +79,7 @@
/obj/effect/turf_decal/tile/blue{
dir = 4
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/plasteel/dark,
@@ -125,7 +125,7 @@
/obj/effect/turf_decal/tile/blue{
dir = 8
},
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/turf/open/floor/plasteel/dark,
@@ -150,7 +150,7 @@
dir = 4
},
/obj/effect/turf_decal/tile/blue,
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/plasteel/dark,
diff --git a/_maps/shuttles/emergency_russiafightpit.dmm b/_maps/shuttles/emergency_russiafightpit.dmm
index abc40aa523d..f89d62e136e 100644
--- a/_maps/shuttles/emergency_russiafightpit.dmm
+++ b/_maps/shuttles/emergency_russiafightpit.dmm
@@ -503,7 +503,7 @@
"bF" = (
/obj/structure/table,
/obj/item/storage/firstaid/brute,
-/obj/item/storage/firstaid{
+/obj/item/storage/firstaid/regular{
pixel_x = 2;
pixel_y = 3
},
diff --git a/_maps/shuttles/ferry_kilo.dmm b/_maps/shuttles/ferry_kilo.dmm
new file mode 100644
index 00000000000..8bf7472f675
--- /dev/null
+++ b/_maps/shuttles/ferry_kilo.dmm
@@ -0,0 +1,299 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/transport)
+"c" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/transport)
+"d" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"e" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"f" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Ferry Shuttle Airlock"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"g" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"h" = (
+/obj/structure/shuttle/engine/propulsion/left{
+ icon_state = "propulsion_l";
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"i" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"j" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/transport)
+"k" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/crowbar,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"l" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"m" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"n" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"o" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"p" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"q" = (
+/obj/machinery/computer/shuttle/ferry/request{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"r" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"s" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"t" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Ferry Shuttle Airlock"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/fans/tiny,
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 11;
+ id = "ferry";
+ name = "ferry shuttle";
+ port_direction = 1;
+ preferred_direction = 4;
+ width = 5
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"u" = (
+/obj/structure/shuttle/engine/propulsion/right{
+ icon_state = "propulsion_r";
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"v" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/radio{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/radio{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/radio{
+ pixel_x = 0;
+ pixel_y = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"w" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+"x" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/transport)
+
+(1,1,1) = {"
+a
+h
+p
+u
+a
+"}
+(2,1,1) = {"
+b
+i
+i
+i
+b
+"}
+(3,1,1) = {"
+c
+j
+q
+j
+c
+"}
+(4,1,1) = {"
+d
+k
+r
+v
+d
+"}
+(5,1,1) = {"
+e
+l
+r
+w
+e
+"}
+(6,1,1) = {"
+d
+l
+r
+w
+d
+"}
+(7,1,1) = {"
+f
+m
+s
+m
+f
+"}
+(8,1,1) = {"
+g
+n
+r
+n
+g
+"}
+(9,1,1) = {"
+e
+l
+r
+w
+e
+"}
+(10,1,1) = {"
+d
+o
+r
+x
+d
+"}
+(11,1,1) = {"
+d
+e
+t
+e
+d
+"}
diff --git a/_maps/shuttles/ferry_lighthouse.dmm b/_maps/shuttles/ferry_lighthouse.dmm
index a12e8858cb3..4158efacc57 100644
--- a/_maps/shuttles/ferry_lighthouse.dmm
+++ b/_maps/shuttles/ferry_lighthouse.dmm
@@ -174,7 +174,7 @@
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
"aR" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/turf/open/floor/wood,
diff --git a/_maps/shuttles/ferry_meat.dmm b/_maps/shuttles/ferry_meat.dmm
index 334df92b557..6448621a4e8 100644
--- a/_maps/shuttles/ferry_meat.dmm
+++ b/_maps/shuttles/ferry_meat.dmm
@@ -27,7 +27,7 @@
/turf/open/floor/plasteel/freezer,
/area/shuttle/transport)
"h" = (
-/obj/structure/closet/secure_closet/freezer/meat{
+/obj/structure/closet/secure_closet/freezer/meat/open{
name = "\"meat\" fridge"
},
/obj/item/reagent_containers/food/snacks/meat/slab/bear,
diff --git a/_maps/shuttles/hunter_russian.dmm b/_maps/shuttles/hunter_russian.dmm
new file mode 100644
index 00000000000..75b5dca6ba5
--- /dev/null
+++ b/_maps/shuttles/hunter_russian.dmm
@@ -0,0 +1,500 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/turf/closed/wall,
+/area/shuttle/hunter)
+"c" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/hunter)
+"d" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/hunter)
+"e" = (
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"f" = (
+/obj/machinery/power/smes,
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"g" = (
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"h" = (
+/obj/machinery/door/airlock/security/glass,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"i" = (
+/obj/machinery/door/airlock/security/glass,
+/obj/structure/fans/tiny,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"j" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"k" = (
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"l" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"m" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/weldingtool/largetank,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/hunter)
+"n" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/obj/item/storage/bag/trash{
+ pixel_x = 6
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/hunter)
+"o" = (
+/obj/effect/mob_spawn/human/fugitive/russian{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"p" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate{
+ icon_state = "crateopen"
+ },
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"q" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/hunter)
+"r" = (
+/obj/effect/turf_decal/arrows{
+ icon_state = "arrows";
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"s" = (
+/obj/structure/table,
+/obj/item/storage/fancy/cigarettes/cigars/cohiba{
+ pixel_y = 6
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/hunter)
+"t" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/large{
+ icon_state = "crittercrate"
+ },
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"u" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/hunter)
+"v" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"w" = (
+/obj/machinery/fugitive_capture,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/hunter)
+"x" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"y" = (
+/turf/template_noop,
+/area/shuttle/hunter)
+"z" = (
+/obj/structure/chair{
+ icon_state = "chair";
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"A" = (
+/obj/machinery/computer/shuttle/pirate/hunter{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"B" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/crate{
+ icon_state = "crateopen"
+ },
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"C" = (
+/obj/machinery/computer/camera_advanced{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"D" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"E" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/hunter{
+ dir = 8;
+ jumpto_ports = list("huntership_home" = 1);
+ view_range = 12;
+ x_offset = 0;
+ y_offset = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/hunter)
+"F" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/engineering{
+ icon_state = "engi_crateopen"
+ },
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"G" = (
+/obj/structure/table,
+/obj/item/reagent_containers/food/drinks/bottle/vodka,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/hunter)
+"H" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/crate/coffin{
+ icon_state = "coffinopen"
+ },
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"I" = (
+/obj/effect/turf_decal/bot,
+/obj/mecha/working/ripley,
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"J" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/hunter)
+"K" = (
+/obj/machinery/door/airlock/security/glass,
+/obj/structure/fans/tiny,
+/obj/docking_port/stationary{
+ dir = 1;
+ dwidth = 11;
+ height = 16;
+ id = "pirateship_home";
+ name = "Deep Space";
+ width = 17
+ },
+/obj/docking_port/mobile{
+ dheight = 3;
+ dir = 1;
+ dwidth = 3;
+ height = 13;
+ id = "huntership";
+ movement_force = list("KNOCKDOWN" = 0, "THROW" = 0);
+ name = "hunter shuttle";
+ rechargeTime = 1800;
+ width = 15
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/hunter)
+"L" = (
+/obj/effect/mob_spawn/human/fugitive/russian{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+c
+c
+b
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+c
+c
+a
+b
+b
+b
+d
+d
+b
+b
+b
+a
+c
+c
+a
+"}
+(4,1,1) = {"
+b
+d
+d
+b
+b
+p
+t
+x
+B
+B
+F
+b
+b
+d
+d
+b
+"}
+(5,1,1) = {"
+b
+e
+g
+b
+j
+q
+u
+q
+q
+u
+u
+H
+b
+g
+L
+b
+"}
+(6,1,1) = {"
+b
+e
+g
+h
+k
+k
+k
+k
+k
+D
+k
+k
+h
+g
+L
+b
+"}
+(7,1,1) = {"
+b
+f
+g
+b
+l
+k
+u
+u
+q
+u
+k
+I
+b
+g
+L
+b
+"}
+(8,1,1) = {"
+b
+b
+b
+b
+b
+h
+b
+b
+b
+b
+h
+b
+b
+b
+b
+b
+"}
+(9,1,1) = {"
+a
+b
+b
+b
+m
+k
+b
+y
+y
+b
+k
+q
+b
+b
+b
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+i
+k
+k
+v
+y
+y
+v
+k
+k
+K
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+b
+n
+r
+b
+y
+y
+b
+r
+J
+b
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+b
+b
+h
+b
+b
+b
+b
+h
+b
+b
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+b
+o
+k
+r
+z
+z
+k
+k
+o
+b
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+b
+b
+s
+w
+A
+C
+E
+G
+b
+b
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+b
+b
+v
+v
+v
+v
+b
+b
+a
+a
+a
+a
+"}
diff --git a/_maps/shuttles/hunter_space_cop.dmm b/_maps/shuttles/hunter_space_cop.dmm
new file mode 100644
index 00000000000..5c0538bc69e
--- /dev/null
+++ b/_maps/shuttles/hunter_space_cop.dmm
@@ -0,0 +1,263 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/hunter{
+ dir = 8;
+ jumpto_ports = list("huntership_home" = 1);
+ view_range = 7;
+ x_offset = 6
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"ab" = (
+/obj/machinery/computer/shuttle/pirate/hunter{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"ac" = (
+/obj/structure/fans/tiny,
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 3;
+ height = 12;
+ id = "huntership_home";
+ name = "Deep Space";
+ width = 7
+ },
+/obj/docking_port/mobile{
+ dheight = 0;
+ dir = 4;
+ dwidth = 3;
+ height = 12;
+ id = "huntership";
+ name = "hunter shuttle";
+ rechargeTime = 1800;
+ width = 7
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "Interpolship"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"ae" = (
+/obj/machinery/button/door{
+ id = "Interpolship";
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/stripes{
+ icon_state = "warningline";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"af" = (
+/obj/effect/turf_decal/stripes{
+ icon_state = "warningline";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"ag" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"ah" = (
+/obj/effect/turf_decal/loading_area{
+ icon_state = "loadingarea";
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"aj" = (
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/box,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"ak" = (
+/obj/structure/chair/comfy/shuttle{
+ icon_state = "shuttle_chair";
+ dir = 1
+ },
+/obj/effect/mob_spawn/human/fugitive/spacepol{
+ icon_state = "sleeper";
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"al" = (
+/obj/effect/turf_decal/stripes{
+ icon_state = "warningline";
+ dir = 8
+ },
+/obj/effect/turf_decal/caution{
+ icon_state = "caution";
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"bY" = (
+/obj/structure/chair/comfy/shuttle,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"gi" = (
+/obj/structure/table,
+/obj/effect/mob_spawn/human/fugitive/spacepol{
+ dir = 8;
+ icon_state = "sleeper"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"hB" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/hunter)
+"hJ" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"ku" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/hunter)
+"lp" = (
+/obj/machinery/fugitive_capture,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"rR" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"te" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/poddoor/shutters{
+ id = "Interpolship"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"An" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/hunter)
+"Pq" = (
+/turf/template_noop,
+/area/template_noop)
+"Rz" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+"RO" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/hunter)
+
+(1,1,1) = {"
+Pq
+ku
+te
+ac
+te
+ku
+Pq
+"}
+(2,1,1) = {"
+Pq
+ku
+ae
+al
+af
+ku
+Pq
+"}
+(3,1,1) = {"
+Pq
+ku
+bY
+RO
+ak
+ku
+Pq
+"}
+(4,1,1) = {"
+hB
+ku
+bY
+RO
+ak
+ku
+hB
+"}
+(5,1,1) = {"
+ku
+ku
+bY
+RO
+ak
+ku
+ku
+"}
+(6,1,1) = {"
+Pq
+hJ
+ag
+RO
+RO
+hJ
+Pq
+"}
+(7,1,1) = {"
+Pq
+hJ
+ah
+RO
+aj
+hJ
+Pq
+"}
+(8,1,1) = {"
+Pq
+ku
+lp
+RO
+aj
+ku
+Pq
+"}
+(9,1,1) = {"
+hB
+ku
+ku
+rR
+ku
+ku
+hB
+"}
+(10,1,1) = {"
+ku
+ku
+RO
+Rz
+RO
+ku
+ku
+"}
+(11,1,1) = {"
+Pq
+An
+aa
+gi
+ab
+An
+Pq
+"}
+(12,1,1) = {"
+Pq
+ku
+An
+An
+An
+ku
+Pq
+"}
diff --git a/_maps/shuttles/infiltrator_advanced.dmm b/_maps/shuttles/infiltrator_advanced.dmm
new file mode 100644
index 00000000000..7de6f573027
--- /dev/null
+++ b/_maps/shuttles/infiltrator_advanced.dmm
@@ -0,0 +1,2970 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/closed/wall/r_wall/syndicate/nodiagonal,
+/area/shuttle/syndicate/bridge)
+"ab" = (
+/obj/structure/window/plastitanium,
+/obj/machinery/door/poddoor/shutters{
+ id = "syndieshutters";
+ name = "blast shutters"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/bridge)
+"ac" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 9
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/bridge)
+"ad" = (
+/turf/template_noop,
+/area/template_noop)
+"ae" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 5
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/bridge)
+"af" = (
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/bridge)
+"ag" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/reagent_containers/food/drinks/bottle/whiskey{
+ desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front.";
+ name = "Bottle of Tears";
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"ah" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"ai" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/storage/toolbox/syndicate,
+/obj/item/assembly/voice,
+/obj/item/crowbar/red,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"aj" = (
+/obj/machinery/computer/shuttle/syndicate,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"ak" = (
+/obj/machinery/computer/camera_advanced/syndie,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"al" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/stack/cable_coil/red,
+/obj/item/crowbar/red,
+/obj/item/radio/headset/syndicate/alt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"am" = (
+/obj/machinery/computer/crew/syndie{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"an" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/status_display/evac{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/bridge)
+"ao" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ freerange = 1;
+ name = "Syndicate Radio Intercom";
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"ap" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1;
+ name = "tactical chair"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"aq" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "syndieshutters";
+ name = "Bridge View Toggle";
+ pixel_x = 0;
+ pixel_y = 7;
+ req_access_txt = "150"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "infiltrator_bridge";
+ name = "Bridge Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_y = -2;
+ specialfunctions = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"ar" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/status_display/ai{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/bridge)
+"as" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/computer/monitor/secret{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"at" = (
+/obj/machinery/computer/med_data/syndie{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"au" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 8;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc/syndicate{
+ aidisabled = 1;
+ area = "/area/shuttle/syndicate/bridge";
+ dir = 2;
+ name = "Infiltrator E.V.A APC";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/bridge)
+"av" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/bridge)
+"aw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/bridge)
+"ax" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/bridge)
+"ay" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/airalarm/syndicate{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/bridge)
+"az" = (
+/obj/machinery/computer/secure_data/syndie{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/bridge)
+"aA" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/hatch{
+ id_tag = "infiltrator_bridge";
+ name = "Infiltrator Bridge";
+ req_access_txt = "150"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/bridge)
+"aB" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 9
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/airlock)
+"aC" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 2;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"aD" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 5
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/airlock)
+"aE" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 2;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"aF" = (
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/hallway)
+"aG" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/paper_bin{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/obj/item/toy/figure/syndie{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/machinery/firealarm{
+ pixel_y = 26
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"aH" = (
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/eva)
+"aI" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 2;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"aJ" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/airlock)
+"aK" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 2;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/power/apc/syndicate{
+ aidisabled = 1;
+ area = "/area/shuttle/syndicate/airlock";
+ dir = 4;
+ name = "Infiltrator Airlock APC";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"aL" = (
+/obj/structure/sign/warning/vacuum/external,
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/airlock)
+"aM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/hallway)
+"aN" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"aO" = (
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/airlock)
+"aP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"aQ" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/eva)
+"aR" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Preparation Room";
+ req_access_txt = "150"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/eva)
+"aS" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_syndicate{
+ pixel_x = 8
+ },
+/obj/item/lighter{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/lighter{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/machinery/power/apc/syndicate{
+ aidisabled = 1;
+ area = "/area/shuttle/syndicate/hallway";
+ dir = 1;
+ name = "Infiltrator APC";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/airalarm/syndicate{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"aT" = (
+/obj/structure/sign/warning/vacuum/external{
+ layer = 4
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/airlock)
+"aU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"aV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"aW" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/hatch{
+ name = "Infiltrator Access";
+ req_access_txt = "150"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/hallway)
+"aX" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 6
+ },
+/obj/item/storage/toolbox/syndicate,
+/obj/item/crowbar/red,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"aY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/hallway)
+"aZ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"ba" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/hallway)
+"bb" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"bc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/hallway)
+"bd" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/bodybags{
+ pixel_y = 6
+ },
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/bruise_pack{
+ pixel_x = 6
+ },
+/obj/item/stack/medical/ointment,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -26
+ },
+/obj/machinery/status_display/ai{
+ pixel_y = 32
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"be" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/hatch{
+ name = "Infiltrator Access";
+ req_access_txt = "150"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/hallway)
+"bf" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/syndicate/medical)
+"bg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"bh" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/shutters{
+ id = "infiltrator_medbay";
+ name = "Infiltrator Medical Bay"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bi" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/obj/effect/turf_decal/box,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/eva)
+"bj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"bk" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"bl" = (
+/obj/item/clipboard,
+/obj/item/reagent_containers/hypospray/medipen,
+/obj/item/reagent_containers/hypospray/medipen{
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/hypospray/medipen{
+ pixel_y = -6
+ },
+/obj/item/reagent_containers/glass/bottle/charcoal,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"bn" = (
+/obj/structure/shuttle/engine/heater,
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/medical)
+"bo" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/status_display/evac{
+ pixel_x = -32
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"bp" = (
+/obj/machinery/door/poddoor{
+ id = "infiltrator_portblast";
+ name = "Infiltrator Port Hatch"
+ },
+/obj/machinery/button/door{
+ id = "infiltrator_portblast";
+ name = "Infiltrator Port Hatch Control";
+ pixel_y = 26;
+ req_access_txt = "150"
+ },
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/box,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/airlock)
+"bq" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/shutters{
+ id = "infiltrator_medbay";
+ name = "Infiltrator Medical Bay"
+ },
+/obj/machinery/button/door{
+ id = "infiltrator_medbay";
+ name = "Infiltrator Medical Bay Toggle";
+ pixel_x = 24;
+ pixel_y = 0;
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"br" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"bs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"bt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"bu" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 2;
+ name = "tactical chair"
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"bv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"bw" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/box,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/medical)
+"bx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"by" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bB" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"bC" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"bD" = (
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/medical)
+"bE" = (
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/armory)
+"bF" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/box,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/armory)
+"bG" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"bH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/sign/departments/medbay/alt{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bI" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"bJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"bK" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"bL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"bM" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"bN" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"bO" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/effect/turf_decal/bot,
+/obj/machinery/status_display/ai{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"bP" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/medical/syndicate_access,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bQ" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"bR" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/obj/item/wrench,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"bS" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/obj/effect/turf_decal/box,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/syndicate{
+ aidisabled = 1;
+ area = "/area/shuttle/syndicate/eva";
+ dir = 1;
+ name = "Infiltrator E.V.A APC";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/eva)
+"bT" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal/twenty,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/stack/sheet/mineral/plastitanium{
+ amount = 20
+ },
+/obj/item/storage/box/lights/bulbs,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 20
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"bU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/item/radio/intercom{
+ freerange = 1;
+ name = "Syndicate Radio Intercom";
+ pixel_y = 22
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"bV" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Surgery Chamber";
+ req_access_txt = "150"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"bW" = (
+/obj/item/clipboard{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/book/manual/wiki/surgery,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/suit/apron/surgical,
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"bX" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"bY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/red/corner{
+ icon_state = "warninglinecorner_red";
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"bZ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ id_tag = "infiltrator_portdoor";
+ name = "Infiltrator Port Airlock"
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/airlock)
+"ca" = (
+/turf/closed/wall/r_wall/syndicate/nodiagonal,
+/area/shuttle/syndicate/airlock)
+"cb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/hallway)
+"cc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"cd" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Preparation Room";
+ req_access_txt = "150"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/eva)
+"ce" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/syndicate/eva)
+"cf" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/eva)
+"cg" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/obj/effect/turf_decal/box,
+/obj/machinery/airalarm/syndicate{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -24
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/eva)
+"ch" = (
+/obj/item/surgical_drapes,
+/obj/item/retractor,
+/obj/item/cautery,
+/obj/structure/table/reinforced,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"ci" = (
+/obj/structure/table/reinforced,
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/obj/item/stack/sheet/mineral/plastitanium{
+ amount = 30
+ },
+/obj/item/stack/cable_coil/red,
+/obj/item/assembly/prox_sensor{
+ desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left.";
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/assembly/prox_sensor{
+ desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left.";
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/assembly/infra,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"cj" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/fire,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"ck" = (
+/obj/structure/sign/warning/securearea,
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/hallway)
+"cl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cm" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"cn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"co" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"cp" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/rack,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/item/clothing/suit/space/syndicate,
+/obj/item/tank/internals/oxygen/yellow,
+/obj/item/clothing/mask/gas{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/head/helmet/space/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"cq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"cr" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/syndicate/medical)
+"cs" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/hallway)
+"ct" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/syndicate/armory)
+"cu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"cv" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/poddoor/shutters{
+ id = "infiltrator_armorybay";
+ name = "Infiltrator Armoy Bay"
+ },
+/obj/machinery/button/door{
+ id = "infiltrator_armorybay";
+ name = "Infiltrator Armory Bay Toggle";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"cw" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/closet/crate/freezer{
+ name = "universal blood storage"
+ },
+/obj/machinery/iv_drip,
+/obj/item/reagent_containers/blood/universal{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/blood/universal,
+/obj/item/reagent_containers/blood/universal{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/machinery/airalarm/syndicate{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"cx" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/medical)
+"cy" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/medical)
+"cz" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/medical)
+"cB" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/medical)
+"cC" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 6
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/medical)
+"cD" = (
+/obj/structure/shuttle/engine/large,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cE" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cF" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/syndicate/armory)
+"cG" = (
+/obj/structure/shuttle/engine/heater,
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/armory)
+"cH" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/armory)
+"cI" = (
+/obj/structure/shuttle/engine/large,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cK" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 10
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/armory)
+"cL" = (
+/obj/structure/shuttle/engine/large,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/medical)
+"cM" = (
+/obj/structure/shuttle/engine/heater,
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/hallway)
+"cN" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium,
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cO" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/armory)
+"cP" = (
+/turf/open/floor/plating,
+/area/shuttle/syndicate/medical)
+"cQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/armory)
+"cR" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/armory)
+"cS" = (
+/obj/structure/shuttle/engine/large,
+/turf/open/floor/plating,
+/area/shuttle/syndicate/armory)
+"cT" = (
+/turf/open/floor/plating,
+/area/shuttle/syndicate/armory)
+"cU" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/rack,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/tank/internals/oxygen/yellow,
+/obj/item/clothing/mask/gas{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"cV" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 10
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/medical)
+"cW" = (
+/obj/machinery/door/poddoor{
+ id = "infiltrator_starboardblast";
+ name = "Infiltrator Starboard Hatch"
+ },
+/obj/docking_port/mobile{
+ dheight = 1;
+ dir = 8;
+ dwidth = 12;
+ height = 17;
+ hidden = 1;
+ id = "syndicate";
+ movement_force = list("KNOCKDOWN" = 0, "THROW" = 0);
+ name = "syndicate infiltrator";
+ port_direction = 4;
+ width = 23
+ },
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/box,
+/obj/machinery/button/door{
+ id = "infiltrator_starboardblast";
+ name = "Infiltrator Starboard Hatch Control";
+ pixel_y = 26;
+ req_access_txt = "150"
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/airlock)
+"cX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cY" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate/hallway)
+"cZ" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 6
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/armory)
+"da" = (
+/obj/item/sbeacondrop/bomb{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/sbeacondrop/bomb{
+ pixel_x = -4
+ },
+/obj/structure/table/reinforced,
+/obj/item/radio/headset/syndicate/alt{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"db" = (
+/obj/structure/table/reinforced,
+/obj/machinery/status_display/ai{
+ pixel_x = 32
+ },
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/cell/high/plus{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/stock_parts/cell/high/plus,
+/obj/item/multitool,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"dc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"dd" = (
+/obj/effect/turf_decal/box/corners,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"de" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"df" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"dg" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Preparation Room";
+ req_access_txt = "150"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/eva)
+"dh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"di" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/airalarm/syndicate{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"dj" = (
+/obj/item/grenade/syndieminibomb{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/grenade/syndieminibomb{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/grenade/plastic/c4,
+/obj/item/grenade/plastic/c4,
+/obj/item/grenade/plastic/c4,
+/obj/item/grenade/plastic/c4,
+/obj/item/grenade/plastic/c4,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"dk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/airalarm/syndicate{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"dl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/syndicate{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"dm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"dn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"do" = (
+/obj/structure/sign/departments/engineering{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"dp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/airalarm/syndicate{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"dq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/light/small,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"dr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"ds" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"dt" = (
+/obj/structure/sign/departments/medbay/alt{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"du" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"dv" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/airlock)
+"dw" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "infiltrator_armorybay";
+ name = "Infiltrator Armoy Bay"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"dx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom{
+ freerange = 1;
+ name = "Syndicate Radio Intercom";
+ pixel_y = 22
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/airlock)
+"dy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"dz" = (
+/obj/item/circular_saw,
+/obj/item/surgicaldrill{
+ pixel_y = 5
+ },
+/obj/item/healthanalyzer,
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/status_display/evac{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"dA" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"dB" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/hallway)
+"dC" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/hallway)
+"dD" = (
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/machinery/shower{
+ dir = 4;
+ name = "emergency shower"
+ },
+/obj/effect/turf_decal/box,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"dE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"dF" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/brute,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"dG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/red/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/cc64k_ad{
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"dH" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/power/apc/syndicate{
+ aidisabled = 1;
+ area = "/area/shuttle/syndicate/medical";
+ dir = 8;
+ name = "Infiltrator Medical APC";
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"dI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"dJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/box/corners,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"dK" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/structure/sign/warning/electricshock{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/hallway)
+"dL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ icon_state = "warningline_red";
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"dM" = (
+/obj/structure/rack,
+/obj/item/pickaxe/mini{
+ pixel_y = 6
+ },
+/obj/item/pickaxe/mini,
+/obj/item/flashlight/seclite,
+/obj/item/flashlight/seclite,
+/obj/item/extinguisher/mini,
+/obj/machinery/power/apc/syndicate{
+ aidisabled = 1;
+ area = "/area/shuttle/syndicate/armory";
+ dir = 4;
+ name = "Infiltrator Armory APC";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"dN" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"dO" = (
+/obj/structure/closet/syndicate/personal,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"dP" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/obj/effect/turf_decal/box,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/status_display/evac{
+ pixel_y = -32
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/eva)
+"dQ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"dR" = (
+/turf/closed/wall/r_wall/syndicate/nodiagonal,
+/area/shuttle/syndicate/eva)
+"dS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ icon_state = "warningline_red";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/departments/engineering{
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"dT" = (
+/obj/machinery/computer/operating{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/airalarm/syndicate{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"dU" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"dV" = (
+/obj/item/scalpel{
+ pixel_y = 16
+ },
+/obj/structure/table/reinforced,
+/obj/item/bodypart/l_arm/robot{
+ pixel_x = -6
+ },
+/obj/item/bodypart/r_arm/robot{
+ pixel_x = 6
+ },
+/obj/item/hemostat,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/medical)
+"dW" = (
+/obj/machinery/telecomms/allinone{
+ intercept = 1
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"dX" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/supply/visible{
+ icon_state = "pipe11-2";
+ dir = 5
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"dY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"dZ" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/status_display/evac{
+ pixel_x = 32
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"ea" = (
+/obj/structure/closet/syndicate/personal,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"eb" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/warning/nosmoking{
+ pixel_x = 28
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"ec" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Ordnance Storage";
+ req_access_txt = "150"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/hallway)
+"ed" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/item/storage/box/zipties{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/storage/box/handcuffs{
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"ee" = (
+/obj/machinery/nuclearbomb/syndicate{
+ anchored = 1
+ },
+/obj/machinery/door/window{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/open/floor/circuit/red,
+/area/shuttle/syndicate/hallway)
+"ef" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"eg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"eh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"ei" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "Connector to Ship"
+ },
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Systems Chamber";
+ req_access_txt = "150"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"ej" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/box/corners{
+ icon_state = "box_corners";
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/eva)
+"ek" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Ordnance Storage";
+ req_access_txt = "150"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/hallway)
+"el" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"em" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"en" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 9
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/medical)
+"eo" = (
+/obj/structure/table/reinforced,
+/obj/item/wrench,
+/obj/item/weldingtool/largetank,
+/obj/item/assembly/signaler{
+ desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted.";
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/assembly/signaler{
+ desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted.";
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 26
+ },
+/obj/machinery/airalarm/syndicate{
+ pixel_y = 24
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"ep" = (
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/medical)
+"eq" = (
+/obj/machinery/porta_turret/syndicate/shuttle{
+ dir = 5
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/shuttle/syndicate/armory)
+"er" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/medical)
+"es" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/syndicate/armory)
+"et" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ icon_state = "manifold-2";
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate/armory)
+"eu" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/syndicate/armory)
+"ev" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/syndicate/hallway)
+
+(1,1,1) = {"
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+en
+bn
+bw
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+"}
+(2,1,1) = {"
+ad
+ad
+ad
+ad
+ad
+ad
+aO
+bp
+aT
+aO
+bD
+bD
+bD
+bD
+bD
+bn
+bw
+ad
+ad
+ad
+ad
+"}
+(3,1,1) = {"
+ad
+ad
+ad
+ad
+ad
+aO
+ca
+bU
+dc
+aO
+bd
+bo
+dH
+cw
+bf
+bD
+bD
+bD
+bD
+cV
+ad
+"}
+(4,1,1) = {"
+ad
+ad
+ad
+ad
+ad
+aO
+aN
+bm
+di
+aO
+bl
+bA
+by
+bH
+bL
+dz
+dD
+dT
+bn
+cy
+ad
+"}
+(5,1,1) = {"
+ad
+ad
+ad
+ad
+aB
+aO
+aL
+bZ
+aJ
+aO
+bf
+ep
+bz
+dd
+dr
+bV
+dE
+dU
+cx
+cA
+cL
+"}
+(6,1,1) = {"
+ad
+ad
+ad
+ad
+aO
+aI
+aP
+bC
+dn
+dt
+bh
+br
+cc
+bJ
+bN
+bW
+ch
+dV
+cx
+cB
+cP
+"}
+(7,1,1) = {"
+ad
+af
+ab
+ab
+aO
+aE
+aU
+df
+dl
+dv
+bq
+bs
+bs
+er
+du
+bX
+dF
+cr
+bD
+cC
+ad
+"}
+(8,1,1) = {"
+ac
+aa
+am
+at
+aO
+aK
+aV
+cp
+ce
+dR
+dR
+aR
+dR
+ce
+bP
+dA
+cj
+bn
+cy
+ad
+ad
+"}
+(9,1,1) = {"
+ab
+ag
+an
+au
+aF
+aF
+aW
+ce
+dR
+bi
+dJ
+bG
+dP
+dR
+bQ
+ec
+ck
+cM
+cz
+cD
+ad
+"}
+(10,1,1) = {"
+ab
+ah
+ao
+av
+aF
+aG
+aY
+aQ
+aX
+bO
+bj
+bI
+bB
+aQ
+bR
+dB
+cl
+cN
+cX
+cE
+ad
+"}
+(11,1,1) = {"
+ab
+aj
+ap
+aw
+aA
+aM
+ba
+cd
+dm
+dm
+bk
+bK
+bi
+aH
+dK
+cb
+ee
+cs
+ev
+ev
+ad
+"}
+(12,1,1) = {"
+ab
+ak
+aq
+ax
+aF
+aS
+bc
+aQ
+aZ
+bb
+bt
+bM
+cf
+aQ
+bT
+dC
+cn
+cN
+cX
+cI
+ad
+"}
+(13,1,1) = {"
+ab
+al
+ar
+ay
+aF
+aF
+be
+ce
+dR
+bS
+ej
+de
+cg
+dR
+bQ
+ek
+ck
+cM
+cY
+cJ
+ad
+"}
+(14,1,1) = {"
+ae
+aa
+as
+az
+aO
+aC
+bg
+cU
+ce
+dR
+dR
+dg
+dR
+ce
+ed
+el
+dO
+cG
+cO
+ad
+ad
+"}
+(15,1,1) = {"
+ad
+af
+ab
+ab
+aO
+aE
+bv
+dh
+dp
+dv
+cv
+ds
+cq
+es
+dY
+em
+ea
+ct
+bE
+cK
+ad
+"}
+(16,1,1) = {"
+ad
+ad
+ad
+ad
+aO
+bu
+bx
+cm
+co
+do
+dw
+dy
+dI
+dI
+ef
+dN
+dQ
+dW
+cH
+cQ
+cS
+"}
+(17,1,1) = {"
+ad
+ad
+ad
+ad
+aD
+aO
+aL
+bZ
+aJ
+aO
+cF
+dG
+dj
+da
+eg
+ei
+et
+dX
+cH
+cR
+cT
+"}
+(18,1,1) = {"
+ad
+ad
+ad
+ad
+ad
+aO
+aN
+cu
+dk
+aO
+ai
+bY
+dL
+dS
+eh
+dZ
+eb
+eu
+cG
+cO
+ad
+"}
+(19,1,1) = {"
+ad
+ad
+ad
+ad
+ad
+aO
+ca
+dx
+dq
+aO
+eo
+ci
+dM
+db
+cF
+bE
+bE
+bE
+bE
+cZ
+ad
+"}
+(20,1,1) = {"
+ad
+ad
+ad
+ad
+ad
+ad
+aO
+cW
+aT
+aO
+bE
+bE
+bE
+bE
+bE
+cG
+bF
+ad
+ad
+ad
+ad
+"}
+(21,1,1) = {"
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+eq
+cG
+bF
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+"}
diff --git a/_maps/shuttles/infiltrator_basic.dmm b/_maps/shuttles/infiltrator_basic.dmm
index f7ec35c6677..f85fcf26199 100644
--- a/_maps/shuttles/infiltrator_basic.dmm
+++ b/_maps/shuttles/infiltrator_basic.dmm
@@ -87,7 +87,7 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/syndicate/bridge)
"ao" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8;
name = "tactical swivel chair"
},
@@ -97,7 +97,7 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/syndicate/bridge)
"aq" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1;
name = "tactical swivel chair"
},
@@ -111,7 +111,7 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/syndicate/bridge)
"ar" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4;
name = "tactical swivel chair"
},
diff --git a/_maps/shuttles/labour_box.dmm b/_maps/shuttles/labour_box.dmm
index 7e754ea02f9..df7a62cc4cf 100644
--- a/_maps/shuttles/labour_box.dmm
+++ b/_maps/shuttles/labour_box.dmm
@@ -16,7 +16,7 @@
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/labor)
"d" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/mineral/plastitanium/red,
diff --git a/_maps/shuttles/labour_delta.dmm b/_maps/shuttles/labour_delta.dmm
index 1b656f641c4..6299e6e2f8f 100644
--- a/_maps/shuttles/labour_delta.dmm
+++ b/_maps/shuttles/labour_delta.dmm
@@ -16,7 +16,7 @@
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/labor)
"d" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 1
},
/turf/open/floor/mineral/plastitanium/red,
diff --git a/_maps/shuttles/labour_kilo.dmm b/_maps/shuttles/labour_kilo.dmm
new file mode 100644
index 00000000000..9ee9a38f07b
--- /dev/null
+++ b/_maps/shuttles/labour_kilo.dmm
@@ -0,0 +1,312 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/labor)
+"b" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"c" = (
+/obj/machinery/computer/shuttle/labor{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -31
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"d" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"e" = (
+/obj/structure/table,
+/obj/item/folder/red,
+/obj/item/restraints/handcuffs,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"f" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/labor)
+"g" = (
+/obj/machinery/button/flasher{
+ id = "gulagshuttleflasher";
+ name = "Flash Control";
+ pixel_y = -26;
+ req_access_txt = "1"
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/labor)
+"h" = (
+/obj/machinery/mineral/stacking_unit_console{
+ machinedir = 2;
+ pixel_x = 30;
+ pixel_y = 30
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/labor)
+"i" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"j" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"k" = (
+/obj/machinery/mineral/stacking_machine/laborstacker{
+ input_dir = 2;
+ output_dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"l" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/labor)
+"m" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/labor)
+"n" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 1;
+ pixel_x = 30
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/labor)
+"o" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/labor)
+"p" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/labor)
+"q" = (
+/obj/machinery/flasher{
+ id = "gulagshuttleflasher";
+ pixel_x = 25
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/labor)
+"r" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/labor)
+"s" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/labor)
+"t" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/labor)
+"u" = (
+/obj/machinery/door/airlock/titanium{
+ id_tag = "prisonshuttle";
+ name = "Labor Shuttle Airlock"
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp";
+ name = "labor camp shuttle";
+ port_direction = 4;
+ width = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"v" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/labor)
+"w" = (
+/obj/effect/spawner/structure/window/shuttle,
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"x" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/labor)
+"y" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating/airless,
+/area/shuttle/labor)
+
+(1,1,1) = {"
+a
+a
+b
+a
+b
+a
+b
+v
+x
+"}
+(2,1,1) = {"
+b
+c
+f
+j
+l
+o
+r
+w
+y
+"}
+(3,1,1) = {"
+b
+d
+g
+a
+m
+p
+s
+w
+y
+"}
+(4,1,1) = {"
+b
+e
+h
+k
+n
+q
+t
+w
+y
+"}
+(5,1,1) = {"
+a
+a
+i
+a
+a
+a
+u
+v
+x
+"}
diff --git a/_maps/shuttles/mining_kilo.dmm b/_maps/shuttles/mining_kilo.dmm
new file mode 100644
index 00000000000..b75851a6cca
--- /dev/null
+++ b/_maps/shuttles/mining_kilo.dmm
@@ -0,0 +1,198 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/mining)
+"b" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/mining)
+"c" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/mining)
+"d" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/computer/shuttle/mining,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/mining)
+"e" = (
+/obj/structure/table,
+/obj/item/crowbar/red,
+/obj/item/radio/intercom{
+ pixel_y = 22
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/mining)
+"f" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/mining)
+"g" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/mining)
+"h" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/mining)
+"i" = (
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/mining)
+"j" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Mining Shuttle Airlock"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining";
+ name = "mining shuttle";
+ port_direction = 4;
+ width = 7
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/mining)
+"k" = (
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate/internals,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/mining)
+"l" = (
+/obj/effect/spawner/structure/window/shuttle,
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/mining)
+"m" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/ore_box,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/mining)
+"n" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/mining)
+"o" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless,
+/area/shuttle/mining)
+
+(1,1,1) = {"
+a
+a
+b
+a
+b
+a
+a
+"}
+(2,1,1) = {"
+a
+c
+f
+h
+g
+k
+n
+"}
+(3,1,1) = {"
+b
+d
+g
+i
+g
+l
+o
+"}
+(4,1,1) = {"
+a
+e
+f
+h
+g
+m
+n
+"}
+(5,1,1) = {"
+a
+a
+b
+j
+b
+a
+a
+"}
diff --git a/_maps/shuttles/mining_large.dmm b/_maps/shuttles/mining_large.dmm
new file mode 100644
index 00000000000..646e414b088
--- /dev/null
+++ b/_maps/shuttles/mining_large.dmm
@@ -0,0 +1,560 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/obj/effect/spawner/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/mining/large)
+"c" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/emergency,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"d" = (
+/obj/machinery/computer/shuttle/mining,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"e" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/item/tank/internals/emergency_oxygen,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"f" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/item/storage/firstaid/regular,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"g" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"h" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"i" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"j" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/item/stack/ore/iron{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/stack/ore/iron{
+ pixel_x = -2;
+ pixel_y = -8
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"k" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/mining/large)
+"l" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/item/folder/yellow,
+/obj/item/pen,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"m" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/corner,
+/obj/machinery/light/small,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"n" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"o" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/corner{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/obj/item/radio/intercom{
+ pixel_y = -29
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"p" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stock_parts/cell/high,
+/obj/item/screwdriver{
+ pixel_y = 18
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"q" = (
+/obj/machinery/status_display/evac,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/mining/large)
+"r" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Mining Shuttle Cockpit"
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"s" = (
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate/internals,
+/obj/item/pickaxe/emergency,
+/obj/item/pickaxe/emergency,
+/obj/effect/turf_decal/box/white/corners{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"t" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 4
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"u" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"v" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 1
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"w" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/ore_box,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"x" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"y" = (
+/obj/machinery/light/small,
+/obj/effect/turf_decal/box/white/corners,
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"z" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"A" = (
+/obj/machinery/light/small,
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"B" = (
+/obj/effect/turf_decal/box/white/corners,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/dark,
+/area/shuttle/mining/large)
+"C" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/item/flashlight,
+/turf/open/floor/plating,
+/area/shuttle/mining/large)
+"D" = (
+/obj/machinery/door/airlock/external{
+ name = "Mining Shuttle External Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/shuttle/mining/large)
+"E" = (
+/obj/machinery/power/apc/highcap{
+ dir = 4;
+ locked = 0;
+ name = "Mining Shuttle APC";
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/shuttle/mining/large)
+"F" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/mining/large)
+"G" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/mining/large)
+"H" = (
+/obj/structure/sign/warning/vacuum/external{
+ pixel_x = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/shuttle/mining/large)
+"I" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating/airless,
+/area/shuttle/mining/large)
+"J" = (
+/obj/machinery/door/airlock/external{
+ name = "Mining Shuttle External Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/docking_port/mobile{
+ dir = 1;
+ dwidth = 3;
+ height = 10;
+ id = "mining";
+ name = "mining shuttle";
+ port_direction = 2;
+ width = 7
+ },
+/turf/open/floor/plating,
+/area/shuttle/mining/large)
+
+(1,1,1) = {"
+a
+b
+b
+k
+k
+k
+b
+k
+F
+a
+"}
+(2,1,1) = {"
+b
+b
+f
+l
+k
+s
+x
+C
+G
+I
+"}
+(3,1,1) = {"
+b
+c
+g
+m
+q
+t
+y
+k
+k
+k
+"}
+(4,1,1) = {"
+b
+d
+h
+n
+r
+u
+z
+D
+H
+J
+"}
+(5,1,1) = {"
+b
+e
+i
+o
+k
+v
+A
+k
+k
+k
+"}
+(6,1,1) = {"
+b
+b
+j
+p
+k
+w
+B
+E
+G
+I
+"}
+(7,1,1) = {"
+a
+b
+b
+k
+k
+k
+b
+k
+F
+a
+"}
diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm
index 3477544492a..4cf6e3c7c5d 100644
--- a/_maps/shuttles/pirate_default.dmm
+++ b/_maps/shuttles/pirate_default.dmm
@@ -11,7 +11,6 @@
pixel_x = -24
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod/dark,
/area/shuttle/pirate)
@@ -91,6 +90,40 @@
"aj" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/shuttle/pirate)
+"ak" = (
+/obj/machinery/airalarm/all_access{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/freezer{
+ locked = 0;
+ name = "fridge"
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/storage/box/donkpockets,
+/obj/item/storage/fancy/donut_box,
+/obj/item/reagent_containers/food/snacks/cookie,
+/obj/item/reagent_containers/food/snacks/cookie{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/item/reagent_containers/food/snacks/chocolatebar,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/item/reagent_containers/food/condiment/milk,
+/obj/item/reagent_containers/food/condiment/milk,
+/turf/open/floor/plasteel,
+/area/shuttle/pirate)
"al" = (
/obj/machinery/loot_locator,
/obj/effect/decal/cleanable/dirt,
@@ -524,8 +557,8 @@
/obj/machinery/power/smes/engineering{
charge = 1e+006
},
-/obj/structure/cable,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/shuttle/pirate)
"bl" = (
@@ -622,38 +655,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/shuttle/pirate)
-"bw" = (
-/obj/machinery/airalarm/all_access{
- dir = 4;
- pixel_x = -24
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/closet/secure_closet/freezer{
- locked = 0;
- name = "fridge"
- },
-/obj/item/storage/box/donkpockets{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/storage/box/donkpockets,
-/obj/item/storage/fancy/donut_box,
-/obj/item/reagent_containers/food/snacks/cookie,
-/obj/item/reagent_containers/food/snacks/cookie{
- pixel_x = -6;
- pixel_y = -6
- },
-/obj/item/reagent_containers/food/snacks/chocolatebar,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/bar,
-/obj/effect/turf_decal/tile/bar{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/shuttle/pirate)
"bx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -777,19 +778,19 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/pirate)
"bO" = (
-/obj/structure/cable{
- icon_state = "0-2"
- },
/obj/machinery/power/apc{
aidisabled = 1;
dir = 1;
name = "Pirate Corvette APC";
- pixel_y = 24;
+ pixel_y = 23;
req_access = null
},
/obj/structure/reagent_dispensers/watertank,
/obj/effect/turf_decal/bot,
/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
/turf/open/floor/plating,
/area/shuttle/pirate)
"bP" = (
@@ -800,10 +801,10 @@
/turf/open/floor/plating,
/area/shuttle/pirate)
"bQ" = (
-/obj/structure/cable{
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/shuttle/pirate)
"bX" = (
@@ -1210,7 +1211,7 @@ eA
aa
ap
aw
-bw
+ak
bF
aj
aj
diff --git a/_maps/shuttles/ruin_pirate_cutter.dmm b/_maps/shuttles/ruin_pirate_cutter.dmm
index 4e36ea9edf5..5b972edc121 100644
--- a/_maps/shuttles/ruin_pirate_cutter.dmm
+++ b/_maps/shuttles/ruin_pirate_cutter.dmm
@@ -717,7 +717,7 @@
/obj/machinery/power/apc{
dir = 8;
name = "Pirate Cutter APC";
- pixel_x = -24;
+ pixel_x = -25;
req_access = null
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -735,7 +735,7 @@
/turf/open/floor/plasteel/dark,
/area/shuttle/caravan/pirate)
"EB" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 4
},
/obj/machinery/turretid{
@@ -1066,7 +1066,7 @@
/turf/open/floor/plating,
/area/shuttle/caravan/pirate)
"ZY" = (
-/obj/structure/chair/office/dark{
+/obj/structure/chair/office{
dir = 8
},
/obj/effect/turf_decal/tile/neutral{
diff --git a/_maps/shuttles/ruin_syndicate_dropship.dmm b/_maps/shuttles/ruin_syndicate_dropship.dmm
index 121f69f4a32..4ddcc53fb03 100644
--- a/_maps/shuttles/ruin_syndicate_dropship.dmm
+++ b/_maps/shuttles/ruin_syndicate_dropship.dmm
@@ -105,7 +105,7 @@
/obj/machinery/power/apc/syndicate{
dir = 8;
name = "Syndicate Drop Ship APC";
- pixel_x = -24
+ pixel_x = -25
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod/dark,
diff --git a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm
index 6c33e4d25e9..c1c57680d58 100644
--- a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm
+++ b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm
@@ -68,7 +68,7 @@
/obj/machinery/power/apc/highcap/fifteen_k{
dir = 8;
name = "Syndicate Fighter APC";
- pixel_x = -24;
+ pixel_x = -25;
req_access = null;
req_access_txt = "150"
},
diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm
index eeaae2f5798..8ae1155d9f9 100644
--- a/_maps/shuttles/whiteship_box.dmm
+++ b/_maps/shuttles/whiteship_box.dmm
@@ -181,7 +181,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/turf/open/floor/plasteel/white/side{
@@ -193,7 +193,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/blood/old,
@@ -210,7 +210,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white,
@@ -218,7 +218,7 @@
"ax" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -240,7 +240,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/airalarm/all_access{
@@ -257,7 +257,7 @@
"az" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -281,7 +281,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -304,7 +304,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -329,7 +329,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -343,10 +343,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -377,13 +377,13 @@
/obj/item/reagent_containers/food/snacks/muffin/berry,
/obj/item/reagent_containers/food/snacks/tofu,
/obj/item/reagent_containers/food/snacks/burrito,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 1;
name = "Hospital Ship Crew Quarters APC";
- pixel_y = 24;
+ pixel_y = 23;
req_access = null
},
/obj/effect/turf_decal/tile/neutral,
@@ -410,7 +410,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/decal/cleanable/blood/old,
@@ -423,7 +423,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/mob/living/simple_animal/hostile/zombie{
@@ -532,10 +532,11 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/hostile/zombie{
desc = "This undead fiend looks to be badly decomposed.";
environment_smash = 0;
@@ -544,7 +545,6 @@
melee_damage_upper = 11;
name = "Rotting Carcass"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/shuttle/abandoned/crew)
"aQ" = (
@@ -661,7 +661,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white/side{
@@ -712,7 +712,7 @@
"bc" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral,
@@ -814,9 +814,6 @@
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"bp" = (
-/obj/structure/cable{
- icon_state = "0-8"
- },
/obj/machinery/power/terminal{
dir = 4
},
@@ -827,6 +824,9 @@
/obj/machinery/light/small/built{
dir = 1
},
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"bq" = (
@@ -844,7 +844,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -895,7 +895,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel,
@@ -929,7 +929,7 @@
"bz" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white/side{
@@ -998,7 +998,7 @@
/obj/machinery/light/small/built{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/blood/old,
@@ -1030,7 +1030,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue,
@@ -1041,13 +1041,13 @@
/obj/structure/table/reinforced,
/obj/item/wrench,
/obj/item/crowbar,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Hospital Ship Medbay APC";
- pixel_y = 24;
+ pixel_y = 23;
req_access = null
},
/turf/open/floor/plasteel/white,
@@ -1093,7 +1093,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1140,6 +1140,7 @@
dir = 6
},
/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/hostile/zombie{
desc = "This undead fiend looks to be badly decomposed.";
environment_smash = 0;
@@ -1148,7 +1149,6 @@
melee_damage_upper = 11;
name = "Rotting Carcass"
},
-/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel,
/area/shuttle/abandoned/medbay)
"bT" = (
@@ -1162,7 +1162,7 @@
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/white/side{
@@ -1172,7 +1172,7 @@
"bV" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/medical/glass{
@@ -1182,7 +1182,7 @@
/area/shuttle/abandoned/medbay)
"bW" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white/side{
@@ -1194,13 +1194,13 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/blue,
@@ -1218,7 +1218,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1228,7 +1228,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/blood/gibs/old,
@@ -1268,7 +1268,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/blood/old,
@@ -1362,7 +1362,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -1438,24 +1438,24 @@
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"cr" = (
-/obj/structure/cable{
- icon_state = "2-4"
- },
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"cs" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "4-8"
- },
/obj/machinery/firealarm{
pixel_y = 24
},
/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"ct" = (
@@ -1468,7 +1468,7 @@
pixel_y = -24;
req_access = null
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
@@ -1477,7 +1477,7 @@
/obj/machinery/power/smes/engineering{
charge = 1e+006
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/effect/decal/cleanable/dirt/dust,
@@ -1494,7 +1494,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
@@ -1506,7 +1506,7 @@
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt,
@@ -1541,7 +1541,6 @@
/obj/machinery/power/port_gen/pacman{
anchored = 1
},
-/obj/structure/cable,
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/bot,
@@ -1549,6 +1548,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
+/obj/structure/cable,
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"cz" = (
@@ -1560,21 +1560,21 @@
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"cB" = (
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"cC" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/engineering{
@@ -1590,10 +1590,10 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/white/side{
@@ -1738,7 +1738,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/white/side{
@@ -1750,7 +1750,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/turf/open/floor/plasteel/white/corner{
@@ -1818,7 +1818,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/blood/old,
@@ -1874,7 +1874,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/turf/open/floor/plasteel/white/side{
@@ -1884,7 +1884,7 @@
"da" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white/corner{
@@ -1896,7 +1896,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/blood/gibs/old,
@@ -1916,7 +1916,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -1927,7 +1927,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1937,7 +1937,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel/white/side{
@@ -1954,7 +1954,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1965,7 +1965,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/sign/warning/nosmoking{
@@ -1985,7 +1985,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plasteel,
@@ -1997,7 +1997,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -2129,13 +2129,13 @@
dir = 4;
pixel_x = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Hospital Ship Bridge APC";
- pixel_y = 24;
+ pixel_y = 23;
req_access = null
},
/obj/effect/turf_decal/tile/blue{
diff --git a/_maps/shuttles/whiteship_delta.dmm b/_maps/shuttles/whiteship_delta.dmm
index aaebe7d25af..f5a9447b45e 100644
--- a/_maps/shuttles/whiteship_delta.dmm
+++ b/_maps/shuttles/whiteship_delta.dmm
@@ -177,13 +177,13 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 8;
name = "Frigate Bar APC";
- pixel_x = -24;
+ pixel_x = -25;
req_access = null
},
/obj/structure/spider/stickyweb,
@@ -351,7 +351,7 @@
dir = 4
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/external/glass{
@@ -392,7 +392,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -402,10 +402,10 @@
/area/shuttle/abandoned/engine)
"aQ" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -418,7 +418,7 @@
/area/shuttle/abandoned/crew)
"aR" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -431,7 +431,7 @@
/area/shuttle/abandoned/crew)
"aS" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -445,7 +445,7 @@
"aT" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/light/small,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/airalarm/all_access{
@@ -466,19 +466,19 @@
/area/shuttle/abandoned/crew)
"aU" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/power/apc{
dir = 1;
name = "Frigate Crew Quarters APC";
- pixel_y = 24;
+ pixel_y = 23;
req_access = null
},
/obj/effect/turf_decal/tile/neutral{
@@ -492,7 +492,7 @@
"aV" = (
/obj/machinery/light/small/built,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -506,7 +506,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/external/glass{
@@ -526,7 +526,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -541,7 +541,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -557,7 +557,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -567,7 +567,7 @@
/area/shuttle/abandoned/crew)
"ba" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/bar,
@@ -701,7 +701,7 @@
dir = 4;
pixel_x = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -731,7 +731,7 @@
/obj/machinery/light/small/built{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/spider/stickyweb,
@@ -774,7 +774,7 @@
"bq" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/public/glass{
@@ -861,7 +861,7 @@
/area/shuttle/abandoned/engine)
"bz" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -896,7 +896,7 @@
},
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -921,7 +921,7 @@
/area/shuttle/abandoned/crew)
"bG" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue,
@@ -1034,7 +1034,7 @@
/area/shuttle/abandoned/engine)
"bQ" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/spider/stickyweb,
@@ -1052,7 +1052,7 @@
req_access = null
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1089,7 +1089,7 @@
"bU" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/airalarm/all_access{
@@ -1144,7 +1144,7 @@
/area/shuttle/abandoned/bridge)
"bX" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1189,7 +1189,7 @@
/area/shuttle/abandoned/crew)
"cb" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/spider/stickyweb,
@@ -1206,7 +1206,7 @@
name = "Engineering"
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1223,13 +1223,13 @@
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 8;
name = "Frigate Bridge APC";
- pixel_x = -24;
+ pixel_x = -25;
req_access = null
},
/obj/effect/turf_decal/tile/blue{
@@ -1242,10 +1242,10 @@
/area/shuttle/abandoned/bridge)
"cf" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/item/gun/energy/laser/retro,
@@ -1289,7 +1289,7 @@
/area/shuttle/abandoned/bridge)
"cj" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/spider/stickyweb,
@@ -1309,20 +1309,20 @@
/obj/machinery/power/smes/engineering{
charge = 1e+006
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"cl" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-8"
},
/obj/machinery/power/apc{
@@ -1372,7 +1372,7 @@
pixel_x = 2;
pixel_y = 2
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1413,7 +1413,7 @@
/area/shuttle/abandoned/crew)
"cr" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -1430,15 +1430,15 @@
/obj/machinery/power/terminal{
dir = 1
},
+/obj/machinery/space_heater,
/obj/structure/cable{
icon_state = "0-2"
},
-/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"ct" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/button/door{
@@ -1478,7 +1478,7 @@
"cv" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/firealarm{
@@ -1525,13 +1525,13 @@
/obj/machinery/power/port_gen/pacman{
anchored = 1
},
-/obj/structure/cable,
/obj/item/wrench,
+/obj/structure/cable,
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"cC" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/oil,
@@ -1684,7 +1684,7 @@
dir = 4;
pixel_x = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/structure/spider/stickyweb,
@@ -1705,7 +1705,7 @@
/obj/machinery/light/small/built{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/blue{
@@ -1748,7 +1748,7 @@
},
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/door/firedoor,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1869,7 +1869,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
/obj/structure/spider/stickyweb,
@@ -1880,7 +1880,7 @@
/area/shuttle/abandoned/engine)
"dd" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1893,7 +1893,7 @@
name = "Engineering"
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1903,10 +1903,10 @@
/area/shuttle/abandoned/engine)
"df" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -1914,7 +1914,7 @@
/area/shuttle/abandoned/medbay)
"dg" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -1926,7 +1926,7 @@
/obj/machinery/door/airlock/medical{
name = "Medbay Storage"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -1947,7 +1947,7 @@
dir = 1
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/spider/stickyweb,
@@ -1963,7 +1963,7 @@
/area/shuttle/abandoned/medbay)
"dk" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -1975,13 +1975,13 @@
/area/shuttle/abandoned/medbay)
"dl" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
@@ -1994,7 +1994,7 @@
/obj/machinery/light/small{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2010,7 +2010,7 @@
},
/obj/machinery/light/small/built,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2021,7 +2021,7 @@
"do" = (
/obj/effect/turf_decal/stripes/white/line,
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2035,7 +2035,7 @@
},
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/light/small,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/structure/spider/stickyweb,
@@ -2046,7 +2046,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/external/glass{
@@ -2064,7 +2064,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/door/airlock/external/glass{
@@ -2084,7 +2084,7 @@
/area/shuttle/abandoned/cargo)
"dt" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -2234,7 +2234,7 @@
/area/shuttle/abandoned/medbay)
"dG" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/mob/living/simple_animal/hostile/poison/giant_spider/hunter{
@@ -2267,13 +2267,13 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable,
/obj/machinery/power/apc{
dir = 8;
name = "Frigate Cargo APC";
- pixel_x = -24;
+ pixel_x = -25;
req_access = null
},
+/obj/structure/cable/yellow,
/turf/open/floor/plasteel,
/area/shuttle/abandoned/cargo)
"dK" = (
@@ -2517,7 +2517,7 @@
/area/shuttle/abandoned/medbay)
"oo" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm
index 6815698a2c9..4f8eb894345 100644
--- a/_maps/shuttles/whiteship_meta.dmm
+++ b/_maps/shuttles/whiteship_meta.dmm
@@ -440,7 +440,7 @@
/area/shuttle/abandoned/engine)
"aP" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -454,7 +454,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt/dust,
@@ -465,7 +465,7 @@
/area/shuttle/abandoned/engine)
"aR" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -488,7 +488,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -509,7 +509,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -532,7 +532,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -557,7 +557,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -581,7 +581,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -610,10 +610,10 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -636,7 +636,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -660,7 +660,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -684,7 +684,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -695,7 +695,7 @@
"bb" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -715,7 +715,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -729,7 +729,7 @@
"bd" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -805,7 +805,7 @@
/area/shuttle/abandoned/engine)
"bj" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt/dust,
@@ -903,7 +903,7 @@
"br" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -979,7 +979,7 @@
/area/shuttle/abandoned/crew)
"by" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
@@ -1053,7 +1053,7 @@
name = "Bar"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -1102,7 +1102,7 @@
/area/shuttle/abandoned/engine)
"bI" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1213,13 +1213,13 @@
pixel_y = 3
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/machinery/power/apc{
dir = 1;
name = "Salvage Ship Bar APC";
- pixel_y = 24;
+ pixel_y = 23;
req_access = null
},
/obj/effect/turf_decal/tile/bar,
@@ -1231,10 +1231,10 @@
"bO" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/tile/bar,
@@ -1277,7 +1277,7 @@
/area/shuttle/abandoned/bridge)
"bS" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt/dust,
@@ -1379,7 +1379,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/bar,
@@ -1412,13 +1412,13 @@
/obj/item/pen{
pixel_x = -4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/obj/machinery/power/apc{
dir = 1;
name = "Salvage Ship Bridge APC";
- pixel_y = 24;
+ pixel_y = 23;
req_access = null
},
/obj/item/camera{
@@ -1482,7 +1482,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
@@ -1491,7 +1491,7 @@
/obj/structure/sign/warning/vacuum/external{
pixel_y = 32
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/light/small/built{
@@ -1505,17 +1505,17 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"ck" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/turf_decal/stripes/white/line{
@@ -1612,10 +1612,10 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-4"
},
/obj/effect/turf_decal/tile/bar,
@@ -1629,7 +1629,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/decal/cleanable/dirt,
@@ -1644,7 +1644,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -1664,7 +1664,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/decal/remains/human,
@@ -1687,9 +1687,6 @@
dir = 8
},
/obj/effect/decal/cleanable/blood/gibs/old,
-/mob/living/simple_animal/hostile/syndicate/melee{
- environment_smash = 0
- },
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -1700,6 +1697,9 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/mob/living/simple_animal/hostile/syndicate/melee{
+ environment_smash = 0
+ },
/turf/open/floor/plasteel/dark,
/area/shuttle/abandoned/bridge)
"cu" = (
@@ -1734,7 +1734,7 @@
/area/shuttle/abandoned/bridge)
"cw" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/dirt/dust,
@@ -1808,7 +1808,7 @@
"cB" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/bar,
@@ -1936,10 +1936,10 @@
/obj/machinery/power/apc{
dir = 8;
name = "Salvage Ship Cargo APC";
- pixel_x = -24;
+ pixel_x = -25;
req_access = null
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-2"
},
/turf/open/floor/plasteel/dark,
@@ -2008,7 +2008,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/bar,
@@ -2050,7 +2050,7 @@
dir = 4;
pixel_x = -24
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -2098,7 +2098,7 @@
name = "Bar"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -2138,7 +2138,7 @@
/obj/machinery/power/smes/engineering{
charge = 1e+006
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "0-4"
},
/obj/effect/decal/cleanable/dirt/dust,
@@ -2148,7 +2148,7 @@
/area/shuttle/abandoned/engine)
"cY" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/machinery/firealarm{
@@ -2202,7 +2202,7 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plasteel/dark,
@@ -2216,9 +2216,6 @@
"dd" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/components/unary/vent_pump/on,
-/mob/living/simple_animal/hostile/syndicate/melee{
- environment_smash = 0
- },
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
@@ -2229,6 +2226,9 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+/mob/living/simple_animal/hostile/syndicate/melee{
+ environment_smash = 0
+ },
/turf/open/floor/plasteel/dark,
/area/shuttle/abandoned/cargo)
"de" = (
@@ -2281,7 +2281,7 @@
"dh" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/turf_decal/tile/neutral{
@@ -2306,7 +2306,7 @@
/area/shuttle/abandoned/bar)
"dj" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
/obj/item/reagent_containers/food/condiment/flour{
pixel_x = -3;
pixel_y = 3
@@ -2373,12 +2373,12 @@
dir = 8
},
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
- icon_state = "0-2"
- },
/obj/machinery/power/terminal{
dir = 1
},
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"dq" = (
@@ -2392,10 +2392,10 @@
/area/shuttle/abandoned/cargo)
"dr" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "2-8"
},
/obj/effect/decal/cleanable/dirt/dust,
@@ -2403,10 +2403,10 @@
/area/shuttle/abandoned/engine)
"ds" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2420,7 +2420,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -2434,10 +2434,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -2456,7 +2456,7 @@
/obj/effect/turf_decal/arrows/white,
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -2481,7 +2481,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -2504,7 +2504,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "4-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -2529,7 +2529,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/stripes/white/line,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-8"
},
/obj/effect/turf_decal/tile/neutral{
@@ -2655,7 +2655,7 @@
/area/shuttle/abandoned/engine)
"dI" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/turf/open/floor/plating,
@@ -2818,10 +2818,10 @@
/obj/machinery/power/port_gen/pacman{
anchored = 1
},
-/obj/structure/cable,
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/bot,
/obj/item/wrench,
+/obj/structure/cable,
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
"dX" = (
@@ -2980,10 +2980,10 @@
/area/shuttle/abandoned/bar)
"el" = (
/obj/effect/decal/cleanable/dirt/dust,
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-4"
},
-/obj/structure/cable{
+/obj/structure/cable/yellow{
icon_state = "1-2"
},
/obj/effect/decal/cleanable/oil,
diff --git a/_maps/templates/shelter_1.dmm b/_maps/templates/shelter_1.dmm
index f5b2e141f4c..58146c1fb84 100644
--- a/_maps/templates/shelter_1.dmm
+++ b/_maps/templates/shelter_1.dmm
@@ -27,7 +27,10 @@
/turf/closed/wall/mineral/titanium/survival/pod,
/area/survivalpod)
"g" = (
-/obj/machinery/sleeper/survival_pod,
+/obj/machinery/stasis/survival_pod,
+/obj/machinery/vending/wallmed/survival_pod{
+ pixel_x = -24
+ },
/turf/open/floor/pod,
/area/survivalpod)
"h" = (
diff --git a/_maps/templates/shelter_2.dmm b/_maps/templates/shelter_2.dmm
index 80de4438da3..e259c1cc9c5 100644
--- a/_maps/templates/shelter_2.dmm
+++ b/_maps/templates/shelter_2.dmm
@@ -50,7 +50,10 @@
/turf/closed/wall/mineral/titanium/survival/pod,
/area/survivalpod)
"k" = (
-/obj/machinery/sleeper/survival_pod,
+/obj/machinery/stasis/survival_pod,
+/obj/machinery/vending/wallmed/survival_pod{
+ pixel_x = -24
+ },
/turf/open/floor/pod,
/area/survivalpod)
"l" = (
diff --git a/code/__DEFINES/DNA.dm b/code/__DEFINES/DNA.dm
index 3aa85593387..33d774f22dc 100644
--- a/code/__DEFINES/DNA.dm
+++ b/code/__DEFINES/DNA.dm
@@ -4,7 +4,7 @@
//Defines copying names of mutations in all cases, make sure to change this if you change mutation's type
#define HULK /datum/mutation/human/hulk
-#define XRAY /datum/mutation/human/x_ray
+#define XRAY /datum/mutation/human/thermal/x_ray
#define SPACEMUT /datum/mutation/human/space_adaptation
#define TK /datum/mutation/human/telekinesis
#define NERVOUS /datum/mutation/human/nervousness
@@ -36,6 +36,7 @@
#define VOID /datum/mutation/human/void
#define STRONG /datum/mutation/human/strong
#define FIRESWEAT /datum/mutation/human/fire
+#define THERMAL /datum/mutation/human/thermal
#define ANTENNA /datum/mutation/human/antenna
#define PARANOIA /datum/mutation/human/paranoia
#define MINDREAD /datum/mutation/human/mindreader
@@ -92,6 +93,8 @@
#define TR_KEEPSE (1<<5) // changelings shouldn't edit the DNA's SE when turning into a monkey
#define TR_DEFAULTMSG (1<<6)
#define TR_KEEPORGANS (1<<8)
+#define TR_KEEPSTUNS (1<<9)
+#define TR_KEEPREAGENTS (1<<10)
#define CLONER_FRESH_CLONE "fresh"
@@ -113,9 +116,10 @@
#define NOSTOMACH 13
#define NO_DNA_COPY 14
#define DRINKSBLOOD 15
-#define NOEYES 16
+#define NOFLASH 16
#define DYNCOLORS 17 //Use this if you want to change the race's color without the player being able to pick their own color. AKA special color shifting
#define AGENDER 18
+#define NOEYESPRITES 19 //Do not draw eyes or eyeless overlay
#define ORGAN_SLOT_BRAIN "brain"
#define ORGAN_SLOT_APPENDIX "appendix"
diff --git a/code/__DEFINES/admin.dm b/code/__DEFINES/admin.dm
index b84f79b5c72..393e5c93323 100644
--- a/code/__DEFINES/admin.dm
+++ b/code/__DEFINES/admin.dm
@@ -81,3 +81,6 @@
#define SPAM_TRIGGER_WARNING 5 //Number of identical messages required before the spam-prevention will warn you to stfu
#define SPAM_TRIGGER_AUTOMUTE 10 //Number of identical messages required before the spam-prevention will automute you
+
+#define STICKYBAN_DB_CACHE_TIME 10 SECONDS
+#define STICKYBAN_ROGUE_CHECK_TIME 5
\ No newline at end of file
diff --git a/code/__DEFINES/antagonists.dm b/code/__DEFINES/antagonists.dm
index 13de9d280bb..1969b8296a7 100644
--- a/code/__DEFINES/antagonists.dm
+++ b/code/__DEFINES/antagonists.dm
@@ -8,6 +8,17 @@
#define NUKE_RESULT_WRONG_STATION 7
#define NUKE_RESULT_WRONG_STATION_DEAD 8
+//fugitive end results
+#define FUGITIVE_RESULT_BADASS_HUNTER 0
+#define FUGITIVE_RESULT_POSTMORTEM_HUNTER 1
+#define FUGITIVE_RESULT_MAJOR_HUNTER 2
+#define FUGITIVE_RESULT_HUNTER_VICTORY 3
+#define FUGITIVE_RESULT_MINOR_HUNTER 4
+#define FUGITIVE_RESULT_STALEMATE 5
+#define FUGITIVE_RESULT_MINOR_FUGITIVE 6
+#define FUGITIVE_RESULT_FUGITIVE_VICTORY 7
+#define FUGITIVE_RESULT_MAJOR_FUGITIVE 8
+
#define APPRENTICE_DESTRUCTION "destruction"
#define APPRENTICE_BLUESPACE "bluespace"
#define APPRENTICE_ROBELESS "robeless"
@@ -42,3 +53,10 @@
//Overthrow time to update heads obj
#define OBJECTIVE_UPDATING_TIME 300
+
+//Assimilation
+#define TRACKER_DEFAULT_TIME 900
+#define TRACKER_MINDSHIELD_TIME 1200
+#define TRACKER_AWAKENED_TIME 3000
+#define TRACKER_BONUS_LARGE 300
+#define TRACKER_BONUS_SMALL 100
\ No newline at end of file
diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm
index 79f9b3d3137..3c804b09a18 100644
--- a/code/__DEFINES/atmospherics.dm
+++ b/code/__DEFINES/atmospherics.dm
@@ -125,7 +125,7 @@
//Atmos pipe limits
#define MAX_OUTPUT_PRESSURE 4500 // (kPa) What pressure pumps and powered equipment max out at.
#define MAX_TRANSFER_RATE 200 // (L/s) Maximum speed powered equipment can work at.
-
+#define VOLUME_PUMP_LEAK_AMOUNT 0.1 //10% of an overclocked volume pump leaks into the air
//used for device_type vars
#define UNARY 1
#define BINARY 2
@@ -156,7 +156,7 @@
#define TCOMMS_ATMOS "n2=100;TEMP=80" //-193,15°C telecommunications. also used for xenobiology slime killrooms
#define AIRLESS_ATMOS "TEMP=2.7" //space
#define FROZEN_ATMOS "o2=22;n2=82;TEMP=180" //-93.15°C snow and ice turfs
-#define KITCHEN_COLDROOM_ATMOS "o2=33;n2=124;TEMP=193.15" //-80°C kitchen coldroom; higher amount of mol to reach about 101.3 kpA
+#define KITCHEN_COLDROOM_ATMOS "o2=33;n2=124;TEMP=193.15" //-80°C kitchen coldroom; higher amount of mol to reach about 101.3 kpA
#define BURNMIX_ATMOS "o2=2500;plasma=5000;TEMP=370" //used in the holodeck burn test program
//ATMOSPHERICS DEPARTMENT GAS TANK TURFS
@@ -285,6 +285,12 @@
for(var/total_moles_id in cached_gases){\
out_var += cached_gases[total_moles_id][MOLES];\
}
+#ifdef TESTING
+GLOBAL_LIST_INIT(atmos_adjacent_savings, list(0,0))
+#define CALCULATE_ADJACENT_TURFS(T) if (SSadjacent_air.queue[T]) { GLOB.atmos_adjacent_savings[1] += 1 } else { GLOB.atmos_adjacent_savings[2] += 1; SSadjacent_air.queue[T] = 1 }
+#else
+#define CALCULATE_ADJACENT_TURFS(T) SSadjacent_air.queue[T] = 1
+#endif
GLOBAL_LIST_INIT(pipe_paint_colors, list(
"amethyst" = rgb(130,43,255), //supplymain
diff --git a/code/__DEFINES/atom_hud.dm b/code/__DEFINES/atom_hud.dm
index b944dd32efe..5acae5b8567 100644
--- a/code/__DEFINES/atom_hud.dm
+++ b/code/__DEFINES/atom_hud.dm
@@ -59,6 +59,7 @@
#define ANTAG_HUD_BROTHER 23
#define ANTAG_HUD_HIVE 24
#define ANTAG_HUD_OBSESSED 25
+#define ANTAG_HUD_FUGITIVE 26
// Notification action types
#define NOTIFY_JUMP "jump"
diff --git a/code/__DEFINES/cargo.dm b/code/__DEFINES/cargo.dm
index 242889e3f88..0fbd138b9ad 100644
--- a/code/__DEFINES/cargo.dm
+++ b/code/__DEFINES/cargo.dm
@@ -11,6 +11,7 @@
#define STYLE_FRUIT 11
#define STYLE_INVISIBLE 12
#define STYLE_GONDOLA 13
+#define STYLE_SEETHROUGH 14
#define POD_ICON_STATE 1
#define POD_NAME 2
@@ -29,5 +30,6 @@
list("honkpod", "\improper HONK pod", "A brightly-colored supply pod. It likely originated from the Clown Federation."),\
list("fruitpod", "\improper Orange", "An angry orange."),\
list("", "\improper S.T.E.A.L.T.H. pod MKVII", "A supply pod that, under normal circumstances, is completely invisible to conventional methods of detection. How are you even seeing this?"),\
- list("gondolapod", "gondola", "The silent walker. This one seems to be part of a delivery agency.")\
+ list("gondolapod", "gondola", "The silent walker. This one seems to be part of a delivery agency."),\
+ list("", "", "")\
)
\ No newline at end of file
diff --git a/code/__DEFINES/colors.dm b/code/__DEFINES/colors.dm
index 4811d0041fb..1953651125f 100644
--- a/code/__DEFINES/colors.dm
+++ b/code/__DEFINES/colors.dm
@@ -3,26 +3,30 @@
#define COLOR_INPUT_DISABLED "#F0F0F0"
#define COLOR_INPUT_ENABLED "#D3B5B5"
-//#define COLOR_WHITE "#EEEEEE"
-//#define COLOR_SILVER "#C0C0C0"
-//#define COLOR_GRAY "#808080"
+#define COLOR_DARKMODE_BACKGROUND "#202020"
+#define COLOR_DARKMODE_DARKBACKGROUND "#171717"
+#define COLOR_DARKMODE_TEXT "#a4bad6"
+
+#define COLOR_WHITE "#EEEEEE"
+#define COLOR_SILVER "#C0C0C0"
+#define COLOR_GRAY "#808080"
#define COLOR_FLOORTILE_GRAY "#8D8B8B"
#define COLOR_ALMOST_BLACK "#333333"
-//#define COLOR_BLACK "#000000"
+#define COLOR_BLACK "#000000"
#define COLOR_RED "#FF0000"
-//#define COLOR_RED_LIGHT "#FF3333"
-//#define COLOR_MAROON "#800000"
+#define COLOR_RED_LIGHT "#FF3333"
+#define COLOR_MAROON "#800000"
#define COLOR_YELLOW "#FFFF00"
-//#define COLOR_OLIVE "#808000"
-//#define COLOR_LIME "#32CD32"
+#define COLOR_OLIVE "#808000"
+#define COLOR_LIME "#32CD32"
#define COLOR_GREEN "#008000"
#define COLOR_CYAN "#00FFFF"
-//#define COLOR_TEAL "#008080"
+#define COLOR_TEAL "#008080"
#define COLOR_BLUE "#0000FF"
-//#define COLOR_BLUE_LIGHT "#33CCFF"
-//#define COLOR_NAVY "#000080"
+#define COLOR_BLUE_LIGHT "#33CCFF"
+#define COLOR_NAVY "#000080"
#define COLOR_PINK "#FFC0CB"
-//#define COLOR_MAGENTA "#FF00FF"
+#define COLOR_MAGENTA "#FF00FF"
#define COLOR_PURPLE "#800080"
#define COLOR_ORANGE "#FF9900"
#define COLOR_BEIGE "#CEB689"
@@ -53,4 +57,4 @@
#define COLOR_ASSEMBLY_GREEN "#44843C"
#define COLOR_ASSEMBLY_LBLUE "#5D99BE"
#define COLOR_ASSEMBLY_BLUE "#38559E"
-#define COLOR_ASSEMBLY_PURPLE "#6F6192"
\ No newline at end of file
+#define COLOR_ASSEMBLY_PURPLE "#6F6192"
diff --git a/code/__DEFINES/combat.dm b/code/__DEFINES/combat.dm
index 74765e9cd78..6f5b422f1eb 100644
--- a/code/__DEFINES/combat.dm
+++ b/code/__DEFINES/combat.dm
@@ -12,12 +12,13 @@
#define BRAIN "brain"
//bitflag damage defines used for suicide_act
-#define BRUTELOSS (1<<0)
-#define FIRELOSS (1<<1)
-#define TOXLOSS (1<<2)
-#define OXYLOSS (1<<3)
-#define SHAME (1<<4)
-#define MANUAL_SUICIDE (1<<5) //suicide_act will do the actual killing.
+#define BRUTELOSS (1<<0)
+#define FIRELOSS (1<<1)
+#define TOXLOSS (1<<2)
+#define OXYLOSS (1<<3)
+#define SHAME (1<<4)
+#define MANUAL_SUICIDE (1<<5) //suicide_act will do the actual killing.
+#define MANUAL_SUICIDE_NONLETHAL (1<<6) //when the suicide is conditionally lethal
#define EFFECT_STUN "stun"
#define EFFECT_KNOCKDOWN "knockdown"
@@ -67,6 +68,9 @@
#define GRAB_NECK 2
#define GRAB_KILL 3
+//Grab breakout odds
+#define BASE_GRAB_RESIST_CHANCE 30
+
//slowdown when in softcrit. Note that crawling slowdown will also apply at the same time!
#define SOFTCRIT_ADD_SLOWDOWN 2
//slowdown when crawling
@@ -84,6 +88,7 @@
#define ATTACK_EFFECT_KICK "kick"
#define ATTACK_EFFECT_SMASH "smash"
#define ATTACK_EFFECT_CLAW "claw"
+#define ATTACK_EFFECT_SLASH "slash"
#define ATTACK_EFFECT_DISARM "disarm"
#define ATTACK_EFFECT_BITE "bite"
#define ATTACK_EFFECT_MECHFIRE "mech_fire"
@@ -103,6 +108,20 @@
//the define for visible message range in combat
#define COMBAT_MESSAGE_RANGE 3
+//Shove knockdown lengths (deciseconds)
+#define SHOVE_KNOCKDOWN_SOLID 30
+#define SHOVE_KNOCKDOWN_HUMAN 30
+#define SHOVE_KNOCKDOWN_TABLE 30
+#define SHOVE_KNOCKDOWN_COLLATERAL 10
+#define SHOVE_CHAIN_PARALYZE 40
+//Shove slowdown
+#define SHOVE_SLOWDOWN_LENGTH 30
+#define SHOVE_SLOWDOWN_STRENGTH 0.85 //multiplier
+//Shove disarming item list
+GLOBAL_LIST_INIT(shove_disarming_types, typecacheof(list(
+ /obj/item/gun)))
+
+
//Combat object defines
//Embedded objects
diff --git a/code/__DEFINES/components.dm b/code/__DEFINES/components.dm
index 1c4fe8344c1..35257cf9fbe 100644
--- a/code/__DEFINES/components.dm
+++ b/code/__DEFINES/components.dm
@@ -7,6 +7,7 @@
#define GET_COMPONENT(varname, path) GET_COMPONENT_FROM(varname, path, src)
#define COMPONENT_INCOMPATIBLE 1
+#define COMPONENT_NOTRANSFER 2
// How multiple components of the exact same type are handled in the same datum
@@ -26,6 +27,7 @@
#define COMSIG_GLOB_VAR_EDIT "!var_edit" //called after a successful var edit somewhere in the world: (list/args)
#define COMSIG_GLOB_MOB_CREATED "!mob_created" //mob was created somewhere : (mob)
#define COMSIG_GLOB_MOB_DEATH "!mob_death" //mob died somewhere : (mob , gibbed)
+#define COMSIG_GLOB_LIVING_SAY_SPECIAL "!say_special" //global living say plug - use sparingly: (mob/speaker , message)
//////////////////////////////////////////////////////////////////
@@ -107,6 +109,8 @@
// /atom/movable signals
+#define COMSIG_MOVABLE_PRE_MOVE "movable_pre_move" //from base of atom/movable/Moved(): (/atom)
+ #define COMPONENT_MOVABLE_BLOCK_PRE_MOVE 1
#define COMSIG_MOVABLE_MOVED "movable_moved" //from base of atom/movable/Moved(): (/atom, dir)
#define COMSIG_MOVABLE_CROSS "movable_cross" //from base of atom/movable/Cross(): (/atom/movable)
#define COMSIG_MOVABLE_CROSSED "movable_crossed" //from base of atom/movable/Crossed(): (/atom/movable)
@@ -178,6 +182,8 @@
#define COMSIG_ITEM_PICKUP "item_pickup" //from base of obj/item/pickup(): (/mob/taker)
#define COMSIG_ITEM_ATTACK_ZONE "item_attack_zone" //from base of mob/living/carbon/attacked_by(): (mob/living/carbon/target, mob/living/user, hit_zone)
#define COMSIG_ITEM_IMBUE_SOUL "item_imbue_soul" //return a truthy value to prevent ensouling, checked in /obj/effect/proc_holder/spell/targeted/lichdom/cast(): (mob/user)
+#define COMSIG_ITEM_MARK_RETRIEVAL "item_mark_retrieval" //called before marking an object for retrieval, checked in /obj/effect/proc_holder/spell/targeted/summonitem/cast() : (mob/user)
+ #define COMPONENT_BLOCK_MARK_RETRIEVAL 1
#define COMSIG_ITEM_HIT_REACT "item_hit_react" //from base of obj/item/hit_reaction(): (list/args)
// /obj/item/clothing signals
@@ -197,6 +203,8 @@
// /obj/item/pda signals
#define COMSIG_PDA_CHANGE_RINGTONE "pda_change_ringtone" //called on pda when the user changes the ringtone: (mob/living/user, new_ringtone)
#define COMPONENT_STOP_RINGTONE_CHANGE 1
+#define COMSIG_PDA_CHECK_DETONATE "pda_check_detonate"
+ #define COMPONENT_PDA_NO_DETONATE 1
// /obj/item/radio signals
#define COMSIG_RADIO_NEW_FREQUENCY "radio_new_frequency" //called from base of /obj/item/radio/proc/set_frequency(): (list/args)
@@ -240,6 +248,7 @@
#define COMSIG_NANITE_SET_SAFETY "nanite_set_safety" //(amount) Sets safety threshold to the given amount
#define COMSIG_NANITE_SET_REGEN "nanite_set_regen" //(amount) Sets regeneration rate to the given amount
#define COMSIG_NANITE_SIGNAL "nanite_signal" //(code(1-9999)) Called when sending a nanite signal to a mob.
+#define COMSIG_NANITE_COMM_SIGNAL "nanite_comm_signal" //(comm_code(1-9999), comm_message) Called when sending a nanite comm signal to a mob.
#define COMSIG_NANITE_SCAN "nanite_scan" //(mob/user, full_scan) - sends to chat a scan of the nanites to the user, returns TRUE if nanites are detected
#define COMSIG_NANITE_UI_DATA "nanite_ui_data" //(list/data, scan_level) - adds nanite data to the given data list - made for ui_data procs
#define COMSIG_NANITE_ADD_PROGRAM "nanite_add_program" //(datum/nanite_program/new_program, datum/nanite_program/source_program) Called when adding a program to a nanite component
diff --git a/code/__DEFINES/fantasy_affixes.dm b/code/__DEFINES/fantasy_affixes.dm
new file mode 100644
index 00000000000..709d414d117
--- /dev/null
+++ b/code/__DEFINES/fantasy_affixes.dm
@@ -0,0 +1,5 @@
+#define AFFIX_PREFIX (1 << 0)
+#define AFFIX_SUFFIX (1 << 1)
+
+#define AFFIX_GOOD (1 << 0)
+#define AFFIX_EVIL (1 << 1)
\ No newline at end of file
diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm
index a5abad45ac4..0d741f97a4a 100644
--- a/code/__DEFINES/flags.dm
+++ b/code/__DEFINES/flags.dm
@@ -12,7 +12,7 @@
//check if all bitflags specified are present
-#define CHECK_MULTIPLE_BITFIELDS(flagvar, flags) ((flagvar & (flags)) == flags)
+#define CHECK_MULTIPLE_BITFIELDS(flagvar, flags) (((flagvar) & (flags)) == (flags))
GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768))
@@ -159,4 +159,4 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204
//alternate appearance flags
#define AA_TARGET_SEE_APPEARANCE (1<<0)
-#define AA_MATCH_TARGET_OVERLAYS (1<<1)
\ No newline at end of file
+#define AA_MATCH_TARGET_OVERLAYS (1<<1)
diff --git a/code/__DEFINES/food.dm b/code/__DEFINES/food.dm
index 2c7a66ce40c..5e12715aba8 100644
--- a/code/__DEFINES/food.dm
+++ b/code/__DEFINES/food.dm
@@ -11,6 +11,7 @@
#define GROSS (1<<10)
#define TOXIC (1<<11)
#define PINEAPPLE (1<<12)
+#define CLOTH (1<<14)
#define DRINK_NICE 1
#define DRINK_GOOD 2
diff --git a/code/__DEFINES/inventory.dm b/code/__DEFINES/inventory.dm
index c3db29286d5..2c3398597db 100644
--- a/code/__DEFINES/inventory.dm
+++ b/code/__DEFINES/inventory.dm
@@ -1,12 +1,12 @@
/*ALL DEFINES RELATED TO INVENTORY OBJECTS, MANAGEMENT, ETC, GO HERE*/
//ITEM INVENTORY WEIGHT, FOR w_class
-#define WEIGHT_CLASS_TINY 1 //Usually items smaller then a human hand, ex: Playing Cards, Lighter, Scalpel, Coins/Money
-#define WEIGHT_CLASS_SMALL 2 //Pockets can hold small and tiny items, ex: Flashlight, Multitool, Grenades, GPS Device
-#define WEIGHT_CLASS_NORMAL 3 //Standard backpacks can carry tiny, small & normal items, ex: Fire extinguisher, Stunbaton, Gas Mask, Metal Sheets
-#define WEIGHT_CLASS_BULKY 4 //Items that can be weilded or equipped but not stored in an inventory, ex: Defibrillator, Backpack, Space Suits
-#define WEIGHT_CLASS_HUGE 5 //Usually represents objects that require two hands to operate, ex: Shotgun, Two Handed Melee Weapons
-#define WEIGHT_CLASS_GIGANTIC 6 //Essentially means it cannot be picked up or placed in an inventory, ex: Mech Parts, Safe
+#define WEIGHT_CLASS_TINY 1 //Usually items smaller then a human hand, (e.g. playing cards, lighter, scalpel, coins/holochips)
+#define WEIGHT_CLASS_SMALL 2 //Pockets can hold small and tiny items, (e.g. flashlight, multitool, grenades, GPS device)
+#define WEIGHT_CLASS_NORMAL 3 //Standard backpacks can carry tiny, small & normal items, (e.g. fire extinguisher, stun baton, gas mask, metal sheets)
+#define WEIGHT_CLASS_BULKY 4 //Items that can be weilded or equipped but not stored in an inventory, (e.g. defibrillator, backpack, space suits)
+#define WEIGHT_CLASS_HUGE 5 //Usually represents objects that require two hands to operate, (e.g. shotgun, two-handed melee weapons)
+#define WEIGHT_CLASS_GIGANTIC 6 //Essentially means it cannot be picked up or placed in an inventory, (e.g. mech parts, safe)
//Inventory depth: limits how many nested storage items you can access directly.
//1: stuff in mob, 2: stuff in backpack, 3: stuff in box in backpack, etc
diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm
index 600fc8eb266..759f01b97de 100644
--- a/code/__DEFINES/is_helpers.dm
+++ b/code/__DEFINES/is_helpers.dm
@@ -70,6 +70,7 @@ GLOBAL_LIST_INIT(turfs_without_ground, typecacheof(list(
#define ishumanbasic(A) (is_species(A, /datum/species/human))
#define iscatperson(A) (ishumanbasic(A) && istype(A.dna.species, /datum/species/human/felinid) )
#define isethereal(A) (is_species(A, /datum/species/ethereal))
+#define isvampire(A) (is_species(A,/datum/species/vampire))
//more carbon mobs
#define ismonkey(A) (istype(A, /mob/living/carbon/monkey))
diff --git a/code/__DEFINES/logging.dm b/code/__DEFINES/logging.dm
index 3d8fdc37ce2..4b1db3937c8 100644
--- a/code/__DEFINES/logging.dm
+++ b/code/__DEFINES/logging.dm
@@ -15,25 +15,27 @@
#define INVESTIGATE_RADIATION "radiation"
#define INVESTIGATE_EXONET "exonet"
#define INVESTIGATE_NANITES "nanites"
-#define INVESTIGATE_PRESENTS "presents"
+#define INVESTIGATE_PRESENTS "presents"
// Logging types for log_message()
-#define LOG_ATTACK (1 << 0)
-#define LOG_SAY (1 << 1)
-#define LOG_WHISPER (1 << 2)
-#define LOG_EMOTE (1 << 3)
-#define LOG_DSAY (1 << 4)
-#define LOG_PDA (1 << 5)
-#define LOG_CHAT (1 << 6)
-#define LOG_COMMENT (1 << 7)
-#define LOG_TELECOMMS (1 << 8)
-#define LOG_OOC (1 << 9)
-#define LOG_ADMIN (1 << 10)
-#define LOG_OWNERSHIP (1 << 11)
-#define LOG_GAME (1 << 12)
-#define LOG_ADMIN_PRIVATE (1 << 13)
-#define LOG_ASAY (1 << 14)
-#define LOG_MECHA (1 << 15)
+#define LOG_ATTACK (1 << 0)
+#define LOG_SAY (1 << 1)
+#define LOG_WHISPER (1 << 2)
+#define LOG_EMOTE (1 << 3)
+#define LOG_DSAY (1 << 4)
+#define LOG_PDA (1 << 5)
+#define LOG_CHAT (1 << 6)
+#define LOG_COMMENT (1 << 7)
+#define LOG_TELECOMMS (1 << 8)
+#define LOG_OOC (1 << 9)
+#define LOG_ADMIN (1 << 10)
+#define LOG_OWNERSHIP (1 << 11)
+#define LOG_GAME (1 << 12)
+#define LOG_ADMIN_PRIVATE (1 << 13)
+#define LOG_ASAY (1 << 14)
+#define LOG_MECHA (1 << 15)
+#define LOG_VIRUS (1 << 16)
+#define LOG_CLONING (1 << 17)
//Individual logging panel pages
#define INDIVIDUAL_ATTACK_LOG (LOG_ATTACK)
diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm
index cba4b70019b..3df5f64874a 100644
--- a/code/__DEFINES/misc.dm
+++ b/code/__DEFINES/misc.dm
@@ -9,50 +9,38 @@
#define TEXT_EAST "[EAST]"
#define TEXT_WEST "[WEST]"
-//These get to go at the top, because they're special
-//You can use these defines to get the typepath of the currently running proc/verb (yes procs + verbs are objects)
-/* eg:
-/mob/living/carbon/human/death()
- to_chat(world, THIS_PROC_TYPE_STR) //You can only output the string versions
-Will print: "/mob/living/carbon/human/death" (you can optionally embed it in a string with () (eg: the _WITH_ARGS defines) to make it look nicer)
-*/
-#define THIS_PROC_TYPE .....
-#define THIS_PROC_TYPE_STR "[THIS_PROC_TYPE]" //Because you can only obtain a string of THIS_PROC_TYPE using "[]", and it's nice to just +/+= strings
-#define THIS_PROC_TYPE_STR_WITH_ARGS "[THIS_PROC_TYPE]([args.Join(",")])"
-#define THIS_PROC_TYPE_WEIRD ...... //This one is WEIRD, in some cases (When used in certain defines? (eg: ASSERT)) THIS_PROC_TYPE will fail to work, but THIS_PROC_TYPE_WEIRD will work instead
-//define THIS_PROC_TYPE_WEIRD_STR "[THIS_PROC_TYPE_WEIRD]" //Included for completeness
-//define THIS_PROC_TYPE_WEIRD_STR_WITH_ARGS "[THIS_PROC_TYPE_WEIRD]([args.Join(",")])" //Ditto
//Human Overlays Indexes/////////
-#define MUTATIONS_LAYER 28 //mutations. Tk headglows, cold resistance glow, etc
-#define BODY_BEHIND_LAYER 27 //certain mutantrace features (tail when looking south) that must appear behind the body parts
-#define BODYPARTS_LAYER 26 //Initially "AUGMENTS", this was repurposed to be a catch-all bodyparts flag
-#define BODY_ADJ_LAYER 25 //certain mutantrace features (snout, body markings) that must appear above the body parts
-#define BODY_LAYER 24 //underwear, undershirts, socks, eyes, lips(makeup)
-#define FRONT_MUTATIONS_LAYER 23 //mutations that should appear above body, body_adj and bodyparts layer (e.g. laser eyes)
-#define DAMAGE_LAYER 22 //damage indicators (cuts and burns)
-#define UNIFORM_LAYER 21
-#define ID_LAYER 20 //lmao at the idiot who put both ids and hands on the same layer
-#define HANDS_PART_LAYER 19
-#define GLOVES_LAYER 18
-#define SHOES_LAYER 17
-#define EARS_LAYER 16
-#define SUIT_LAYER 15
-#define GLASSES_LAYER 14
-#define BELT_LAYER 13 //Possible make this an overlay of somethign required to wear a belt?
-#define SUIT_STORE_LAYER 12
-#define NECK_LAYER 11
-#define BACK_LAYER 10
-#define HAIR_LAYER 9 //TODO: make part of head layer?
-#define FACEMASK_LAYER 8
-#define HEAD_LAYER 7
-#define HANDCUFF_LAYER 6
-#define LEGCUFF_LAYER 5
-#define HANDS_LAYER 4
-#define BODY_FRONT_LAYER 3
-#define SMELL_LAYER 2
+#define MUTATIONS_LAYER 29 //mutations. Tk headglows, cold resistance glow, etc
+#define BODY_BEHIND_LAYER 28 //certain mutantrace features (tail when looking south) that must appear behind the body parts
+#define BODYPARTS_LAYER 27 //Initially "AUGMENTS", this was repurposed to be a catch-all bodyparts flag
+#define BODY_ADJ_LAYER 26 //certain mutantrace features (snout, body markings) that must appear above the body parts
+#define BODY_LAYER 25 //underwear, undershirts, socks, eyes, lips(makeup)
+#define FRONT_MUTATIONS_LAYER 24 //mutations that should appear above body, body_adj and bodyparts layer (e.g. laser eyes)
+#define DAMAGE_LAYER 23 //damage indicators (cuts and burns)
+#define UNIFORM_LAYER 22
+#define ID_LAYER 21 //lmao at the idiot who put both ids and hands on the same layer
+#define HANDS_PART_LAYER 20
+#define GLOVES_LAYER 19
+#define SHOES_LAYER 18
+#define EARS_LAYER 17
+#define SUIT_LAYER 16
+#define GLASSES_LAYER 15
+#define BELT_LAYER 14 //Possible make this an overlay of somethign required to wear a belt?
+#define SUIT_STORE_LAYER 13
+#define NECK_LAYER 12
+#define BACK_LAYER 11
+#define HAIR_LAYER 10 //TODO: make part of head layer?
+#define FACEMASK_LAYER 9
+#define HEAD_LAYER 8
+#define HANDCUFF_LAYER 7
+#define LEGCUFF_LAYER 6
+#define HANDS_LAYER 5
+#define BODY_FRONT_LAYER 4
+#define SMELL_LAYER 3
+#define HALO_LAYER 2 //blood cult ascended halo, because there's currently no better solution for adding/removing
#define FIRE_LAYER 1 //If you're on fire
-#define TOTAL_LAYERS 28 //KEEP THIS UP-TO-DATE OR SHIT WILL BREAK ;_;
+#define TOTAL_LAYERS 29 //KEEP THIS UP-TO-DATE OR SHIT WILL BREAK ;_;
//Human Overlay Index Shortcuts for alternate_worn_layer, layers
//Because I *KNOW* somebody will think layer+1 means "above"
@@ -187,6 +175,9 @@ GLOBAL_LIST_EMPTY(bloody_footprints_cache)
//Gets the turf this atom inhabits
#define get_turf(A) (get_step(A, 0))
+//Same as above except gets the area instead
+#define get_area(A) (isarea(A) ? A : get_step(A, 0)?.loc)
+
//Ghost orbit types:
#define GHOST_ORBIT_CIRCLE "circle"
#define GHOST_ORBIT_TRIANGLE "triangle"
@@ -231,9 +222,6 @@ GLOBAL_LIST_INIT(ghost_others_options, list(GHOST_OTHERS_SIMPLE, GHOST_OTHERS_DE
GLOBAL_LIST_INIT(pda_styles, list(MONO, VT, ORBITRON, SHARE))
-//Color Defines
-#define OOC_COLOR "#002eb8"
-
/////////////////////////////////////
// atom.appearence_flags shortcuts //
/////////////////////////////////////
@@ -459,3 +447,6 @@ GLOBAL_LIST_INIT(pda_styles, list(MONO, VT, ORBITRON, SHARE))
#define DICE_NOT_RIGGED 1
#define DICE_BASICALLY_RIGGED 2
#define DICE_TOTALLY_RIGGED 3
+
+#define VOMIT_TOXIC 1
+#define VOMIT_PURPLE 2
diff --git a/code/__DEFINES/movespeed_modification.dm b/code/__DEFINES/movespeed_modification.dm
index f415e30a4e9..88cb50b783c 100644
--- a/code/__DEFINES/movespeed_modification.dm
+++ b/code/__DEFINES/movespeed_modification.dm
@@ -25,6 +25,8 @@
#define MOVESPEED_ID_SLIME_STATUS "SLIME_STATUS"
+#define MOVESPEED_ID_TARANTULA_WEB "TARANTULA_WEB"
+
#define MOVESPEED_ID_LIVING_TURF_SPEEDMOD "LIVING_TURF_SPEEDMOD"
#define MOVESPEED_ID_CARBON_SOFTCRIT "CARBON_SOFTCRIT"
@@ -53,9 +55,12 @@
#define MOVESPEED_ID_SANITY "MOOD_SANITY"
#define MOVESPEED_ID_SPECIES "SPECIES_SPEED_MOD"
+#define MOVESPEED_ID_SNAIL_CRAWL "SNAIL_CRAWL_SPEED_MOD"
#define MOVESPEED_ID_CYBER_THRUSTER "CYBER_IMPLANT_THRUSTER"
#define MOVESPEED_ID_JETPACK "JETPACK"
#define MOVESPEED_ID_SLAUGHTER "SLAUGHTER"
#define MOVESPEED_ID_DIE_OF_FATE "DIE_OF_FATE"
+
+#define MOVESPEED_ID_SHOVE "SHOVE"
diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm
index 5c50d54da46..5379c291296 100644
--- a/code/__DEFINES/preferences.dm
+++ b/code/__DEFINES/preferences.dm
@@ -16,6 +16,12 @@
#define DISABLE_ARRIVALRATTLE (1<<13)
#define COMBOHUD_LIGHTING (1<<14)
+#define DEADMIN_ALWAYS (1<<15)
+#define DEADMIN_ANTAGONIST (1<<16)
+#define DEADMIN_POSITION_HEAD (1<<17)
+#define DEADMIN_POSITION_SECURITY (1<<18)
+#define DEADMIN_POSITION_SILICON (1<<19)
+
#define TOGGLES_DEFAULT (SOUND_ADMINHELP|SOUND_MIDI|SOUND_AMBIENCE|SOUND_LOBBY|MEMBER_PUBLIC|INTENT_STYLE|MIDROUND_ANTAG|SOUND_INSTRUMENTS|SOUND_SHIP_AMBIENCE|SOUND_PRAYERS|SOUND_ANNOUNCEMENTS)
//Chat toggles
@@ -29,8 +35,9 @@
#define CHAT_GHOSTWHISPER (1<<7)
#define CHAT_GHOSTPDA (1<<8)
#define CHAT_GHOSTRADIO (1<<9)
+#define CHAT_BANKCARD (1<<10)
-#define TOGGLES_DEFAULT_CHAT (CHAT_OOC|CHAT_DEAD|CHAT_GHOSTEARS|CHAT_GHOSTSIGHT|CHAT_PRAYER|CHAT_RADIO|CHAT_PULLR|CHAT_GHOSTWHISPER|CHAT_GHOSTPDA|CHAT_GHOSTRADIO)
+#define TOGGLES_DEFAULT_CHAT (CHAT_OOC|CHAT_DEAD|CHAT_GHOSTEARS|CHAT_GHOSTSIGHT|CHAT_PRAYER|CHAT_RADIO|CHAT_PULLR|CHAT_GHOSTWHISPER|CHAT_GHOSTPDA|CHAT_GHOSTRADIO|CHAT_BANKCARD)
#define PARALLAX_INSANE -1 //for show offs
#define PARALLAX_HIGH 0 //default.
@@ -68,4 +75,10 @@
//Flags in the players table in the db
#define DB_FLAG_EXEMPT 1
-#define DEFAULT_CYBORG_NAME "Default Cyborg Name"
\ No newline at end of file
+#define DEFAULT_CYBORG_NAME "Default Cyborg Name"
+
+
+//Job preferences levels
+#define JP_LOW 1
+#define JP_MEDIUM 2
+#define JP_HIGH 3
\ No newline at end of file
diff --git a/code/__DEFINES/procpath.dm b/code/__DEFINES/procpath.dm
new file mode 100644
index 00000000000..11800583588
--- /dev/null
+++ b/code/__DEFINES/procpath.dm
@@ -0,0 +1,24 @@
+/// Represents a proc or verb path.
+///
+/// Despite having no DM-defined static type, proc paths have some variables,
+/// listed below. These are not modifiable, but for a given procpath P,
+/// `new P(null, "Name", "Desc")` can be used to create a new procpath with the
+/// same code but new `name` and `desc` values. The other variables cannot be
+/// changed in this way.
+///
+/// This type exists only to act as an annotation, providing reasonable static
+/// typing for procpaths. Previously, types like `/atom/verb` were used, with
+/// the `name` and `desc` vars of `/atom` thus being accessible. Proc and verb
+/// paths will fail `istype` and `ispath` checks against `/procpath`.
+/procpath
+ // Although these variables are effectively const, if they are marked const
+ // below, their accesses are optimized away.
+
+ /// A text string of the verb's name.
+ var/name as text
+ /// The verb's help text or description.
+ var/desc as text
+ /// The category or tab the verb will appear in.
+ var/category as text
+ /// Only clients/mobs with `see_invisibility` higher can use the verb.
+ var/invisibility as num
diff --git a/code/__DEFINES/radio.dm b/code/__DEFINES/radio.dm
index 943acdbc7ef..bfba80a80cb 100644
--- a/code/__DEFINES/radio.dm
+++ b/code/__DEFINES/radio.dm
@@ -103,3 +103,13 @@
#define RADIO_MAGNETS "magnets"
#define DEFAULT_SIGNALER_CODE 30
+
+//Requests Console
+#define REQ_NO_NEW_MESSAGE 0
+#define REQ_NORMAL_MESSAGE_PRIORITY 1
+#define REQ_HIGH_MESSAGE_PRIORITY 2
+#define REQ_EXTREME_MESSAGE_PRIORITY 3
+
+#define REQ_DEP_TYPE_ASSISTANCE (1<<0)
+#define REQ_DEP_TYPE_SUPPLIES (1<<1)
+#define REQ_DEP_TYPE_INFORMATION (1<<2)
diff --git a/code/__DEFINES/reactions.dm b/code/__DEFINES/reactions.dm
index 79db63a2a67..2c9f76b6a59 100644
--- a/code/__DEFINES/reactions.dm
+++ b/code/__DEFINES/reactions.dm
@@ -10,6 +10,10 @@
#define FIRE_PLASMA_ENERGY_RELEASED 3000000 //Amount of heat released per mole of burnt plasma into the tile
//General assmos defines.
#define WATER_VAPOR_FREEZE 200
+
+#define N2O_DECOMPOSITION_MIN_ENERGY 1400
+#define N2O_DECOMPOSITION_ENERGY_RELEASED 200000
+
#define NITRYL_FORMATION_ENERGY 100000
#define TRITIUM_BURN_OXY_FACTOR 100
#define TRITIUM_BURN_TRIT_FACTOR 10
@@ -24,6 +28,7 @@
#define STIMULUM_ABSOLUTE_DROP 0.00000335
#define REACTION_OPPRESSION_THRESHOLD 5
#define NOBLIUM_FORMATION_ENERGY 2e9 //1 Mole of Noblium takes the planck energy to condense.
+#define STIM_BALL_GAS_AMOUNT 5
//Research point amounts
#define NOBLIUM_RESEARCH_AMOUNT 1000
#define BZ_RESEARCH_SCALE 4
@@ -32,41 +37,14 @@
#define STIMULUM_RESEARCH_AMOUNT 50
//Plasma fusion properties
#define FUSION_ENERGY_THRESHOLD 3e9 //Amount of energy it takes to start a fusion reaction
-#define FUSION_TEMPERATURE_THRESHOLD 1000 //Temperature required to start a fusion reaction
#define FUSION_MOLE_THRESHOLD 250 //Mole count required (tritium/plasma) to start a fusion reaction
-#define FUSION_RELEASE_ENERGY_SUPER 3e9 //Amount of energy released in the fusion process, super tier
-#define FUSION_RELEASE_ENERGY_HIGH 1e9 //Amount of energy released in the fusion process, high tier
-#define FUSION_RELEASE_ENERGY_MID 5e8 //Amount of energy released in the fusion process, mid tier
-#define FUSION_RELEASE_ENERGY_LOW 1e8 //Amount of energy released in the fusion process, low tier
-#define FUSION_MEDIATION_FACTOR 80 //Arbitrary
-#define FUSION_SUPER_TIER_THRESHOLD 50 //anything above this is super tier
-#define FUSION_HIGH_TIER_THRESHOLD 20 //anything above this and below 50 is high tier
-#define FUSION_MID_TIER_THRESHOLD 5 //anything above this and below 20 is mid tier - below this is low tier, but that doesnt need a define
-#define FUSION_ENERGY_DIVISOR_SUPER 25 //power_ratio is divided by this during energy calculations
-#define FUSION_ENERGY_DIVISOR_HIGH 20
-#define FUSION_ENERGY_DIVISOR_MID 10
-#define FUSION_ENERGY_DIVISOR_LOW 2
-#define FUSION_GAS_CREATION_FACTOR_TRITIUM 0.40 //trit - one gas rather than two, so think about that when calculating stuff - 40% in total
-#define FUSION_GAS_CREATION_FACTOR_STIM 0.05 //stim percentage creation from high tier - 5%, 60% in total with pluox
-#define FUSION_GAS_CREATION_FACTOR_PLUOX 0.55 //pluox percentage creation from high tier - 55%, 60% in total with stim
-#define FUSION_GAS_CREATION_FACTOR_NITRYL 0.20 //nitryl and N2O - 80% in total
-#define FUSION_GAS_CREATION_FACTOR_N2O 0.60 //nitryl and N2O - 80% in total
-#define FUSION_GAS_CREATION_FACTOR_BZ 0.05 //BZ - 5% - 90% in total with CO2
-#define FUSION_GAS_CREATION_FACTOR_CO2 0.85 //CO2 - 85% - 90% in total with BZ
-#define FUSION_MID_TIER_RAD_PROB_FACTOR 2 //probability of radpulse is power ratio * this for whatever tier
-#define FUSION_LOW_TIER_RAD_PROB_FACTOR 5
-#define FUSION_EFFICIENCY_BASE 60 //used in the fusion efficiency calculations
-#define FUSION_EFFICIENCY_DIVISOR 0.6 //ditto
-#define FUSION_RADIATION_FACTOR 15000 //horizontal asymptote
-#define FUSION_RADIATION_CONSTANT 30 //equation is form of (ax) / (x + b), where a = radiation factor and b = radiation constant and x = power ratio (https://www.desmos.com/calculator/4i1f296phl)
-#define FUSION_ZAP_POWER_ASYMPTOTE 50000 //maximum value - not enough to instacrit but it'll still hurt like shit
-#define FUSION_ZAP_POWER_CONSTANT 75 //equation is of from [ax / (x + b)] + c, where a = zap power asymptote, b = zap power constant, c = zap power base and x = power ratio
-#define FUSION_ZAP_POWER_BASE 1000 //(https://www.desmos.com/calculator/vvbmhf4unm)
-#define FUSION_ZAP_RANGE_SUPER 9 //range of the tesla zaps that occur from fusion
-#define FUSION_ZAP_RANGE_HIGH 7
-#define FUSION_ZAP_RANGE_MID 5
-#define FUSION_ZAP_RANGE_LOW 3
-#define FUSION_PARTICLE_FACTOR_SUPER 4 //# of particles fired out is equal to rand(3,6) * this for whatever tier
-#define FUSION_PARTICLE_FACTOR_HIGH 3
-#define FUSION_PARTICLE_FACTOR_MID 2
-#define FUSION_PARTICLE_FACTOR_LOW 1
+#define FUSION_TRITIUM_CONVERSION_COEFFICIENT (1e-10)
+#define INSTABILITY_GAS_POWER_FACTOR 0.003
+#define FUSION_TRITIUM_MOLES_USED 1
+#define PLASMA_BINDING_ENERGY 20000000
+#define TOROID_VOLUME_BREAKEVEN 1000
+#define FUSION_TEMPERATURE_THRESHOLD 10000
+#define PARTICLE_CHANCE_CONSTANT (-20000000)
+#define FUSION_RAD_MAX 2000
+#define FUSION_RAD_COEFFICIENT (-1000)
+#define FUSION_INSTABILITY_ENDOTHERMALITY 2
diff --git a/code/__DEFINES/robots.dm b/code/__DEFINES/robots.dm
index 9c813052419..0820d632473 100644
--- a/code/__DEFINES/robots.dm
+++ b/code/__DEFINES/robots.dm
@@ -35,6 +35,7 @@
#define CLEAN_BOT (1<<3) // Cleanbots
#define MED_BOT (1<<4) // Medibots
#define HONK_BOT (1<<5) // Honkbots & ED-Honks
+#define FIRE_BOT (1<<6) // Firebots
//AI notification defines
#define NEW_BORG 1
diff --git a/code/__DEFINES/shuttles.dm b/code/__DEFINES/shuttles.dm
index c8a583a55ea..14d9060b84b 100644
--- a/code/__DEFINES/shuttles.dm
+++ b/code/__DEFINES/shuttles.dm
@@ -7,6 +7,8 @@
#define SHUTTLE_STRANDED "stranded"
#define SHUTTLE_ESCAPE "escape"
#define SHUTTLE_ENDGAME "endgame: game over"
+#define SHUTTLE_RECHARGING "recharging"
+#define SHUTTLE_PREARRIVAL "landing"
#define EMERGENCY_IDLE_OR_RECALLED (SSshuttle.emergency && ((SSshuttle.emergency.mode == SHUTTLE_IDLE) || (SSshuttle.emergency.mode == SHUTTLE_RECALL)))
#define EMERGENCY_ESCAPED_OR_ENDGAMED (SSshuttle.emergency && ((SSshuttle.emergency.mode == SHUTTLE_ESCAPE) || (SSshuttle.emergency.mode == SHUTTLE_ENDGAME)))
diff --git a/code/__DEFINES/status_effects.dm b/code/__DEFINES/status_effects.dm
index c6ca0c72d0c..47d7a8dff3b 100644
--- a/code/__DEFINES/status_effects.dm
+++ b/code/__DEFINES/status_effects.dm
@@ -38,6 +38,8 @@
#define STATUS_EFFECT_REGENERATIVE_CORE /datum/status_effect/regenerative_core
+#define STATUS_EFFECT_ANTIMAGIC /datum/status_effect/antimagic //grants antimagic (and reapplies if lost) for the duration
+
/////////////
// DEBUFFS //
/////////////
@@ -88,6 +90,12 @@
#define STATUS_EFFECT_SPASMS /datum/status_effect/spasms //causes random muscle spasms
+#define STATUS_EFFECT_DNA_MELT /datum/status_effect/dna_melt //usually does something horrible to you when you hit 100 genetic instability
+
+#define STATUS_EFFECT_GO_AWAY /datum/status_effect/go_away //makes you launch through walls in a single direction for a while
+
+#define STATUS_EFFECT_STASIS /datum/status_effect/incapacitating/stasis //Halts biological functions like bleeding, chemical processing, blood regeneration, walking, etc
+
/////////////
// NEUTRAL //
/////////////
@@ -100,13 +108,21 @@
#define STATUS_EFFECT_INLOVE /datum/status_effect/in_love //Displays you as being in love with someone else, and makes hearts appear around them.
+#define STATUS_EFFECT_BUGGED /datum/status_effect/bugged //Lets other mobs listen in on what it hears
+
#define STATUS_EFFECT_HIVE_TRACKER /datum/status_effect/hive_track
#define STATUS_EFFECT_HIVE_RADAR /datum/status_effect/agent_pinpointer/hivemind
+#define STATUS_EFFECT_BOUNTY /datum/status_effect/bounty //rewards the person who added this to the target with refreshed spells and a fair heal
+
/////////////
// SLIME //
/////////////
#define STATUS_EFFECT_RAINBOWPROTECTION /datum/status_effect/rainbow_protection //Invulnerable and pacifistic
#define STATUS_EFFECT_SLIMESKIN /datum/status_effect/slimeskin //Increased armor
+
+// Stasis helpers
+
+#define IS_IN_STASIS(mob) (mob.has_status_effect(STATUS_EFFECT_STASIS))
diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm
index 0fcab54f0f8..dc045037ada 100644
--- a/code/__DEFINES/subsystems.dm
+++ b/code/__DEFINES/subsystems.dm
@@ -1,7 +1,8 @@
//Update this whenever the db schema changes
//make sure you add an update to the schema_version stable in the db changelog
#define DB_MAJOR_VERSION 5
-#define DB_MINOR_VERSION 0
+#define DB_MINOR_VERSION 1
+
//Timing subsystem
//Don't run if there is an identical unique timer active
@@ -24,10 +25,6 @@
#define TIMER_ID_NULL -1
-//For servers that can't do with any additional lag, set this to none in flightpacks.dm in subsystem/processing.
-#define FLIGHTSUIT_PROCESSING_NONE 0
-#define FLIGHTSUIT_PROCESSING_FULL 1
-
#define INITIALIZATION_INSSATOMS 0 //New should not call Initialize
#define INITIALIZATION_INNEW_MAPLOAD 2 //New should call Initialize(TRUE)
#define INITIALIZATION_INNEW_REGULAR 1 //New should call Initialize(FALSE)
@@ -106,10 +103,10 @@
#define FIRE_PRIOTITY_BURNING 40
#define FIRE_PRIORITY_DEFAULT 50
#define FIRE_PRIORITY_PARALLAX 65
-#define FIRE_PRIORITY_FLIGHTPACKS 80
#define FIRE_PRIORITY_MOBS 100
#define FIRE_PRIORITY_TGUI 110
#define FIRE_PRIORITY_TICKER 200
+#define FIRE_PRIORITY_ATMOS_ADJACENCY 300
#define FIRE_PRIORITY_OVERLAYS 500
#define FIRE_PRIORITY_INPUT 1000 // This must always always be the max highest priority. Player input must never be lost.
diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm
index ab1905dcd53..cb7e9b02042 100644
--- a/code/__DEFINES/traits.dm
+++ b/code/__DEFINES/traits.dm
@@ -1,3 +1,63 @@
+// trait accessor defines
+#define ADD_TRAIT(target, trait, source) \
+ do { \
+ var/list/_L; \
+ if (!target.status_traits) { \
+ target.status_traits = list(); \
+ _L = target.status_traits; \
+ _L[trait] = list(source); \
+ } else { \
+ _L = target.status_traits; \
+ if (_L[trait]) { \
+ _L[trait] |= list(source); \
+ } else { \
+ _L[trait] = list(source); \
+ } \
+ } \
+ } while (0)
+#define REMOVE_TRAIT(target, trait, sources) \
+ do { \
+ var/list/_L = target.status_traits; \
+ var/list/_S; \
+ if (sources && !islist(sources)) { \
+ _S = list(sources); \
+ } else { \
+ _S = sources\
+ }; \
+ if (_L && _L[trait]) { \
+ for (var/_T in _L[trait]) { \
+ if ((!_S && (_T != ROUNDSTART_TRAIT)) || (_T in _S)) { \
+ _L[trait] -= _T \
+ } \
+ };\
+ if (!length(_L[trait])) { \
+ _L -= trait \
+ }; \
+ if (!length(_L)) { \
+ target.status_traits = null \
+ }; \
+ } \
+ } while (0)
+#define REMOVE_TRAITS_NOT_IN(target, sources) \
+ do { \
+ var/list/_L = target.status_traits; \
+ var/list/_S = sources; \
+ if (_L) { \
+ for (var/_T in _L) { \
+ _L[_T] &= _S;\
+ if (!length(_L[_T])) { \
+ _L -= _T } \
+ };\
+ if (!length(_L)) { \
+ target.status_traits = null\
+ };\
+ }\
+ } while (0)
+#define HAS_TRAIT(target, trait) (target.status_traits ? (target.status_traits[trait] ? TRUE : FALSE) : FALSE)
+#define HAS_TRAIT_FROM(target, trait, source) (target.status_traits ? (target.status_traits[trait] ? (source in target.status_traits[trait]) : FALSE) : FALSE)
+
+
+
//mob traits
#define TRAIT_BLIND "blind"
#define TRAIT_MUTE "mute"
@@ -63,6 +123,7 @@
#define TRAIT_DISK_VERIFIER "disk-verifier"
#define TRAIT_NOMOBSWAP "no-mob-swap"
#define TRAIT_XRAY_VISION "xray_vision"
+#define TRAIT_THERMAL_VISION "thermal_vision"
#define TRAIT_ABDUCTOR_TRAINING "abductor-training"
#define TRAIT_ABDUCTOR_SCIENTIST_TRAINING "abductor-scientist-training"
#define TRAIT_SURGEON "surgeon"
@@ -74,6 +135,7 @@
#define TRAIT_ALWAYS_CLEAN "always-clean"
#define TRAIT_BOOZE_SLIDER "booze-slider"
#define TRAIT_UNINTELLIGIBLE_SPEECH "unintelligible-speech"
+#define TRAIT_UNSTABLE "unstable"
//non-mob traits
#define TRAIT_PARALYSIS "paralysis" //Used for limb-based paralysis, where replacing the limb will fix it
@@ -102,6 +164,8 @@
#define TRAIT_PHOTOGRAPHER "photographer"
#define TRAIT_MUSICIAN "musician"
#define TRAIT_LIGHT_DRINKER "light_drinker"
+#define TRAIT_EMPATH "empath"
+#define TRAIT_FRIENDLY "friendly"
// common trait sources
#define TRAIT_GENERIC "generic"
@@ -160,3 +224,5 @@
#define LOCKED_HELMET_TRAIT "locked-helmet"
#define NINJA_SUIT_TRAIT "ninja-suit"
#define ANTI_DROP_IMPLANT_TRAIT "anti-drop-implant"
+#define HIVEMIND_ONE_MIND_TRAIT "one_mind"
+#define VR_ZONE_TRAIT "vr_zone_trait"
diff --git a/code/__DEFINES/turf_flags.dm b/code/__DEFINES/turf_flags.dm
index 5ceb6f2e2ed..881a535a40e 100644
--- a/code/__DEFINES/turf_flags.dm
+++ b/code/__DEFINES/turf_flags.dm
@@ -3,3 +3,4 @@
#define CHANGETURF_FORCEOP 4
#define CHANGETURF_SKIP 8 // A flag for PlaceOnTop to just instance the new turf instead of calling ChangeTurf. Used for uninitialized turfs NOTHING ELSE
#define CHANGETURF_INHERIT_AIR 16 // Inherit air from previous turf. Implies CHANGETURF_IGNORE_AIR
+#define CHANGETURF_RECALC_ADJACENT 32 //Immediately recalc adjacent atmos turfs instead of queuing.
diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm
index b0d9cbcdaeb..f76e4322b0c 100644
--- a/code/__HELPERS/_logging.dm
+++ b/code/__HELPERS/_logging.dm
@@ -62,6 +62,20 @@
if (CONFIG_GET(flag/log_mecha))
WRITE_LOG(GLOB.world_mecha_log, "MECHA: [text]")
+/proc/log_virus(text)
+ if (CONFIG_GET(flag/log_virus))
+ WRITE_LOG(GLOB.world_virus_log, "VIRUS: [text]")
+
+/proc/log_cloning(text, mob/initiator)
+ if(CONFIG_GET(flag/log_cloning))
+ WRITE_LOG(GLOB.world_cloning_log, "CLONING: [text]")
+
+/proc/log_paper(text)
+ WRITE_LOG(GLOB.world_paper_log, "PAPER: [text]")
+
+/proc/log_asset(text)
+ WRITE_LOG(GLOB.world_asset_log, "ASSET: [text]")
+
/proc/log_access(text)
if (CONFIG_GET(flag/log_access))
WRITE_LOG(GLOB.world_game_log, "ACCESS: [text]")
@@ -170,6 +184,8 @@
WRITE_LOG(GLOB.config_error_log, text)
SEND_TEXT(world.log, text)
+/proc/log_mapping(text)
+ WRITE_LOG(GLOB.world_map_error_log, text)
/* For logging round startup. */
/proc/start_log(log)
diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm
index 1f5b82f7bf1..ec669a49dd5 100644
--- a/code/__HELPERS/areas.dm
+++ b/code/__HELPERS/areas.dm
@@ -1,5 +1,10 @@
#define BP_MAX_ROOM_SIZE 300
+GLOBAL_LIST_INIT(typecache_powerfailure_safe_areas, typecacheof(/area/engine/engineering, \
+ /area/engine/supermatter, \
+ /area/engine/atmospherics_engine, \
+ /area/ai_monitored/turret_protected/ai))
+
// Gets an atmos isolated contained space
// Returns an associative list of turf|dirs pairs
// The dirs are connected turfs in the same space
diff --git a/code/__HELPERS/dna.dm b/code/__HELPERS/dna.dm
index bb0c89d1f37..5ec66923ea5 100644
--- a/code/__HELPERS/dna.dm
+++ b/code/__HELPERS/dna.dm
@@ -5,6 +5,7 @@
#define GET_INITIALIZED_MUTATION(A) GLOB.all_mutations[A]
#define GET_GENE_STRING(A, B) (B.mutation_index[A])
#define GET_SEQUENCE(A) (GLOB.full_sequences[A])
+#define GET_MUTATION_TYPE_FROM_ALIAS(A) (GLOB.alias_mutations[A])
#define GET_MUTATION_STABILIZER(A) ((A.stabilizer_coeff < 0) ? 1 : A.stabilizer_coeff)
#define GET_MUTATION_SYNCHRONIZER(A) ((A.synchronizer_coeff < 0) ? 1 : A.synchronizer_coeff)
diff --git a/code/__HELPERS/files.dm b/code/__HELPERS/files.dm
index 7f0b5a3c071..5d6106cf918 100644
--- a/code/__HELPERS/files.dm
+++ b/code/__HELPERS/files.dm
@@ -1,5 +1,5 @@
//Sends resource files to client cache
-/client/proc/getFiles()
+/client/proc/getFiles(...)
for(var/file in args)
src << browse_rsc(file)
diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm
index 62cff3e6bb7..f5644114338 100644
--- a/code/__HELPERS/game.dm
+++ b/code/__HELPERS/game.dm
@@ -8,12 +8,6 @@
#define Z_TURFS(ZLEVEL) block(locate(1,1,ZLEVEL), locate(world.maxx, world.maxy, ZLEVEL))
#define CULT_POLL_WAIT 2400
-/proc/get_area(atom/A)
- if(isarea(A))
- return A
- var/turf/T = get_turf(A)
- return T ? T.loc : null
-
/proc/get_area_name(atom/X, format_text = FALSE)
var/area/A = isarea(X) ? X : get_area(X)
if(!A)
@@ -498,11 +492,15 @@
//Recursively checks if an item is inside a given type, even through layers of storage. Returns the atom if it finds it.
/proc/recursive_loc_check(atom/movable/target, type)
var/atom/A = target
+ if(istype(A, type))
+ return A
+
while(!istype(A.loc, type))
if(!A.loc)
return
A = A.loc
- return A
+
+ return A.loc
/proc/AnnounceArrival(var/mob/living/carbon/human/character, var/rank)
if(!SSticker.IsRoundInProgress() || QDELETED(character))
diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm
index 11068435096..a9bf023b7d2 100644
--- a/code/__HELPERS/mobs.dm
+++ b/code/__HELPERS/mobs.dm
@@ -376,11 +376,22 @@ GLOBAL_LIST_EMPTY(species_list)
if(!T)
CRASH("attempt to spawn atom type: [spawn_type] in nullspace")
+ var/list/spawned_mobs = new(amount)
+
for(var/j in 1 to amount)
- var/atom/movable/X = new spawn_type(T)
+ var/atom/movable/X
+
+ if (istype(spawn_type, /list))
+ var/mob_type = pick(spawn_type)
+ X = new mob_type(T)
+ else
+ X = new spawn_type(T)
+
if (admin_spawn)
X.flags_1 |= ADMIN_SPAWNED_1
+ spawned_mobs[j] = X
+
if(always_max_walk || prob(walk_chance))
if(always_max_walk)
step_count = max_walk
@@ -390,6 +401,8 @@ GLOBAL_LIST_EMPTY(species_list)
for(var/i in 1 to step_count)
step(X, pick(NORTH, SOUTH, EAST, WEST))
+ return spawned_mobs
+
/proc/deadchat_broadcast(message, mob/follow_target=null, turf/turf_target=null, speaker_key=null, message_type=DEADCHAT_REGULAR)
message = "[message]"
for(var/mob/M in GLOB.player_list)
@@ -402,7 +415,7 @@ GLOBAL_LIST_EMPTY(species_list)
var/override = FALSE
if(M.client && M.client.holder && (prefs.chat_toggles & CHAT_DEAD))
override = TRUE
- if(M.has_trait(TRAIT_SIXTHSENSE))
+ if(HAS_TRAIT(M, TRAIT_SIXTHSENSE))
override = TRUE
if(isnewplayer(M) && !override)
continue
diff --git a/code/__HELPERS/radio.dm b/code/__HELPERS/radio.dm
index 84b354b6cd5..a5bf3a17150 100644
--- a/code/__HELPERS/radio.dm
+++ b/code/__HELPERS/radio.dm
@@ -12,3 +12,8 @@
/proc/format_frequency(frequency)
frequency = text2num(frequency)
return "[round(frequency / 10)].[frequency % 10]"
+
+//Opposite of format, returns as a number
+/proc/unformat_frequency(frequency)
+ frequency = text2num(frequency)
+ return frequency * 10
\ No newline at end of file
diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm
index 3f421c8421b..1959cf35cf6 100644
--- a/code/__HELPERS/roundend.dm
+++ b/code/__HELPERS/roundend.dm
@@ -163,6 +163,7 @@
set waitfor = FALSE
to_chat(world, "
The round has ended.")
+ log_game("The round has ended.")
if(LAZYLEN(GLOB.round_end_notifiees))
send2irc("Notice", "[GLOB.round_end_notifiees.Join(", ")] the round has ended.")
diff --git a/code/__HELPERS/shell.dm b/code/__HELPERS/shell.dm
index 8b615eac0a0..eed86a3bd10 100644
--- a/code/__HELPERS/shell.dm
+++ b/code/__HELPERS/shell.dm
@@ -25,7 +25,10 @@
shelleo_ids[shelleo_id] = TRUE
out_file = "[SHELLEO_NAME][shelleo_id][SHELLEO_OUT]"
err_file = "[SHELLEO_NAME][shelleo_id][SHELLEO_ERR]"
- errorcode = shell("[interpreter] \"[command]\" > [out_file] 2> [err_file]")
+ if(world.system_type == UNIX)
+ errorcode = shell("[interpreter] \"[replacetext(command, "\"", "\\\"")]\" > [out_file] 2> [err_file]")
+ else
+ errorcode = shell("[interpreter] \"[command]\" > [out_file] 2> [err_file]")
if(fexists(out_file))
stdout = file2text(out_file)
fdel(out_file)
diff --git a/code/__HELPERS/time.dm b/code/__HELPERS/time.dm
index 5fe65af8f3f..677643b9edd 100644
--- a/code/__HELPERS/time.dm
+++ b/code/__HELPERS/time.dm
@@ -11,11 +11,11 @@
wtime = world.time
return time2text(wtime - GLOB.timezoneOffset, format)
-/proc/station_time(display_only = FALSE)
- return ((((world.time - SSticker.round_start_time) * SSticker.station_time_rate_multiplier) + SSticker.gametime_offset) % 864000) - (display_only? GLOB.timezoneOffset : 0)
+/proc/station_time(display_only = FALSE, wtime=world.time)
+ return ((((wtime - SSticker.round_start_time) * SSticker.station_time_rate_multiplier) + SSticker.gametime_offset) % 864000) - (display_only? GLOB.timezoneOffset : 0)
-/proc/station_time_timestamp(format = "hh:mm:ss")
- return time2text(station_time(TRUE), format)
+/proc/station_time_timestamp(format = "hh:mm:ss", wtime)
+ return time2text(station_time(TRUE, wtime), format)
/proc/station_time_debug(force_set)
if(isnum(force_set))
diff --git a/code/__HELPERS/type2type.dm b/code/__HELPERS/type2type.dm
index 1846529286e..9f473c32a0e 100644
--- a/code/__HELPERS/type2type.dm
+++ b/code/__HELPERS/type2type.dm
@@ -448,16 +448,6 @@
else
. = max(0, min(255, 138.5177312231 * log(temp - 10) - 305.0447927307))
-/proc/fusionpower2text(power) //used when displaying fusion power on analyzers
- switch(power)
- if(0 to 5)
- return "low"
- if(5 to 20)
- return "mid"
- if(20 to 50)
- return "high"
- if(50 to INFINITY)
- return "super"
/proc/color2hex(color) //web colors
if(!color)
diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm
index 4b371819e1f..13a35209420 100644
--- a/code/__HELPERS/unsorted.dm
+++ b/code/__HELPERS/unsorted.dm
@@ -203,7 +203,7 @@ Turf and target are separate in case you want to teleport some distance from a t
var/loop = 1
var/safety = 0
- var/banned = is_banned_from(C.ckey, "Appearance")
+ var/banned = C ? is_banned_from(C.ckey, "Appearance") : null
while(loop && safety < 5)
if(C && C.prefs.custom_names[role] && !safety && !banned)
@@ -367,12 +367,7 @@ Turf and target are separate in case you want to teleport some distance from a t
return "[round((powerused * 0.000000001),0.0001)] GW"
// Format an energy value in J, kJ, MJ, or GJ. 1W = 1J/s.
-/proc/DisplayEnergy(units)
- // APCs process every (SSmachines.wait * 0.1) seconds, and turn 1 W of
- // excess power into GLOB.CELLRATE energy units when charging cells.
- // With the current configuration of wait=20 and CELLRATE=0.002, this
- // means that one unit is 1 kJ.
- units *= SSmachines.wait * 0.1 / GLOB.CELLRATE
+/proc/DisplayJoules(units)
if (units < 1000) // Less than a kJ
return "[round(units, 0.1)] J"
else if (units < 1000000) // Less than a MJ
@@ -381,6 +376,14 @@ Turf and target are separate in case you want to teleport some distance from a t
return "[round(units * 0.000001, 0.001)] MJ"
return "[round(units * 0.000000001, 0.0001)] GJ"
+// Format an energy value measured in Power Cell units.
+/proc/DisplayEnergy(units)
+ // APCs process every (SSmachines.wait * 0.1) seconds, and turn 1 W of
+ // excess power into GLOB.CELLRATE energy units when charging cells.
+ // With the current configuration of wait=20 and CELLRATE=0.002, this
+ // means that one unit is 1 kJ.
+ return DisplayJoules(units * SSmachines.wait * 0.1 / GLOB.CELLRATE)
+
/proc/get_mob_by_ckey(key)
if(!key)
return
@@ -1126,6 +1129,27 @@ B --><-- A
/proc/get_random_station_turf()
return safepick(get_area_turfs(pick(GLOB.the_station_areas)))
+/proc/get_safe_random_station_turf()
+ for (var/i in 1 to 5)
+ var/list/L = get_area_turfs(pick(GLOB.the_station_areas))
+ var/turf/target
+ while (L.len && !target)
+ var/I = rand(1, L.len)
+ var/turf/T = L[I]
+ if(!T.density)
+ var/clear = TRUE
+ for(var/obj/O in T)
+ if(O.density)
+ clear = FALSE
+ break
+ if(clear)
+ target = T
+ if (!target)
+ L.Cut(I,I+1)
+ if (target)
+ return target
+
+
/proc/get_closest_atom(type, list, source)
var/closest_atom
var/closest_distance
@@ -1319,7 +1343,7 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new)
#define UNTIL(X) while(!(X)) stoplag()
-/proc/pass()
+/proc/pass(...)
return
/proc/get_mob_or_brainmob(occupant)
diff --git a/code/_globalvars/bitfields.dm b/code/_globalvars/bitfields.dm
index fe42800f7f6..9a805f0299d 100644
--- a/code/_globalvars/bitfields.dm
+++ b/code/_globalvars/bitfields.dm
@@ -167,7 +167,8 @@ GLOBAL_LIST_INIT(bitfields, list(
"PICKUP" = MOBILITY_PICKUP,
"USE" = MOBILITY_USE,
"UI" = MOBILITY_UI,
- "STORAGE" = MOBILITY_STORAGE
+ "STORAGE" = MOBILITY_STORAGE,
+ "PULL" = MOBILITY_PULL,
),
"rad_flags" = list(
"RAD_PROTECT_CONTENTS" = RAD_PROTECT_CONTENTS,
diff --git a/code/_globalvars/genetics.dm b/code/_globalvars/genetics.dm
index c95743e9dab..4582fe0a9a5 100644
--- a/code/_globalvars/genetics.dm
+++ b/code/_globalvars/genetics.dm
@@ -1,30 +1,9 @@
- //////////////
-GLOBAL_VAR_INIT(NEARSIGHTBLOCK, 0)
-GLOBAL_VAR_INIT(EPILEPSYBLOCK, 0)
-GLOBAL_VAR_INIT(COUGHBLOCK, 0)
-GLOBAL_VAR_INIT(TOURETTESBLOCK, 0)
-GLOBAL_VAR_INIT(NERVOUSBLOCK, 0)
-GLOBAL_VAR_INIT(BLINDBLOCK, 0)
-GLOBAL_VAR_INIT(DEAFBLOCK, 0)
-GLOBAL_VAR_INIT(HULKBLOCK, 0)
-GLOBAL_VAR_INIT(TELEBLOCK, 0)
-GLOBAL_VAR_INIT(FIREBLOCK, 0)
-GLOBAL_VAR_INIT(XRAYBLOCK, 0)
-GLOBAL_VAR_INIT(CLUMSYBLOCK, 0)
-GLOBAL_VAR_INIT(STRANGEBLOCK, 0)
-GLOBAL_VAR_INIT(RACEBLOCK, 0)
-
-GLOBAL_LIST(bad_se_blocks)
-GLOBAL_LIST(good_se_blocks)
-GLOBAL_LIST(op_se_blocks)
-
-GLOBAL_VAR(NULLED_SE)
-GLOBAL_VAR(NULLED_UI)
-
-GLOBAL_LIST_EMPTY(all_mutations)
-GLOBAL_LIST_EMPTY(full_sequences)
-GLOBAL_LIST_EMPTY(bad_mutations)
-GLOBAL_LIST_EMPTY(good_mutations)
-GLOBAL_LIST_EMPTY(not_good_mutations)
+//faster than having to constantly loop for them
+GLOBAL_LIST_EMPTY(all_mutations) //type = initialized mutation
+GLOBAL_LIST_EMPTY(full_sequences) //type = correct sequence
+GLOBAL_LIST_EMPTY(bad_mutations) //bad initialized mutations
+GLOBAL_LIST_EMPTY(good_mutations) //good initialized mutations
+GLOBAL_LIST_EMPTY(not_good_mutations) //neutral initialized mutations
+GLOBAL_LIST_EMPTY(alias_mutations) //alias = type
GLOBAL_LIST_EMPTY(mutation_recipes)
\ No newline at end of file
diff --git a/code/_globalvars/lists/maintenance_loot.dm b/code/_globalvars/lists/maintenance_loot.dm
index b0b8d09c271..5ae3bdfbe6e 100644
--- a/code/_globalvars/lists/maintenance_loot.dm
+++ b/code/_globalvars/lists/maintenance_loot.dm
@@ -105,5 +105,6 @@ GLOBAL_LIST_INIT(maintenance_loot, list(
/obj/item/storage/toolbox/artistic = 2,
/obj/item/toy/eightball = 1,
/obj/item/reagent_containers/pill/floorpill = 1,
+ /obj/item/reagent_containers/food/snacks/cannedpeaches/maint = 1,
"" = 3
))
diff --git a/code/_globalvars/lists/mobs.dm b/code/_globalvars/lists/mobs.dm
index 3400079d3d9..28d7d982180 100644
--- a/code/_globalvars/lists/mobs.dm
+++ b/code/_globalvars/lists/mobs.dm
@@ -26,7 +26,6 @@ GLOBAL_LIST_EMPTY(available_ai_shells)
GLOBAL_LIST_INIT(simple_animals, list(list(),list(),list(),list())) // One for each AI_* status define
GLOBAL_LIST_EMPTY(spidermobs) //all sentient spider mobs
GLOBAL_LIST_EMPTY(bots_list)
-GLOBAL_LIST_EMPTY(living_cameras)
GLOBAL_LIST_EMPTY(aiEyes)
GLOBAL_LIST_EMPTY(language_datum_instances)
diff --git a/code/_globalvars/lists/objects.dm b/code/_globalvars/lists/objects.dm
index b5ba352bab1..14c752613bf 100644
--- a/code/_globalvars/lists/objects.dm
+++ b/code/_globalvars/lists/objects.dm
@@ -13,7 +13,6 @@ GLOBAL_LIST_EMPTY(deliverybeacontags) //list of all tags associated with d
GLOBAL_LIST_EMPTY(nuke_list)
GLOBAL_LIST_EMPTY(alarmdisplay) //list of all machines or programs that can display station alerts
GLOBAL_LIST_EMPTY(singularities) //list of all singularities on the station (actually technically all engines)
-GLOBAL_LIST_EMPTY(vending_cache)
GLOBAL_LIST(chemical_reactions_list) //list of all /datum/chemical_reaction datums. Used during chemical reactions
GLOBAL_LIST(chemical_reagents_list) //list of all /datum/reagent datums indexed by reagent id. Used by chemistry stuff
diff --git a/code/_globalvars/lists/poll_ignore.dm b/code/_globalvars/lists/poll_ignore.dm
index 94723cae38f..490ddd62e30 100644
--- a/code/_globalvars/lists/poll_ignore.dm
+++ b/code/_globalvars/lists/poll_ignore.dm
@@ -13,6 +13,7 @@
#define POLL_IGNORE_GOLEM "golem"
#define POLL_IGNORE_SWARMER "swarmer"
#define POLL_IGNORE_DRONE "drone"
+#define POLL_IGNORE_FUGITIVE "fugitive"
GLOBAL_LIST_INIT(poll_ignore_desc, list(
POLL_IGNORE_SENTIENCE_POTION = "Sentience potion",
@@ -28,6 +29,7 @@ GLOBAL_LIST_INIT(poll_ignore_desc, list(
POLL_IGNORE_GOLEM = "Golems",
POLL_IGNORE_SWARMER = "Swarmer shells",
POLL_IGNORE_DRONE = "Drone shells",
+ POLL_IGNORE_FUGITIVE = "Fugitive Hunter",
))
GLOBAL_LIST_INIT(poll_ignore, init_poll_ignore())
diff --git a/code/_globalvars/logging.dm b/code/_globalvars/logging.dm
index 5184077bc84..45e96b9b9b6 100644
--- a/code/_globalvars/logging.dm
+++ b/code/_globalvars/logging.dm
@@ -28,6 +28,16 @@ GLOBAL_VAR(world_job_debug_log)
GLOBAL_PROTECT(world_job_debug_log)
GLOBAL_VAR(world_mecha_log)
GLOBAL_PROTECT(world_mecha_log)
+GLOBAL_VAR(world_virus_log)
+GLOBAL_PROTECT(world_virus_log)
+GLOBAL_VAR(world_asset_log)
+GLOBAL_PROTECT(world_asset_log)
+GLOBAL_VAR(world_cloning_log)
+GLOBAL_PROTECT(world_cloning_log)
+GLOBAL_VAR(world_map_error_log)
+GLOBAL_PROTECT(world_map_error_log)
+GLOBAL_VAR(world_paper_log)
+GLOBAL_PROTECT(world_paper_log)
GLOBAL_LIST_EMPTY(bombers)
GLOBAL_PROTECT(bombers)
diff --git a/code/_onclick/adjacent.dm b/code/_onclick/adjacent.dm
index ddff0b6bd3a..f50e2e2b29f 100644
--- a/code/_onclick/adjacent.dm
+++ b/code/_onclick/adjacent.dm
@@ -68,9 +68,10 @@
/atom/movable/Adjacent(var/atom/neighbor)
if(neighbor == loc)
return TRUE
- if(!isturf(loc))
+ var/turf/T = loc
+ if(!istype(T))
return FALSE
- if(loc.Adjacent(neighbor,target = neighbor, mover = src))
+ if(T.Adjacent(neighbor,target = neighbor, mover = src))
return TRUE
return FALSE
diff --git a/code/_onclick/ai.dm b/code/_onclick/ai.dm
index f2376e01c11..f273e695d99 100644
--- a/code/_onclick/ai.dm
+++ b/code/_onclick/ai.dm
@@ -23,6 +23,9 @@
return
next_click = world.time + 1
+ if(!can_interact_with(A))
+ return
+
if(multicam_on)
var/turf/T = get_turf(A)
if(T)
@@ -59,8 +62,6 @@
if(controlled_mech) //Are we piloting a mech? Placed here so the modifiers are not overridden.
controlled_mech.click_action(A, src, params) //Override AI normal click behavior.
return
-
- return
if(modifiers["shift"])
ShiftClickOn(A)
return
diff --git a/code/_onclick/drag_drop.dm b/code/_onclick/drag_drop.dm
index c64f0d7a3ea..b048fa224c9 100644
--- a/code/_onclick/drag_drop.dm
+++ b/code/_onclick/drag_drop.dm
@@ -102,20 +102,6 @@
/obj/screen/click_catcher/IsAutoclickable()
. = 1
-//Please don't roast me too hard
-/client/MouseMove(object,location,control,params)
- mouseParams = params
- mouseLocation = location
- mouseObject = object
- mouseControlObject = control
- if(mob && LAZYLEN(mob.mousemove_intercept_objects))
- for(var/datum/D in mob.mousemove_intercept_objects)
- D.onMouseMove(object, location, control, params)
- ..()
-
-/datum/proc/onMouseMove(object, location, control, params)
- return
-
/client/MouseDrag(src_object,atom/over_object,src_location,over_location,src_control,over_control,params)
var/list/L = params2list(params)
if (L["middle"])
@@ -143,4 +129,4 @@
if (middragatom == src_object)
middragtime = 0
middragatom = null
- ..()
\ No newline at end of file
+ ..()
diff --git a/code/_onclick/hud/_defines.dm b/code/_onclick/hud/_defines.dm
index 326a9878209..5790320af48 100644
--- a/code/_onclick/hud/_defines.dm
+++ b/code/_onclick/hud/_defines.dm
@@ -138,6 +138,22 @@
#define ui_ai_multicam "SOUTH+1:6,WEST+13"
#define ui_ai_add_multicam "SOUTH+1:6,WEST+14"
+// pAI
+
+#define ui_pai_software "SOUTH:6,WEST"
+#define ui_pai_shell "SOUTH:6,WEST+1"
+#define ui_pai_chassis "SOUTH:6,WEST+2"
+#define ui_pai_rest "SOUTH:6,WEST+3"
+#define ui_pai_light "SOUTH:6,WEST+4"
+#define ui_pai_newscaster "SOUTH:6,WEST+5"
+#define ui_pai_host_monitor "SOUTH:6,WEST+6"
+#define ui_pai_crew_manifest "SOUTH:6,WEST+7"
+#define ui_pai_state_laws "SOUTH:6,WEST+8"
+#define ui_pai_pda_send "SOUTH:6,WEST+9"
+#define ui_pai_pda_log "SOUTH:6,WEST+10"
+#define ui_pai_take_picture "SOUTH:6,WEST+12"
+#define ui_pai_view_images "SOUTH:6,WEST+13"
+
//Pop-up inventory
#define ui_shoes "WEST+1:8,SOUTH:5"
diff --git a/code/_onclick/hud/action_button.dm b/code/_onclick/hud/action_button.dm
index 4ae61169b7b..7a7e950195f 100644
--- a/code/_onclick/hud/action_button.dm
+++ b/code/_onclick/hud/action_button.dm
@@ -100,7 +100,7 @@
name = "Show Buttons"
else
name = "Hide Buttons"
- UpdateIcon()
+ update_icon()
usr.update_action_buttons()
/obj/screen/movable/action_button/hide_toggle/AltClick(mob/user)
@@ -121,9 +121,9 @@
hide_icon = settings["toggle_icon"]
hide_state = settings["toggle_hide"]
show_state = settings["toggle_show"]
- UpdateIcon()
+ update_icon()
-/obj/screen/movable/action_button/hide_toggle/proc/UpdateIcon()
+/obj/screen/movable/action_button/hide_toggle/update_icon()
cut_overlays()
add_overlay(mutable_appearance(hide_icon, hidden ? show_state : hide_state))
diff --git a/code/_onclick/hud/blob_overmind.dm b/code/_onclick/hud/blob_overmind.dm
index ab8bc459ae1..d4ace893680 100644
--- a/code/_onclick/hud/blob_overmind.dm
+++ b/code/_onclick/hud/blob_overmind.dm
@@ -48,7 +48,7 @@
if(isovermind(usr))
var/mob/camera/blob/B = usr
if(!B.placed)
- B.place_blob_core(B.base_point_rate, 0)
+ B.place_blob_core(0)
B.transport_core()
/obj/screen/blob/Blobbernaut
@@ -91,26 +91,26 @@
var/mob/camera/blob/B = usr
B.create_factory()
-/obj/screen/blob/ReadaptChemical
+/obj/screen/blob/ReadaptStrain
icon_state = "ui_chemswap"
name = "Readapt Chemical (40)"
desc = "Randomly rerolls your chemical for 40 resources."
-/obj/screen/blob/ReadaptChemical/MouseEntered(location,control,params)
+/obj/screen/blob/ReadaptStrain/MouseEntered(location,control,params)
if(hud && hud.mymob && isovermind(hud.mymob))
var/mob/camera/blob/B = hud.mymob
- if(B.free_chem_rerolls)
- name = "Readapt Chemical (FREE)"
- desc = "Randomly rerolls your chemical for free."
+ if(B.free_strain_rerolls)
+ name = "Readapt Strain (FREE)"
+ desc = "Randomly rerolls your strain for free."
else
name = initial(name)
desc = initial(desc)
..()
-/obj/screen/blob/ReadaptChemical/Click()
+/obj/screen/blob/ReadaptStrain/Click()
if(isovermind(usr))
var/mob/camera/blob/B = usr
- B.chemical_reroll()
+ B.strain_reroll()
/obj/screen/blob/RelocateCore
icon_state = "ui_swap"
@@ -167,7 +167,7 @@
using.screen_loc = ui_hand_position(1)
static_inventory += using
- using = new /obj/screen/blob/ReadaptChemical()
+ using = new /obj/screen/blob/ReadaptStrain()
using.screen_loc = ui_storage1
using.hud = src
static_inventory += using
diff --git a/code/_onclick/hud/pai.dm b/code/_onclick/hud/pai.dm
new file mode 100644
index 00000000000..c045223d983
--- /dev/null
+++ b/code/_onclick/hud/pai.dm
@@ -0,0 +1,258 @@
+#define PAI_MISSING_SOFTWARE_MESSAGE "You must download the required software to use this."
+
+/obj/screen/pai
+ icon = 'icons/mob/screen_pai.dmi'
+ var/required_software
+
+/obj/screen/pai/Click()
+ if(isobserver(usr) || usr.incapacitated())
+ return FALSE
+ var/mob/living/silicon/pai/pAI = usr
+ if(required_software && !pAI.software.Find(required_software))
+ to_chat(pAI, PAI_MISSING_SOFTWARE_MESSAGE)
+ return FALSE
+ return TRUE
+
+/obj/screen/pai/software
+ name = "Software Interface"
+ icon_state = "pai"
+
+/obj/screen/pai/software/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.paiInterface()
+
+/obj/screen/pai/shell
+ name = "Toggle Holoform"
+ icon_state = "pai_holoform"
+
+/obj/screen/pai/shell/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ if(pAI.holoform)
+ pAI.fold_in(0)
+ else
+ pAI.fold_out()
+
+/obj/screen/pai/chassis
+ name = "Holochassis Appearance Composite"
+ icon_state = "pai_chassis"
+
+/obj/screen/pai/chassis/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.choose_chassis()
+
+/obj/screen/pai/rest
+ name = "Rest"
+ icon_state = "pai_rest"
+
+/obj/screen/pai/rest/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.lay_down()
+
+/obj/screen/pai/light
+ name = "Toggle Integrated Lights"
+ icon_state = "light"
+
+/obj/screen/pai/light/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.toggle_integrated_light()
+
+/obj/screen/pai/newscaster
+ name = "pAI Newscaster"
+ icon_state = "newscaster"
+ required_software = "newscaster"
+
+/obj/screen/pai/newscaster/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.newscaster.ui_interact(usr)
+
+/obj/screen/pai/host_monitor
+ name = "Host Health Scan"
+ icon_state = "host_monitor"
+ required_software = "host scan"
+
+/obj/screen/pai/host_monitor/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ if(iscarbon(pAI.card.loc))
+ pAI.hostscan.attack(pAI.card.loc, pAI)
+ else
+ to_chat(src, "You are not being carried by anyone!")
+ return 0
+
+/obj/screen/pai/crew_manifest
+ name = "Crew Manifest"
+ icon_state = "manifest"
+ required_software = "crew manifest"
+
+/obj/screen/pai/crew_manifest/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.ai_roster()
+
+/obj/screen/pai/state_laws
+ name = "State Laws"
+ icon_state = "state_laws"
+
+/obj/screen/pai/state_laws/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.checklaws()
+
+/obj/screen/pai/pda_msg_send
+ name = "PDA - Send Message"
+ icon_state = "pda_send"
+ required_software = "digital messenger"
+
+/obj/screen/pai/pda_msg_send/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.cmd_send_pdamesg(usr)
+
+/obj/screen/pai/pda_msg_show
+ name = "PDA - Show Message Log"
+ icon_state = "pda_receive"
+ required_software = "digital messenger"
+
+/obj/screen/pai/pda_msg_show/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.cmd_show_message_log(usr)
+
+/obj/screen/pai/image_take
+ name = "Take Image"
+ icon_state = "take_picture"
+ required_software = "photography module"
+
+/obj/screen/pai/image_take/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.aicamera.toggle_camera_mode(usr)
+
+/obj/screen/pai/image_view
+ name = "View Images"
+ icon_state = "view_images"
+ required_software = "photography module"
+
+/obj/screen/pai/image_view/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.aicamera.viewpictures(usr)
+
+/obj/screen/pai/radio
+ name = "radio"
+ icon = 'icons/mob/screen_cyborg.dmi'
+ icon_state = "radio"
+
+/obj/screen/pai/radio/Click()
+ if(!..())
+ return
+ var/mob/living/silicon/pai/pAI = usr
+ pAI.radio.interact(usr)
+
+/datum/hud/pai/New(mob/living/silicon/pai/owner)
+ ..()
+ var/obj/screen/using
+
+// Software menu
+ using = new /obj/screen/pai/software
+ using.screen_loc = ui_pai_software
+ static_inventory += using
+
+// Holoform
+ using = new /obj/screen/pai/shell
+ using.screen_loc = ui_pai_shell
+ static_inventory += using
+
+// Chassis Select Menu
+ using = new /obj/screen/pai/chassis
+ using.screen_loc = ui_pai_chassis
+ static_inventory += using
+
+// Rest
+ using = new /obj/screen/pai/rest
+ using.screen_loc = ui_pai_rest
+ static_inventory += using
+
+// Integrated Light
+ using = new /obj/screen/pai/light
+ using.screen_loc = ui_pai_light
+ static_inventory += using
+
+// Newscaster
+ using = new /obj/screen/pai/newscaster
+ using.screen_loc = ui_pai_newscaster
+ static_inventory += using
+
+// Language menu
+ using = new /obj/screen/language_menu
+ using.screen_loc = ui_borg_language_menu
+ static_inventory += using
+
+// Host Monitor
+ using = new /obj/screen/pai/host_monitor()
+ using.screen_loc = ui_pai_host_monitor
+ static_inventory += using
+
+// Crew Manifest
+ using = new /obj/screen/pai/crew_manifest()
+ using.screen_loc = ui_pai_crew_manifest
+ static_inventory += using
+
+// Laws
+ using = new /obj/screen/pai/state_laws()
+ using.screen_loc = ui_pai_state_laws
+ static_inventory += using
+
+// PDA message
+ using = new /obj/screen/pai/pda_msg_send()
+ using.screen_loc = ui_pai_pda_send
+ static_inventory += using
+
+// PDA log
+ using = new /obj/screen/pai/pda_msg_show()
+ using.screen_loc = ui_pai_pda_log
+ static_inventory += using
+
+// Take image
+ using = new /obj/screen/pai/image_take()
+ using.screen_loc = ui_pai_take_picture
+ static_inventory += using
+
+// View images
+ using = new /obj/screen/pai/image_view()
+ using.screen_loc = ui_pai_view_images
+ static_inventory += using
+
+// Radio
+ using = new /obj/screen/pai/radio()
+ using.screen_loc = ui_borg_radio
+ static_inventory += using
+
+ update_software_buttons()
+
+/datum/hud/pai/proc/update_software_buttons()
+ var/mob/living/silicon/pai/owner = mymob
+ for(var/obj/screen/pai/button in static_inventory)
+ if(button.required_software)
+ button.color = owner.software.Find(button.required_software) ? null : "#808080"
+
+#undef PAI_MISSING_SOFTWARE_MESSAGE
diff --git a/code/_onclick/hud/radial.dm b/code/_onclick/hud/radial.dm
index c6c9949431b..588af8e41a0 100644
--- a/code/_onclick/hud/radial.dm
+++ b/code/_onclick/hud/radial.dm
@@ -213,7 +213,6 @@ GLOBAL_LIST_EMPTY(radial_menus)
choices_icons.Cut()
choices_values.Cut()
current_page = 1
- QDEL_NULL(custom_check_callback)
/datum/radial_menu/proc/element_chosen(choice_id,mob/user)
selected_choice = choices_values[choice_id]
@@ -278,7 +277,9 @@ GLOBAL_LIST_EMPTY(radial_menus)
/datum/radial_menu/Destroy()
Reset()
hide()
+ QDEL_NULL(custom_check_callback)
. = ..()
+
/*
Presents radial menu to user anchored to anchor (or user if the anchor is currently in users screen)
Choices should be a list where list keys are movables or text used for element names and return value
@@ -307,4 +308,4 @@ GLOBAL_LIST_EMPTY(radial_menus)
var/answer = menu.selected_choice
qdel(menu)
GLOB.radial_menus -= uniqueid
- return answer
\ No newline at end of file
+ return answer
diff --git a/code/_onclick/hud/radial_persistent.dm b/code/_onclick/hud/radial_persistent.dm
new file mode 100644
index 00000000000..0b5e8dc3561
--- /dev/null
+++ b/code/_onclick/hud/radial_persistent.dm
@@ -0,0 +1,76 @@
+/*
+ A derivative of radial menu which persists onscreen until closed and invokes a callback each time an element is clicked
+*/
+
+/obj/screen/radial/persistent/center
+ name = "Close Menu"
+ icon_state = "radial_center"
+
+/obj/screen/radial/persistent/center/Click(location, control, params)
+ if(usr.client == parent.current_user)
+ parent.element_chosen(null,usr)
+
+/obj/screen/radial/persistent/center/MouseEntered(location, control, params)
+ . = ..()
+ icon_state = "radial_center_focus"
+
+/obj/screen/radial/persistent/center/MouseExited(location, control, params)
+ . = ..()
+ icon_state = "radial_center"
+
+
+
+/datum/radial_menu/persistent
+ var/uniqueid
+ var/datum/callback/select_proc_callback
+
+/datum/radial_menu/persistent/New()
+ close_button = new /obj/screen/radial/persistent/center
+ close_button.parent = src
+
+
+/datum/radial_menu/persistent/element_chosen(choice_id,mob/user)
+ select_proc_callback.Invoke(choices_values[choice_id])
+
+
+/datum/radial_menu/persistent/proc/change_choices(list/newchoices, tooltips)
+ if(!newchoices.len)
+ return
+ Reset()
+ set_choices(newchoices,tooltips)
+
+/datum/radial_menu/persistent/Destroy()
+ QDEL_NULL(select_proc_callback)
+ GLOB.radial_menus -= uniqueid
+ Reset()
+ hide()
+ . = ..()
+
+/*
+ Creates a persistent radial menu and shows it to the user, anchored to anchor (or user if the anchor is currently in users screen).
+ Choices should be a list where list keys are movables or text used for element names and return value
+ and list values are movables/icons/images used for element icons
+ Select_proc is the proc to be called each time an element on the menu is clicked, and should accept the chosen element as its final argument
+ Clicking the center button will return a choice of null
+*/
+/proc/show_radial_menu_persistent(mob/user, atom/anchor, list/choices, datum/callback/select_proc, uniqueid, radius, tooltips = FALSE)
+ if(!user || !anchor || !length(choices) || !select_proc)
+ return
+ if(!uniqueid)
+ uniqueid = "defmenu_[REF(user)]_[REF(anchor)]"
+
+ if(GLOB.radial_menus[uniqueid])
+ return
+
+ var/datum/radial_menu/persistent/menu = new
+ menu.uniqueid = uniqueid
+ GLOB.radial_menus[uniqueid] = menu
+ if(radius)
+ menu.radius = radius
+ menu.select_proc_callback = select_proc
+ menu.anchor = anchor
+ menu.check_screen_border(user) //Do what's needed to make it look good near borders or on hud
+ menu.set_choices(choices, tooltips)
+ menu.show_to(user)
+ return menu
+
diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm
index 05fc38ca1f6..5350500e79c 100644
--- a/code/_onclick/item_attack.dm
+++ b/code/_onclick/item_attack.dm
@@ -60,7 +60,7 @@
if(item_flags & NOBLUDGEON)
return
- if(force && user.has_trait(TRAIT_PACIFISM))
+ if(force && HAS_TRAIT(user, TRAIT_PACIFISM))
to_chat(user, "You don't want to harm other living beings!")
return
diff --git a/code/_onclick/observer.dm b/code/_onclick/observer.dm
index 299d7f64f8b..4d5914c970a 100644
--- a/code/_onclick/observer.dm
+++ b/code/_onclick/observer.dm
@@ -48,7 +48,9 @@
if(SEND_SIGNAL(src, COMSIG_ATOM_ATTACK_GHOST, user) & COMPONENT_NO_ATTACK_HAND)
return TRUE
if(user.client)
- if(IsAdminGhost(user))
+ if(user.gas_scan && atmosanalyzer_scan(user, src))
+ return TRUE
+ else if(IsAdminGhost(user))
attack_ai(user)
else if(user.client.prefs.inquisitive_ghost)
user.examinate(src)
diff --git a/code/_onclick/pai.dm b/code/_onclick/pai.dm
new file mode 100644
index 00000000000..06c1d9dfdfe
--- /dev/null
+++ b/code/_onclick/pai.dm
@@ -0,0 +1,6 @@
+/mob/living/silicon/pai/ClickOn(var/atom/A, params)
+ ..()
+ if(aicamera.in_camera_mode) //pAI picture taking
+ aicamera.camera_mode_off()
+ aicamera.captureimage(A, usr, null, aicamera.picture_size_x, aicamera.picture_size_y)
+ return
diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm
index cb3b4b86072..5e3bf6c6eaf 100644
--- a/code/controllers/configuration/configuration.dm
+++ b/code/controllers/configuration/configuration.dm
@@ -34,7 +34,7 @@
if(_directory)
directory = _directory
if(entries)
- CRASH("[THIS_PROC_TYPE_WEIRD] called more than once!")
+ CRASH("/datum/controller/configuration/Load() called more than once!")
InitEntries()
LoadModes()
if(fexists("[directory]/config.txt") && LoadEntries("config.txt") <= 1)
diff --git a/code/controllers/configuration/entries/game_options.dm b/code/controllers/configuration/entries/game_options.dm
index f6781bbbe18..c32348cdf8e 100644
--- a/code/controllers/configuration/entries/game_options.dm
+++ b/code/controllers/configuration/entries/game_options.dm
@@ -272,6 +272,8 @@
movedelay_type = /mob/living/simple_animal
/////////////////////////////////////////////////
+/datum/config_entry/flag/virtual_reality //Will virtual reality be loaded
+
/datum/config_entry/flag/roundstart_away //Will random away mission be loaded.
/datum/config_entry/number/gateway_delay //How long the gateway takes before it activates. Default is half an hour. Only matters if roundstart_away is enabled.
diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm
index e639485bbbc..4bcd6466784 100644
--- a/code/controllers/configuration/entries/general.dm
+++ b/code/controllers/configuration/entries/general.dm
@@ -5,6 +5,22 @@
config_entry_value = "Game Master"
protection = CONFIG_ENTRY_LOCKED
+/datum/config_entry/flag/auto_deadmin_players
+ protection = CONFIG_ENTRY_LOCKED
+
+/datum/config_entry/flag/auto_deadmin_antagonists
+ protection = CONFIG_ENTRY_LOCKED
+
+/datum/config_entry/flag/auto_deadmin_heads
+ protection = CONFIG_ENTRY_LOCKED
+
+/datum/config_entry/flag/auto_deadmin_silicons
+ protection = CONFIG_ENTRY_LOCKED
+
+/datum/config_entry/flag/auto_deadmin_security
+ protection = CONFIG_ENTRY_LOCKED
+
+
/datum/config_entry/string/servername // server name (the name of the game window)
/datum/config_entry/string/serversqlname // short form server name used for the DB
@@ -40,6 +56,10 @@
/datum/config_entry/flag/log_mecha // log mech data
+/datum/config_entry/flag/log_virus // log virology data
+
+/datum/config_entry/flag/log_cloning // log cloning actions.
+
/datum/config_entry/flag/log_vote // log voting
/datum/config_entry/flag/log_whisper // log client whisper
@@ -287,8 +307,13 @@
/datum/config_entry/string/extreme_popcap_message
config_entry_value = "The server is currently serving a high number of users, find alternative servers."
+/datum/config_entry/flag/byond_member_bypass_popcap
+
/datum/config_entry/flag/panic_bunker // prevents people the server hasn't seen before from connecting
+/datum/config_entry/string/panic_bunker_message
+ config_entry_value = "Sorry but the server is currently not accepting connections from never before seen players."
+
/datum/config_entry/number/notify_new_player_age // how long do we notify admins of a new player
min_val = -1
diff --git a/code/controllers/subsystem.dm b/code/controllers/subsystem.dm
index 4fe0812c56e..24390c59235 100644
--- a/code/controllers/subsystem.dm
+++ b/code/controllers/subsystem.dm
@@ -63,7 +63,7 @@
//Sleeping in here prevents future fires until returned.
/datum/controller/subsystem/proc/fire(resumed = 0)
flags |= SS_NO_FIRE
- throw EXCEPTION("Subsystem [src]([type]) does not fire() but did not set the SS_NO_FIRE flag. Please add the SS_NO_FIRE flag to any subsystem that doesn't fire so it doesn't get added to the processing list and waste cpu.")
+ CRASH("Subsystem [src]([type]) does not fire() but did not set the SS_NO_FIRE flag. Please add the SS_NO_FIRE flag to any subsystem that doesn't fire so it doesn't get added to the processing list and waste cpu.")
/datum/controller/subsystem/Destroy()
dequeue()
@@ -215,3 +215,4 @@
if ("queued_priority") //editing this breaks things.
return 0
. = ..()
+
diff --git a/code/controllers/subsystem/adjacent_air.dm b/code/controllers/subsystem/adjacent_air.dm
new file mode 100644
index 00000000000..4254bfb83d8
--- /dev/null
+++ b/code/controllers/subsystem/adjacent_air.dm
@@ -0,0 +1,35 @@
+SUBSYSTEM_DEF(adjacent_air)
+ name = "Atmos Adjacency"
+ flags = SS_BACKGROUND
+ runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
+ wait = 10
+ priority = FIRE_PRIORITY_ATMOS_ADJACENCY
+ var/list/queue = list()
+
+/datum/controller/subsystem/adjacent_air/stat_entry()
+#ifdef TESTING
+ ..("P:[length(queue)], S:[GLOB.atmos_adjacent_savings[1]], T:[GLOB.atmos_adjacent_savings[2]]")
+#else
+ ..("P:[length(queue)]")
+#endif
+
+/datum/controller/subsystem/adjacent_air/Initialize()
+ while(length(queue))
+ fire(mc_check = FALSE)
+ return ..()
+
+/datum/controller/subsystem/adjacent_air/fire(resumed = FALSE, mc_check = TRUE)
+
+ var/list/queue = src.queue
+
+ while (length(queue))
+ var/turf/currT = queue[1]
+ queue.Cut(1,2)
+
+ currT.ImmediateCalculateAdjacentTurfs()
+
+ if(mc_check)
+ if(MC_TICK_CHECK)
+ break
+ else
+ CHECK_TICK
diff --git a/code/controllers/subsystem/air.dm b/code/controllers/subsystem/air.dm
index 2a1c34e1d63..c4b6db03c03 100644
--- a/code/controllers/subsystem/air.dm
+++ b/code/controllers/subsystem/air.dm
@@ -303,7 +303,7 @@ SUBSYSTEM_DEF(air)
var/starting_ats = active_turfs.len
sleep(world.tick_lag)
var/timer = world.timeofday
- warning("There are [starting_ats] active turfs at roundstart, this is a mapping error caused by a difference of the air between the adjacent turfs. You can see its coordinates using \"Mapping -> Show roundstart AT list\" verb (debug verbs required)")
+ log_mapping("There are [starting_ats] active turfs at roundstart caused by a difference of the air between the adjacent turfs. You can see its coordinates using \"Mapping -> Show roundstart AT list\" verb (debug verbs required).")
for(var/turf/T in active_turfs)
GLOB.active_turfs_startlist += T
diff --git a/code/controllers/subsystem/atoms.dm b/code/controllers/subsystem/atoms.dm
index 38a18112508..eb3e65b54da 100644
--- a/code/controllers/subsystem/atoms.dm
+++ b/code/controllers/subsystem/atoms.dm
@@ -114,9 +114,10 @@ SUBSYSTEM_DEF(atoms)
for(var/i in 1 to LAZYLEN(mutations))
var/path = mutations[i] //byond gets pissy when we do it in one line
var/datum/mutation/human/B = new path ()
- B.alias = "Mutation #[i]"
+ B.alias = "Mutation [i]"
GLOB.all_mutations[B.type] = B
GLOB.full_sequences[B.type] = generate_gene_sequence(B.blocks)
+ GLOB.alias_mutations[B.alias] = B.type
if(B.locked)
continue
if(B.quality == POSITIVE)
diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm
index 32f9ad1c9c5..728308e286d 100644
--- a/code/controllers/subsystem/blackbox.dm
+++ b/code/controllers/subsystem/blackbox.dm
@@ -21,6 +21,7 @@ SUBSYSTEM_DEF(blackbox)
triggertime = world.time
record_feedback("amount", "random_seed", Master.random_seed)
record_feedback("amount", "dm_version", DM_VERSION)
+ record_feedback("amount", "dm_build", DM_BUILD)
record_feedback("amount", "byond_version", world.byond_version)
record_feedback("amount", "byond_build", world.byond_build)
. = ..()
diff --git a/code/controllers/subsystem/dbcore.dm b/code/controllers/subsystem/dbcore.dm
index efd06a9d376..ccbe8dc61ca 100644
--- a/code/controllers/subsystem/dbcore.dm
+++ b/code/controllers/subsystem/dbcore.dm
@@ -177,6 +177,27 @@ SUBSYSTEM_DEF(dbcore)
return FALSE
return new /datum/DBQuery(sql_query, connection)
+/datum/controller/subsystem/dbcore/proc/QuerySelect(list/querys, warn = FALSE, qdel = FALSE)
+ if (!islist(querys))
+ if (!istype(querys, /datum/DBQuery))
+ CRASH("Invalid query passed to QuerySelect: [querys]")
+ querys = list(querys)
+
+ for (var/thing in querys)
+ var/datum/DBQuery/query = thing
+ if (warn)
+ INVOKE_ASYNC(query, /datum/DBQuery.proc/warn_execute)
+ else
+ INVOKE_ASYNC(query, /datum/DBQuery.proc/Execute)
+
+ for (var/thing in querys)
+ var/datum/DBQuery/query = thing
+ UNTIL(!query.in_progress)
+ if (qdel)
+ qdel(query)
+
+
+
/*
Takes a list of rows (each row being an associated list of column => value) and inserts them via a single mass query.
Rows missing columns present in other rows will resolve to SQL NULL
diff --git a/code/controllers/subsystem/economy.dm b/code/controllers/subsystem/economy.dm
index 3773fad3c02..e332384528e 100644
--- a/code/controllers/subsystem/economy.dm
+++ b/code/controllers/subsystem/economy.dm
@@ -15,7 +15,6 @@ SUBSYSTEM_DEF(economy)
var/list/generated_accounts = list()
var/full_ancap = FALSE // Enables extra money charges for things that normally would be free, such as sleepers/cryo/cloning.
//Take care when enabling, as players will NOT respond well if the economy is set up for low cash flows.
- var/datum/station_state/engineering_check = new /datum/station_state()
var/alive_humans_bounty = 100
var/crew_safety_bounty = 1500
var/monster_bounty = 150
@@ -46,7 +45,7 @@ SUBSYSTEM_DEF(economy)
"adamantine" = 750,
// tier 4
"rainbow" = 1000)
- var/list/bank_accounts = list()
+ var/list/bank_accounts = list() //List of normal accounts (not department accounts)
var/list/dep_cards = list()
/datum/controller/subsystem/economy/Initialize(timeofday)
@@ -56,7 +55,7 @@ SUBSYSTEM_DEF(economy)
return ..()
/datum/controller/subsystem/economy/fire(resumed = 0)
- boring_eng_payout() // Payout based on integrity.
+ boring_eng_payout() // Payout based on nothing. What will replace it? Surplus power, powered APC's, air alarms? Who knows.
boring_sci_payout() // Payout based on slimes.
boring_secmedsrv_payout() // Payout based on crew safety, health, and mood.
boring_civ_payout() // Payout based on ??? Profit
@@ -72,10 +71,6 @@ SUBSYSTEM_DEF(economy)
/datum/controller/subsystem/economy/proc/boring_eng_payout()
var/engineering_cash = 3000
- engineering_check.count()
- var/station_integrity = min(PERCENT(GLOB.start_state.score(engineering_check)), 100)
- station_integrity *= 0.01
- engineering_cash *= station_integrity
var/datum/bank_account/D = get_dep_account(ACCOUNT_ENG)
if(D)
D.adjust_money(engineering_cash)
@@ -132,4 +127,4 @@ SUBSYSTEM_DEF(economy)
/datum/controller/subsystem/economy/proc/boring_civ_payout()
var/datum/bank_account/D = get_dep_account(ACCOUNT_CIV)
if(D)
- D.adjust_money((rand(1,5) * 500))
\ No newline at end of file
+ D.adjust_money((rand(1,5) * 500))
diff --git a/code/controllers/subsystem/job.dm b/code/controllers/subsystem/job.dm
index e56bf79e797..a6297c4bec4 100644
--- a/code/controllers/subsystem/job.dm
+++ b/code/controllers/subsystem/job.dm
@@ -116,7 +116,7 @@ SUBSYSTEM_DEF(job)
if(player.mind && job.title in player.mind.restricted_roles)
JobDebug("FOC incompatible with antagonist role, Player: [player]")
continue
- if(player.client.prefs.GetJobDepartment(job, level) & job.flag)
+ if(player.client.prefs.job_preferences[job.title] == level)
JobDebug("FOC pass, Player: [player], Level:[level]")
candidates += player
return candidates
@@ -228,7 +228,7 @@ SUBSYSTEM_DEF(job)
* fills var "assigned_role" for all ready players.
* This proc must not have any side effect besides of modifying "assigned_role".
**/
-/datum/controller/subsystem/job/proc/DivideOccupations()
+/datum/controller/subsystem/job/proc/DivideOccupations(list/required_jobs)
//Setup new player list and get the jobs list
JobDebug("Running DO")
@@ -241,14 +241,14 @@ SUBSYSTEM_DEF(job)
//Get the players who are ready
for(var/mob/dead/new_player/player in GLOB.player_list)
- if(player.ready == PLAYER_READY_TO_PLAY && player.mind && !player.mind.assigned_role)
+ if(player.ready == PLAYER_READY_TO_PLAY && player.has_valid_preferences() && player.mind && !player.mind.assigned_role)
unassigned += player
initial_players_to_assign = unassigned.len
JobDebug("DO, Len: [unassigned.len]")
if(unassigned.len == 0)
- return 0
+ return validate_required_jobs(required_jobs)
//Scale number of open security officer slots to population
setup_officer_positions()
@@ -297,7 +297,8 @@ SUBSYSTEM_DEF(job)
// Loop through all levels from high to low
var/list/shuffledoccupations = shuffle(occupations)
- for(var/level = 1 to 3)
+ var/list/levels = list(JP_HIGH,JP_MEDIUM,JP_LOW)
+ for(var/level in levels)
//Check the head jobs first each level
CheckHeadPositions(level)
@@ -332,7 +333,7 @@ SUBSYSTEM_DEF(job)
continue
// If the player wants that job on this level, then try give it to him.
- if(player.client.prefs.GetJobDepartment(job, level) & job.flag)
+ if(player.client.prefs.job_preferences[job.title] == level)
// If the job isn't filled
if((job.current_positions < job.spawn_positions) || job.spawn_positions == -1)
JobDebug("DO pass, Player: [player], Level:[level], Job:[job.title]")
@@ -351,9 +352,28 @@ SUBSYSTEM_DEF(job)
//Mop up people who can't leave.
for(var/mob/dead/new_player/player in unassigned) //Players that wanted to back out but couldn't because they're antags (can you feel the edge case?)
if(!GiveRandomJob(player))
- AssignRole(player, SSjob.overflow_role) //If everything is already filled, make them an assistant
+ if(!AssignRole(player, SSjob.overflow_role)) //If everything is already filled, make them an assistant
+ return FALSE //Living on the edge, the forced antagonist couldn't be assigned to overflow role (bans, client age) - just reroll
+
+ return validate_required_jobs(required_jobs)
- return 1
+/datum/controller/subsystem/job/proc/validate_required_jobs(list/required_jobs)
+ if(!required_jobs.len)
+ return TRUE
+ for(var/required_group in required_jobs)
+ var/group_ok = TRUE
+ for(var/rank in required_group)
+ var/datum/job/J = GetJob(rank)
+ if(!J)
+ SSticker.mode.setup_error = "Invalid job [rank] in gamemode required jobs."
+ return FALSE
+ if(J.current_positions < required_group[rank])
+ group_ok = FALSE
+ break
+ if(group_ok)
+ return TRUE
+ SSticker.mode.setup_error = "Required jobs not present."
+ return FALSE
//We couldn't find a job from prefs for this guy.
/datum/controller/subsystem/job/proc/HandleUnassigned(mob/dead/new_player/player)
@@ -406,7 +426,7 @@ SUBSYSTEM_DEF(job)
if(length(GLOB.jobspawn_overrides[rank]))
S = pick(GLOB.jobspawn_overrides[rank])
if(S)
- SendToAtom(H, S, buckle = FALSE)
+ S.JoinPlayerHere(H, FALSE)
if(!S) //if there isn't a spawnpoint send them to latejoin, if there's no latejoin go yell at your mapper
log_world("Couldn't find a round start spawn point for [rank]")
SendToLateJoin(H)
@@ -426,6 +446,12 @@ SUBSYSTEM_DEF(job)
SSpersistence.antag_rep_change[M.client.ckey] += job.GetAntagRep()
+ if(M.client.holder)
+ if(CONFIG_GET(flag/auto_deadmin_players) || (M.client.prefs?.toggles & DEADMIN_ALWAYS))
+ M.client.holder.auto_deadmin()
+ else
+ handle_auto_deadmin_roles(M.client, rank)
+
to_chat(M, "You are the [rank].")
if(job)
to_chat(M, "As the [rank] you answer directly to [job.supervisors]. Special circumstances may change this.")
@@ -433,21 +459,32 @@ SUBSYSTEM_DEF(job)
if(job.req_admin_notify)
to_chat(M, "You are playing a job that is important for Game Progression. If you have to disconnect, please notify the admins via adminhelp.")
if(CONFIG_GET(number/minimal_access_threshold))
- to_chat(M, "As this station was initially staffed with a [CONFIG_GET(flag/jobs_have_minimal_access) ? "full crew, only your job's necessities" : "skeleton crew, additional access may"] have been added to your ID card.")
+ to_chat(M, "As this station was initially staffed with a [CONFIG_GET(flag/jobs_have_minimal_access) ? "full crew, only your job's necessities" : "skeleton crew, additional access may"] have been added to your ID card.")
if(ishuman(H))
var/mob/living/carbon/human/wageslave = H
- to_chat(M, "Your account ID is [wageslave.account_id].")
H.add_memory("Your account ID is [wageslave.account_id].")
if(job && H)
job.after_spawn(H, M, joined_late) // note: this happens before the mob has a key! M will always have a client, H might not.
return H
+/datum/controller/subsystem/job/proc/handle_auto_deadmin_roles(client/C, rank)
+ if(!C?.holder)
+ return TRUE
+ var/datum/job/job = GetJob(rank)
+ if(!job)
+ return
+ if((job.auto_deadmin_role_flags & DEADMIN_POSITION_HEAD) && (CONFIG_GET(flag/auto_deadmin_heads) || (C.prefs?.toggles & DEADMIN_POSITION_HEAD)))
+ return C.holder.auto_deadmin()
+ else if((job.auto_deadmin_role_flags & DEADMIN_POSITION_SECURITY) && (CONFIG_GET(flag/auto_deadmin_security) || (C.prefs?.toggles & DEADMIN_POSITION_SECURITY)))
+ return C.holder.auto_deadmin()
+ else if((job.auto_deadmin_role_flags & DEADMIN_POSITION_SILICON) && (CONFIG_GET(flag/auto_deadmin_silicons) || (C.prefs?.toggles & DEADMIN_POSITION_SILICON))) //in the event there's ever psuedo-silicon roles added, ie synths.
+ return C.holder.auto_deadmin()
/datum/controller/subsystem/job/proc/setup_officer_positions()
var/datum/job/J = SSjob.GetJob("Security Officer")
if(!J)
- throw EXCEPTION("setup_officer_positions(): Security officer job is missing")
+ CRASH("setup_officer_positions(): Security officer job is missing")
var/ssc = CONFIG_GET(number/security_scaling_coeff)
if(ssc > 0)
@@ -498,13 +535,15 @@ SUBSYSTEM_DEF(job)
if(job.required_playtime_remaining(player.client))
young++
continue
- if(player.client.prefs.GetJobDepartment(job, 1) & job.flag)
- high++
- else if(player.client.prefs.GetJobDepartment(job, 2) & job.flag)
- medium++
- else if(player.client.prefs.GetJobDepartment(job, 3) & job.flag)
- low++
- else never++ //not selected
+ switch(player.client.prefs.job_preferences[job.title])
+ if(JP_HIGH)
+ high++
+ if(JP_MEDIUM)
+ medium++
+ if(JP_LOW)
+ low++
+ else
+ never++
SSblackbox.record_feedback("nested tally", "job_preferences", high, list("[job.title]", "high"))
SSblackbox.record_feedback("nested tally", "job_preferences", medium, list("[job.title]", "medium"))
SSblackbox.record_feedback("nested tally", "job_preferences", low, list("[job.title]", "low"))
@@ -547,51 +586,61 @@ SUBSYSTEM_DEF(job)
newjob.spawn_positions = J.spawn_positions
newjob.current_positions = J.current_positions
-/datum/controller/subsystem/job/proc/SendToAtom(mob/M, atom/A, buckle)
- if(buckle && isliving(M) && istype(A, /obj/structure/chair))
- var/obj/structure/chair/C = A
- if(C.buckle_mob(M, FALSE, FALSE))
- return
- M.forceMove(get_turf(A))
+/atom/proc/JoinPlayerHere(mob/M, buckle)
+ // By default, just place the mob on the same turf as the marker or whatever.
+ M.forceMove(get_turf(src))
+
+/obj/structure/chair/JoinPlayerHere(mob/M, buckle)
+ // Placing a mob in a chair will attempt to buckle it, or else fall back to default.
+ if (buckle && isliving(M) && buckle_mob(M, FALSE, FALSE))
+ return
+ ..()
/datum/controller/subsystem/job/proc/SendToLateJoin(mob/M, buckle = TRUE)
+ var/atom/destination
if(M.mind && M.mind.assigned_role && length(GLOB.jobspawn_overrides[M.mind.assigned_role])) //We're doing something special today.
- SendToAtom(M,pick(GLOB.jobspawn_overrides[M.mind.assigned_role]),FALSE)
+ destination = pick(GLOB.jobspawn_overrides[M.mind.assigned_role])
+ destination.JoinPlayerHere(M, FALSE)
return
if(latejoin_trackers.len)
- SendToAtom(M, pick(latejoin_trackers), buckle)
- else
- //bad mojo
- var/area/shuttle/arrival/A = GLOB.areas_by_type[/area/shuttle/arrival]
- if(A)
- //first check if we can find a chair
- var/obj/structure/chair/C = locate() in A
- if(C)
- SendToAtom(M, C, buckle)
- return
- else //last hurrah
- var/list/avail = list()
- for(var/turf/T in A)
- if(!is_blocked_turf(T, TRUE))
- avail += T
- if(avail.len)
- SendToAtom(M, pick(avail), FALSE)
- return
+ destination = pick(latejoin_trackers)
+ destination.JoinPlayerHere(M, buckle)
+ return
- //pick an open spot on arrivals and dump em
- var/list/arrivals_turfs = shuffle(get_area_turfs(/area/shuttle/arrival))
- if(arrivals_turfs.len)
- for(var/turf/T in arrivals_turfs)
- if(!is_blocked_turf(T, TRUE))
- SendToAtom(M, T, FALSE)
- return
- //last chance, pick ANY spot on arrivals and dump em
- SendToAtom(M, arrivals_turfs[1], FALSE)
- else
- var/msg = "Unable to send mob [M] to late join!"
- message_admins(msg)
- CRASH(msg)
+ //bad mojo
+ var/area/shuttle/arrival/A = GLOB.areas_by_type[/area/shuttle/arrival]
+ if(A)
+ //first check if we can find a chair
+ var/obj/structure/chair/C = locate() in A
+ if(C)
+ C.JoinPlayerHere(M, buckle)
+ return
+
+ //last hurrah
+ var/list/avail = list()
+ for(var/turf/T in A)
+ if(!is_blocked_turf(T, TRUE))
+ avail += T
+ if(avail.len)
+ destination = pick(avail)
+ destination.JoinPlayerHere(M, FALSE)
+ return
+
+ //pick an open spot on arrivals and dump em
+ var/list/arrivals_turfs = shuffle(get_area_turfs(/area/shuttle/arrival))
+ if(arrivals_turfs.len)
+ for(var/turf/T in arrivals_turfs)
+ if(!is_blocked_turf(T, TRUE))
+ T.JoinPlayerHere(M, FALSE)
+ return
+ //last chance, pick ANY spot on arrivals and dump em
+ destination = arrivals_turfs[1]
+ destination.JoinPlayerHere(M, FALSE)
+ else
+ var/msg = "Unable to send mob [M] to late join!"
+ message_admins(msg)
+ CRASH(msg)
///////////////////////////////////
diff --git a/code/controllers/subsystem/lighting.dm b/code/controllers/subsystem/lighting.dm
index 12b467b624c..3383db4e579 100644
--- a/code/controllers/subsystem/lighting.dm
+++ b/code/controllers/subsystem/lighting.dm
@@ -1,15 +1,14 @@
-GLOBAL_LIST_EMPTY(lighting_update_lights) // List of lighting sources queued for update.
-GLOBAL_LIST_EMPTY(lighting_update_corners) // List of lighting corners queued for update.
-GLOBAL_LIST_EMPTY(lighting_update_objects) // List of lighting objects queued for update.
-
SUBSYSTEM_DEF(lighting)
name = "Lighting"
wait = 2
init_order = INIT_ORDER_LIGHTING
flags = SS_TICKER
+ var/static/list/sources_queue = list() // List of lighting sources queued for update.
+ var/static/list/corners_queue = list() // List of lighting corners queued for update.
+ var/static/list/objects_queue = list() // List of lighting objects queued for update.
/datum/controller/subsystem/lighting/stat_entry()
- ..("L:[GLOB.lighting_update_lights.len]|C:[GLOB.lighting_update_corners.len]|O:[GLOB.lighting_update_objects.len]")
+ ..("L:[length(sources_queue)]|C:[length(corners_queue)]|O:[length(objects_queue)]")
/datum/controller/subsystem/lighting/Initialize(timeofday)
@@ -31,9 +30,10 @@ SUBSYSTEM_DEF(lighting)
MC_SPLIT_TICK_INIT(3)
if(!init_tick_checks)
MC_SPLIT_TICK
+ var/list/queue = sources_queue
var/i = 0
- for (i in 1 to GLOB.lighting_update_lights.len)
- var/datum/light_source/L = GLOB.lighting_update_lights[i]
+ for (i in 1 to length(queue))
+ var/datum/light_source/L = queue[i]
L.update_corners()
@@ -44,14 +44,15 @@ SUBSYSTEM_DEF(lighting)
else if (MC_TICK_CHECK)
break
if (i)
- GLOB.lighting_update_lights.Cut(1, i+1)
+ queue.Cut(1, i+1)
i = 0
if(!init_tick_checks)
MC_SPLIT_TICK
- for (i in 1 to GLOB.lighting_update_corners.len)
- var/datum/lighting_corner/C = GLOB.lighting_update_corners[i]
+ queue = corners_queue
+ for (i in 1 to length(queue))
+ var/datum/lighting_corner/C = queue[i]
C.update_objects()
C.needs_update = FALSE
@@ -60,15 +61,16 @@ SUBSYSTEM_DEF(lighting)
else if (MC_TICK_CHECK)
break
if (i)
- GLOB.lighting_update_corners.Cut(1, i+1)
+ queue.Cut(1, i+1)
i = 0
if(!init_tick_checks)
MC_SPLIT_TICK
- for (i in 1 to GLOB.lighting_update_objects.len)
- var/atom/movable/lighting_object/O = GLOB.lighting_update_objects[i]
+ queue = objects_queue
+ for (i in 1 to length(queue))
+ var/atom/movable/lighting_object/O = queue[i]
if (QDELETED(O))
continue
@@ -80,9 +82,9 @@ SUBSYSTEM_DEF(lighting)
else if (MC_TICK_CHECK)
break
if (i)
- GLOB.lighting_update_objects.Cut(1, i+1)
+ queue.Cut(1, i+1)
/datum/controller/subsystem/lighting/Recover()
initialized = SSlighting.initialized
- ..()
\ No newline at end of file
+ ..()
diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm
index 7b4d3dc1f66..aa97b166557 100644
--- a/code/controllers/subsystem/mapping.dm
+++ b/code/controllers/subsystem/mapping.dm
@@ -74,6 +74,11 @@ SUBSYSTEM_DEF(mapping)
if(CONFIG_GET(flag/roundstart_away))
createRandomZlevel()
+ // Load the virtual reality hub
+ if(CONFIG_GET(flag/virtual_reality))
+ to_chat(world, "Loading virtual reality...")
+ load_new_z_level("_maps/RandomZLevels/VR/vrhub.dmm", "Virtual Reality Hub")
+ to_chat(world, "Virtual reality loaded.")
// Generate mining ruins
loading_ruins = TRUE
@@ -257,10 +262,13 @@ GLOBAL_LIST_EMPTY(the_station_areas)
/datum/controller/subsystem/mapping/proc/generate_station_area_list()
var/list/station_areas_blacklist = typecacheof(list(/area/space, /area/mine, /area/ruin, /area/asteroid/nearstation))
for(var/area/A in world)
- var/turf/picked = safepick(get_area_turfs(A.type))
- if(picked && is_station_level(picked.z))
- if(!(A.type in GLOB.the_station_areas) && !is_type_in_typecache(A, station_areas_blacklist))
- GLOB.the_station_areas.Add(A.type)
+ if (is_type_in_typecache(A, station_areas_blacklist))
+ continue
+ if (!A.contents.len || !A.unique)
+ continue
+ var/turf/picked = A.contents[1]
+ if (is_station_level(picked.z))
+ GLOB.the_station_areas += A.type
if(!GLOB.the_station_areas.len)
log_world("ERROR: Station areas list failed to generate!")
diff --git a/code/controllers/subsystem/mobs.dm b/code/controllers/subsystem/mobs.dm
index 56cdf2fa03e..8caf2a4623c 100644
--- a/code/controllers/subsystem/mobs.dm
+++ b/code/controllers/subsystem/mobs.dm
@@ -26,18 +26,16 @@ SUBSYSTEM_DEF(mobs)
var/seconds = wait * 0.1
if (!resumed)
src.currentrun = GLOB.mob_living_list.Copy()
- if (GLOB.living_cameras.len)
- src.currentrun += GLOB.living_cameras
//cache for sanic speed (lists are references anyways)
var/list/currentrun = src.currentrun
var/times_fired = src.times_fired
while(currentrun.len)
- var/mob/M = currentrun[currentrun.len]
+ var/mob/living/L = currentrun[currentrun.len]
currentrun.len--
- if(M)
- M.Life(seconds, times_fired)
+ if(L)
+ L.Life(seconds, times_fired)
else
- GLOB.mob_living_list.Remove(M)
+ GLOB.mob_living_list.Remove(L)
if (MC_TICK_CHECK)
return
diff --git a/code/controllers/subsystem/processing/quirks.dm b/code/controllers/subsystem/processing/quirks.dm
index 3ddca57b341..bf003d0d470 100644
--- a/code/controllers/subsystem/processing/quirks.dm
+++ b/code/controllers/subsystem/processing/quirks.dm
@@ -30,11 +30,9 @@ PROCESSING_SUBSYSTEM_DEF(quirks)
quirk_points[initial(T.name)] = initial(T.value)
/datum/controller/subsystem/processing/quirks/proc/AssignQuirks(mob/living/user, client/cli, spawn_effects)
- GenerateQuirks(cli)
- for(var/V in cli.prefs.character_quirks)
- user.add_quirk(V, spawn_effects)
-
-/datum/controller/subsystem/processing/quirks/proc/GenerateQuirks(client/user)
- if(user.prefs.character_quirks.len)
- return
- user.prefs.character_quirks = user.prefs.all_quirks
+ for(var/V in cli.prefs.all_quirks)
+ var/datum/quirk/Q = quirks[V]
+ if(Q)
+ user.add_quirk(Q, spawn_effects)
+ else
+ stack_trace("Invalid quirk \"[V]\" in client [cli.ckey] preferences")
diff --git a/code/controllers/subsystem/server_maint.dm b/code/controllers/subsystem/server_maint.dm
index 8f88e6202f5..958c250c96c 100644
--- a/code/controllers/subsystem/server_maint.dm
+++ b/code/controllers/subsystem/server_maint.dm
@@ -9,6 +9,9 @@ SUBSYSTEM_DEF(server_maint)
runlevels = RUNLEVEL_LOBBY | RUNLEVELS_DEFAULT
var/list/currentrun
+/datum/controller/subsystem/server_maint/PreInit()
+ world.hub_password = "" //quickly! before the hubbies see us.
+
/datum/controller/subsystem/server_maint/Initialize(timeofday)
if (CONFIG_GET(flag/hub))
world.update_hub_visibility(TRUE)
@@ -30,12 +33,13 @@ SUBSYSTEM_DEF(server_maint)
for(var/I in currentrun)
var/client/C = I
//handle kicking inactive players
- if(round_started && kick_inactive && C.is_afk(afk_period))
+ if(round_started && kick_inactive && !C.holder && C.is_afk(afk_period))
var/cmob = C.mob
- if(!(isobserver(cmob) || (isdead(cmob) && C.holder)))
+ if (!isnewplayer(cmob) || !SSticker.queued_players.Find(cmob))
log_access("AFK: [key_name(C)]")
- to_chat(C, "You have been inactive for more than [DisplayTimeText(afk_period)] and have been disconnected.")
- qdel(C)
+ to_chat(C, "You have been inactive for more than [DisplayTimeText(afk_period)] and have been disconnected.
clicking here to reconnect")
+ QDEL_IN(C, 1) //to ensure they get our message before getting disconnected
+ continue
if (!(!C || world.time - C.connection_time < PING_BUFFER_TIME || C.inactivity >= (wait-1)))
winset(C, null, "command=.update_ping+[world.time+world.tick_lag*TICK_USAGE_REAL/100]")
diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm
index c340dbe5b43..892103d291c 100644
--- a/code/controllers/subsystem/shuttle.dm
+++ b/code/controllers/subsystem/shuttle.dm
@@ -127,7 +127,7 @@ SUBSYSTEM_DEF(shuttle)
var/threshold = CONFIG_GET(number/emergency_shuttle_autocall_threshold)
if(!threshold)
return
-
+
var/alive = 0
for(var/I in GLOB.player_list)
var/mob/M = I
@@ -135,6 +135,8 @@ SUBSYSTEM_DEF(shuttle)
++alive
var/total = GLOB.joined_player_list.len
+ if(total <= 0)
+ return //no players no autoevac
if(alive / total <= threshold)
var/msg = "Automatically dispatching shuttle due to crew death."
@@ -169,7 +171,7 @@ SUBSYSTEM_DEF(shuttle)
WARNING("requestEvac(): There is no emergency shuttle, but the \
shuttle was called. Using the backup shuttle instead.")
if(!backup_shuttle)
- throw EXCEPTION("requestEvac(): There is no emergency shuttle, \
+ CRASH("requestEvac(): There is no emergency shuttle, \
or backup shuttle! The game will be unresolvable. This is \
possibly a mapping error, more likely a bug with the shuttle \
manipulation system, or badminry. It is possible to manually \
@@ -401,7 +403,7 @@ SUBSYSTEM_DEF(shuttle)
/datum/controller/subsystem/shuttle/proc/request_transit_dock(obj/docking_port/mobile/M)
if(!istype(M))
- throw EXCEPTION("[M] is not a mobile docking port")
+ CRASH("[M] is not a mobile docking port")
if(M.assigned_transit)
return
diff --git a/code/controllers/subsystem/stickyban.dm b/code/controllers/subsystem/stickyban.dm
index 189efa99fed..5568be58c7b 100644
--- a/code/controllers/subsystem/stickyban.dm
+++ b/code/controllers/subsystem/stickyban.dm
@@ -1,34 +1,207 @@
SUBSYSTEM_DEF(stickyban)
- name = "Sticky Ban"
+ name = "PRISM"
init_order = INIT_ORDER_STICKY_BAN
flags = SS_NO_FIRE
var/list/cache = list()
+ var/list/dbcache = list()
+ var/list/confirmed_exempt = list()
+ var/dbcacheexpire = 0
+
/datum/controller/subsystem/stickyban/Initialize(timeofday)
- var/list/bannedkeys = world.GetConfig("ban")
+ var/list/bannedkeys = sticky_banned_ckeys()
//sanitize the sticky ban list
+
+ //delete db bans that no longer exist in the database and add new legacy bans to the database
+ if (SSdbcore.Connect() || length(SSstickyban.dbcache))
+ for (var/oldban in (world.GetConfig("ban") - bannedkeys))
+ var/ckey = ckey(oldban)
+ if (ckey != oldban && (ckey in bannedkeys))
+ continue
+
+ var/list/ban = params2list(world.GetConfig("ban", oldban))
+ if (ban && !ban["fromdb"])
+ if (!import_raw_stickyban_to_db(ckey, ban))
+ log_world("Could not import stickyban on [oldban] into the database. Ignoring")
+ continue
+ dbcacheexpire = 0
+ bannedkeys += ckey
+ world.SetConfig("ban", oldban, null)
+
+
for (var/bannedkey in bannedkeys)
var/ckey = ckey(bannedkey)
- var/list/ban = stickyban2list(world.GetConfig("ban", bannedkey))
+ var/list/ban = get_stickyban_from_ckey(bannedkey)
- //byond stores sticky bans by key, that can end up confusing things
- //i also remove it here so that if any stickybans cause a runtime, they just stop existing
- world.SetConfig("ban", bannedkey, null)
+ //byond stores sticky bans by key, that's lame
+ if (ckey != bannedkey)
+ world.SetConfig("ban", bannedkey, null)
if (!ban["ckey"])
ban["ckey"] = ckey
- //storing these can break things and isn't needed for sticky ban tracking
- ban -= "IP"
- ban -= "computer_id"
-
ban["matches_this_round"] = list()
ban["existing_user_matches_this_round"] = list()
ban["admin_matches_this_round"] = list()
+ ban["pending_matches_this_round"] = list()
+
cache[ckey] = ban
-
- for (var/bannedckey in cache)
- world.SetConfig("ban", bannedckey, list2stickyban(cache[bannedckey]))
+ world.SetConfig("ban", ckey, list2stickyban(ban))
return ..()
+
+/datum/controller/subsystem/stickyban/proc/Populatedbcache()
+ var/newdbcache = list() //so if we runtime or the db connection dies we don't kill the existing cache
+
+ var/datum/DBQuery/query_stickybans = SSdbcore.NewQuery("SELECT ckey, reason, banning_admin, datetime FROM [format_table_name("stickyban")] ORDER BY ckey")
+ var/datum/DBQuery/query_ckey_matches = SSdbcore.NewQuery("SELECT stickyban, matched_ckey, first_matched, last_matched, exempt FROM [format_table_name("stickyban_matched_ckey")] ORDER BY first_matched")
+ var/datum/DBQuery/query_cid_matches = SSdbcore.NewQuery("SELECT stickyban, matched_cid, first_matched, last_matched FROM [format_table_name("stickyban_matched_cid")] ORDER BY first_matched")
+ var/datum/DBQuery/query_ip_matches = SSdbcore.NewQuery("SELECT stickyban, INET_NTOA(matched_ip), first_matched, last_matched FROM [format_table_name("stickyban_matched_ip")] ORDER BY first_matched")
+
+ SSdbcore.QuerySelect(list(query_stickybans, query_ckey_matches, query_cid_matches, query_ip_matches))
+
+ if (query_stickybans.last_error)
+ qdel(query_stickybans)
+ qdel(query_ckey_matches)
+ qdel(query_cid_matches)
+ qdel(query_ip_matches)
+ return
+
+ while (query_stickybans.NextRow())
+ var/list/ban = list()
+
+ ban["ckey"] = query_stickybans.item[1]
+ ban["message"] = query_stickybans.item[2]
+ ban["reason"] = "(InGameBan)([query_stickybans.item[3]])"
+ ban["admin"] = query_stickybans.item[3]
+ ban["datetime"] = query_stickybans.item[4]
+ ban["type"] = list("sticky")
+
+ newdbcache["[query_stickybans.item[1]]"] = ban
+
+
+ if (!query_ckey_matches.last_error)
+ while (query_ckey_matches.NextRow())
+ var/list/match = list()
+
+ match["stickyban"] = query_ckey_matches.item[1]
+ match["matched_ckey"] = query_ckey_matches.item[2]
+ match["first_matched"] = query_ckey_matches.item[3]
+ match["last_matched"] = query_ckey_matches.item[4]
+ match["exempt"] = text2num(query_ckey_matches.item[5])
+
+ var/ban = newdbcache[query_ckey_matches.item[1]]
+ if (!ban)
+ continue
+ var/keys = ban[text2num(query_ckey_matches.item[5]) ? "whitelist" : "keys"]
+ if (!keys)
+ keys = ban[text2num(query_ckey_matches.item[5]) ? "whitelist" : "keys"] = list()
+ keys[query_ckey_matches.item[2]] = match
+
+ if (!query_cid_matches.last_error)
+ while (query_cid_matches.NextRow())
+ var/list/match = list()
+
+ match["stickyban"] = query_cid_matches.item[1]
+ match["matched_cid"] = query_cid_matches.item[2]
+ match["first_matched"] = query_cid_matches.item[3]
+ match["last_matched"] = query_cid_matches.item[4]
+
+ var/ban = newdbcache[query_cid_matches.item[1]]
+ if (!ban)
+ continue
+ var/computer_ids = ban["computer_id"]
+ if (!computer_ids)
+ computer_ids = ban["computer_id"] = list()
+ computer_ids[query_cid_matches.item[2]] = match
+
+
+ if (!query_ip_matches.last_error)
+ while (query_ip_matches.NextRow())
+ var/list/match = list()
+
+ match["stickyban"] = query_ip_matches.item[1]
+ match["matched_ip"] = query_ip_matches.item[2]
+ match["first_matched"] = query_ip_matches.item[3]
+ match["last_matched"] = query_ip_matches.item[4]
+
+ var/ban = newdbcache[query_ip_matches.item[1]]
+ if (!ban)
+ continue
+ var/IPs = ban["IP"]
+ if (!IPs)
+ IPs = ban["IP"] = list()
+ IPs[query_ip_matches.item[2]] = match
+
+ dbcache = newdbcache
+ dbcacheexpire = world.time+STICKYBAN_DB_CACHE_TIME
+
+ qdel(query_stickybans)
+ qdel(query_ckey_matches)
+ qdel(query_cid_matches)
+ qdel(query_ip_matches)
+
+
+/datum/controller/subsystem/stickyban/proc/import_raw_stickyban_to_db(ckey, list/ban)
+ . = FALSE
+ if (!ban["admin"])
+ ban["admin"] = "LEGACY"
+ if (!ban["message"])
+ ban["message"] = "Evasion"
+
+ var/datum/DBQuery/query_create_stickyban = SSdbcore.NewQuery("INSERT IGNORE INTO [format_table_name("stickyban")] (ckey, reason, banning_admin) VALUES ('[sanitizeSQL(ckey)]', '[sanitizeSQL(ban["message"])]', '[sanitizeSQL(ban["admin"])]')")
+ if (!query_create_stickyban.warn_execute())
+ qdel(query_create_stickyban)
+ return
+ qdel(query_create_stickyban)
+
+ var/list/sqlckeys = list()
+ var/list/sqlcids = list()
+ var/list/sqlips = list()
+
+ if (ban["keys"])
+ var/list/keys = splittext(ban["keys"], ",")
+ for (var/key in keys)
+ var/list/sqlckey = list()
+ sqlckey["stickyban"] = "'[sanitizeSQL(ckey)]'"
+ sqlckey["matched_ckey"] = "'[sanitizeSQL(ckey(key))]'"
+ sqlckey["exempt"] = FALSE
+ sqlckeys[++sqlckeys.len] = sqlckey
+
+ if (ban["whitelist"])
+ var/list/keys = splittext(ban["whitelist"], ",")
+ for (var/key in keys)
+ var/list/sqlckey = list()
+ sqlckey["stickyban"] = "'[sanitizeSQL(ckey)]'"
+ sqlckey["matched_ckey"] = "'[sanitizeSQL(ckey(key))]'"
+ sqlckey["exempt"] = TRUE
+ sqlckeys[++sqlckeys.len] = sqlckey
+
+ if (ban["computer_id"])
+ var/list/cids = splittext(ban["computer_id"], ",")
+ for (var/cid in cids)
+ var/list/sqlcid = list()
+ sqlcid["stickyban"] = "'[sanitizeSQL(ckey)]'"
+ sqlcid["matched_cid"] = "'[sanitizeSQL(cid)]'"
+ sqlcids[++sqlcids.len] = sqlcid
+
+ if (ban["IP"])
+ var/list/ips = splittext(ban["IP"], ",")
+ for (var/ip in ips)
+ var/list/sqlip = list()
+ sqlip["stickyban"] = "'[sanitizeSQL(ckey)]'"
+ sqlip["matched_ip"] = "'[sanitizeSQL(ip)]'"
+ sqlips[++sqlips.len] = sqlip
+
+ if (length(sqlckeys))
+ SSdbcore.MassInsert(format_table_name("stickyban_matched_ckey"), sqlckeys, FALSE, TRUE)
+
+ if (length(sqlcids))
+ SSdbcore.MassInsert(format_table_name("stickyban_matched_cid"), sqlcids, FALSE, TRUE)
+
+ if (length(sqlips))
+ SSdbcore.MassInsert(format_table_name("stickyban_matched_ip"), sqlips, FALSE, TRUE)
+
+
+ return TRUE
diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index 3b35a0373a2..83d1f6f17c6 100755
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -93,6 +93,8 @@ SUBSYSTEM_DEF(ticker)
if((use_rare_music && L[1] == "rare") || (L[1] == SSmapping.config.map_name))
music += S
if(1) //sound.ogg -- common sound
+ if(L[1] == "exclude")
+ continue
music += S
var/old_login_music = trim(file2text("data/last_round_lobby_music.txt"))
@@ -115,9 +117,9 @@ SUBSYSTEM_DEF(ticker)
if(!GLOB.syndicate_code_phrase)
- GLOB.syndicate_code_phrase = generate_code_phrase()
+ GLOB.syndicate_code_phrase = generate_code_phrase(return_list=TRUE)
if(!GLOB.syndicate_code_response)
- GLOB.syndicate_code_response = generate_code_phrase()
+ GLOB.syndicate_code_response = generate_code_phrase(return_list=TRUE)
start_at = world.time + (CONFIG_GET(number/lobby_countdown) * 10)
if(CONFIG_GET(flag/randomize_shift_time))
@@ -202,7 +204,7 @@ SUBSYSTEM_DEF(ticker)
if(GLOB.secret_force_mode != "secret")
var/datum/game_mode/smode = config.pick_mode(GLOB.secret_force_mode)
if(!smode.can_start())
- message_admins("\blue Unable to force secret [GLOB.secret_force_mode]. [smode.required_players] players and [smode.required_enemies] eligible antagonists needed.")
+ message_admins("Unable to force secret [GLOB.secret_force_mode]. [smode.required_players] players and [smode.required_enemies] eligible antagonists needed.")
else
mode = smode
@@ -228,7 +230,7 @@ SUBSYSTEM_DEF(ticker)
var/can_continue = 0
can_continue = src.mode.pre_setup() //Choose antagonists
CHECK_TICK
- SSjob.DivideOccupations() //Distribute jobs
+ can_continue = can_continue && SSjob.DivideOccupations(mode.required_jobs) //Distribute jobs
CHECK_TICK
if(!GLOB.Debug2)
@@ -273,14 +275,14 @@ SUBSYSTEM_DEF(ticker)
round_start_time = world.time
SSdbcore.SetRoundStart()
- to_chat(world, "Welcome to [station_name()], enjoy your stay!")
+ to_chat(world, "Welcome to [station_name()], enjoy your stay!")
SEND_SOUND(world, sound('sound/ai/welcome.ogg'))
current_state = GAME_STATE_PLAYING
Master.SetRunLevel(RUNLEVEL_GAME)
if(SSevents.holidays)
- to_chat(world, "and...")
+ to_chat(world, "and...")
for(var/holidayname in SSevents.holidays)
var/datum/holiday/holiday = SSevents.holidays[holidayname]
to_chat(world, "
| [HM.name] | " - temp_html += "Export | " + if(diskette) + temp_html += "Export | " + else + temp_html += "Export | " temp_html += "Delete | " if(combine == HM.type) temp_html += "Combine | [CM.name] |