diff --git a/.gitignore b/.gitignore
index c8e3ed4fac5..a044f7f60cc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,7 +3,11 @@
#Ignore everything in datafolder and subdirectories
/data/**/*
+#Ignore byond config folder.
+/cfg/**/*
+
#Ignore compiled files and other files generated during compilation.
+*.mdme
*.dmb
*.rsc
*.lk
@@ -179,4 +183,4 @@ Network Trash Folder
Temporary Items
.apdisk
-
+*.before
diff --git a/.travis.yml b/.travis.yml
index f267102c7b1..3b9aa939f05 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,13 +6,17 @@ env:
- BYOND_MAJOR="510"
- BYOND_MINOR="1332"
- NODE_VERSION="4"
+ - BUILD_TOOLS=false
+ - DM_MAPFILE=""
matrix:
+ - BUILD_TOOLS=true
- DM_MAPFILE="tgstation2"
- DM_MAPFILE="metastation"
- DM_MAPFILE="ministation"
- DM_MAPFILE="dreamstation"
- DM_MAPFILE="birdstation"
- DM_MAPFILE="efficiencystation"
+ - DM_MAPFILE="templates"
cache:
@@ -30,24 +34,14 @@ addons:
- python
- python-pip
-
install:
- - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $NODE_VERSION
- - npm install -g gulp-cli
- - pip install --user PyYaml -q
- - pip install --user beautifulsoup4 -q
+ - tools/travis/install_build_tools.sh
before_script:
- - cd tgui && npm install && cd ..
- - chmod +x ./install-byond.sh
- - ./install-byond.sh
- - shopt -s globstar
+ - tools/travis/before_build_tools.sh
+ - tools/travis/before_build_byond.sh
script:
- - (! grep 'step_[xy]' _maps/**/*.dmm)
- - md5sum -c - <<< "49bc6b1b9ed56c83cceb6674bd97cb34 *html/changelogs/example.yml"
- - tools/check_filedirs.sh tgstation.dme
- - cd tgui && gulp && cd ..
- - python tools/ss13_genchangelog.py html/changelog.html html/changelogs
- - source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup
- - bash dm.sh -M${DM_MAPFILE} tgstation.dme
+ - tools/travis/check_filedirs.sh tgstation.dme
+ - tools/travis/build_tools.sh
+ - tools/travis/build_byond.sh
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 3b76d0c2144..27cc7d4835a 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -41,7 +41,7 @@ Maintainers can revert your changes if they feel they are not worth maintaining
As mentioned before, you are expected to follow these specifications in order to make everyone's lives easier, it will also save you and us time, with having to make the changes and us having to tell you what to change. Thank you for reading this section.
-###Object Oriented code
+###Object Oriented code
As BYOND's Dream Maker is an object oriented language, code must be object oriented when possible in order to be more flexible when adding content to it. If you are unfamiliar with this concept, it is highly recommended you look it up.
###All Byond paths must contain the full path.
@@ -63,7 +63,7 @@ datum
code
proc2()
code
-
+
datum2
varname1 = 0
proc
@@ -99,9 +99,7 @@ The previous code made compliant:
```
###No overriding type safety checks.
-The use of the : operator to override type safety checks is strongly discouraged. You must cast the variable to the proper type.
-
-Exceptions are only made when used in loops that require the performance boost from being called ***extremely*** often. (Rule of thumb: If you aren't messing with the master controller or it's subsystems, this exception probably doesn't apply)
+The use of the : operator to override type safety checks is not allowed. You must cast the variable to the proper type.
###Type paths must began with a /
eg: `/datum/thing` not `datum/thing`
@@ -135,9 +133,20 @@ Copying code from one place to another maybe suitable for small short time proje
Instead you can use object orientation, or simply placing repeated code in a function, to obey this specification easily.
+###Startup/Runtime tradeoffs with lists and the "hidden" init proc
+First, read the comments in this byond thread, starting here:http://www.byond.com/forum/?post=2086980&page=2#comment19776775
+
+There are two key points here:
+
+1) Defining a list in the type definition incurs a hidden proc call - init, if you must define a list at startup, do so in New() and avoid the overhead of a second call (init() and then new())
+
+2)Offsets list creation overhead to the point where the list is actually required (which for many objects, may be never at all).
+
+Remember, this tradeoff makes sense in many cases but not all, you should think carefully about your implementation before deciding if this is an appropriate thing to do
+
###No magic numbers or strings
Make these #defines with a name that more clearly states what it's for.
-
+
###Control statements:
(if,while,for,etc)
@@ -271,6 +280,9 @@ There is no strict process when it comes to merging pull requests, pull requests
* If your pull request is accepted, the code you add no longer belongs exclusively to you but to everyone; everyone is free to work on it, but you are also free to object to any changes being made, which will be noted by a Project Lead or Project Manager. It is a shame this has to be explicitly said, but there have been cases where this would've saved some trouble.
+## Banned content
+Do not add any of the following in a Pull Request or risk getting the PR closed:
+ - National Socialist Party of Germany content, National Socialist Party of Germany related content, or National Socialist Party of Germany references
##A word on git
Yes we know that the files have a tonne of mixed windows and linux line endings, attempts to fix this have been met with less than stellar success and as such we have decided to give up caring until such a time as it matters.
diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 00000000000..490e045f3da
--- /dev/null
+++ b/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,18 @@
+[Changelogs]: # (Please make a changelog if you're adding, removing or changing content that'll affect players. This includes, but is not limited to, new features, sprites, sounds; balance changes; map edits and important fixes)
+[]: # (See here for how to easily make a changelog: https://github.com/tgstation/tgstation/wiki/Changelogs. An example changelog has been provided below. Please edit or remove)
+
+
+:cl: optional name here
+add: Added new things
+add: Added more things
+del: Removed old things
+tweak: tweaked a few things
+fix: fixed a few things
+wip: added a few works in progress
+soundadd: added a new sound thingy
+sounddel: removed an old sound thingy
+imageadd: added some icons and images
+imagedel: deleted some icons and images
+spellcheck: fixed a few typos
+experiment: added an experimental thingy
+/:cl:
diff --git a/README.md b/README.md
index 6a4241a790f..4c13f6c78dc 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
##/tg/station v1.0.1
-[](https://travis-ci.org/tgstation/-tg-station)
+[](https://travis-ci.org/tgstation/tgstation)
**Website:** http://www.tgstation13.org
-**Code:** https://github.com/tgstation/-tg-station
+**Code:** https://github.com/tgstation/tgstation
**Wiki** http://tgstation13.org/wiki/Main_Page
**IRC:** irc://irc.rizon.net/coderbus or if you dont have an IRC client, you can click [here](https://kiwiirc.com/client/irc.rizon.net:6667/?&theme=cli#coderbus).
@@ -19,11 +19,11 @@ Follow this: http://www.tgstation13.org/wiki/Setting_up_git
Option 2:
Install GitHub::windows from http://windows.github.com/
It handles most of the setup and configuraton of Git for you.
-Then you simply search for the -tg-station repository and click the big clone
+Then you simply search for the tgstation repository and click the big clone
button.
Option 3: Download the source code as a zip by clicking the ZIP button in the
-code tab of https://github.com/tgstation/-tg-station
+code tab of https://github.com/tgstation/tgstation
(note: this will use a lot of bandwidth if you wish to update and is a lot of
hassle if you want to make any changes at all, so it's not recommended.)
@@ -131,9 +131,9 @@ Please see [CONTRIBUTING.md](CONTRIBUTING.md)
##LICENSE
-All code after commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST (https://github.com/tgstation/-tg-station/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under GNU AGPL v3 (http://www.gnu.org/licenses/agpl-3.0.html).
+All code after commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST (https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under GNU AGPL v3 (http://www.gnu.org/licenses/agpl-3.0.html).
-All code before commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST (https://github.com/tgstation/-tg-station/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under GNU GPL v3 (https://www.gnu.org/licenses/gpl-3.0.html).
+All code before commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 at 4:38 PM PST (https://github.com/tgstation/tgstation/commit/333c566b88108de218d882840e61928a9b759d8f) is licensed under GNU GPL v3 (https://www.gnu.org/licenses/gpl-3.0.html).
(Including tools unless their readme specifies otherwise.)
See LICENSE-AGPLv3.txt and LICENSE-GPLv3.txt for more details.
diff --git a/SQL/database_changelog.txt b/SQL/database_changelog.txt
index e142f20cfab..85afa5fa07d 100644
--- a/SQL/database_changelog.txt
+++ b/SQL/database_changelog.txt
@@ -1,3 +1,26 @@
+3 July 2016, by Jordie0608
+
+Modified table 'poll_question', adding column 'dontshow' which was recently added to the server schema.
+
+ALTER TABLE `feedback`.`poll_question` ADD COLUMN `dontshow` TINYINT(1) NOT NULL DEFAULT '0' AFTER `for_trialmin`
+
+Remember to add a prefix to the table name if you use them
+
+----------------------------------------------------
+
+16th April 2016
+
+Added ipintel table, only required if ip intel is enabled in the config
+
+CREATE TABLE `ipintel` (
+`ip` INT UNSIGNED NOT NULL ,
+`date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL ,
+`intel` REAL NOT NULL DEFAULT '0',
+PRIMARY KEY ( `ip` )
+) ENGINE = INNODB;
+
+---------------------------------------------------
+
21 September 2015, by Jordie0608
Modified table 'poll_question', adding columns 'createdby_ckey', 'createdby_ip' and 'for_trialmin' to bring it inline with the schema used by the tg servers.
diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql
index 34d83537256..666ae0a53af 100644
--- a/SQL/tgstation_schema.sql
+++ b/SQL/tgstation_schema.sql
@@ -266,6 +266,7 @@ CREATE TABLE `poll_question` (
`createdby_ckey` varchar(45) NULL DEFAULT NULL,
`createdby_ip` varchar(45) NULL DEFAULT NULL,
`for_trialmin` varchar(45) NULL DEFAULT NULL,
+ `dontshow` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -364,5 +365,14 @@ CREATE TABLE `notes` (
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
-
+DROP TABLE IF EXISTS `ipintel`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ipintel` (
+`ip` INT UNSIGNED NOT NULL ,
+`date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL ,
+`intel` REAL NOT NULL DEFAULT '0',
+PRIMARY KEY ( `ip` )
+) ENGINE = INNODB;
+/*!40101 SET character_set_client = @saved_cs_client */;
-- Dump completed on 2013-03-24 18:02:35
diff --git a/SQL/tgstation_schema_prefixed.sql b/SQL/tgstation_schema_prefixed.sql
index fe40d2f72cf..44b8b5da50a 100644
--- a/SQL/tgstation_schema_prefixed.sql
+++ b/SQL/tgstation_schema_prefixed.sql
@@ -261,6 +261,7 @@ CREATE TABLE `SS13_poll_question` (
`createdby_ckey` varchar(45) NULL DEFAULT NULL,
`createdby_ip` varchar(45) NULL DEFAULT NULL,
`for_trialmin` varchar(45) NULL DEFAULT NULL,
+ `dontshow` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -359,5 +360,14 @@ CREATE TABLE `SS13_notes` (
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
-
+DROP TABLE IF EXISTS `SS13_ipintel`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `SS13_ipintel` (
+`ip` INT UNSIGNED NOT NULL ,
+`date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL ,
+`intel` REAL NOT NULL DEFAULT '0',
+PRIMARY KEY ( `ip` )
+) ENGINE = INNODB;
+/*!40101 SET character_set_client = @saved_cs_client */;
-- Dump completed on 2013-03-24 18:02:35
diff --git a/_maps/.gitignore b/_maps/.gitignore
new file mode 100644
index 00000000000..430f3a0b4fa
--- /dev/null
+++ b/_maps/.gitignore
@@ -0,0 +1,2 @@
+backup/
+templates.dm
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
index 6f671cd0e3e..82d937d3c88 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
@@ -90,6 +90,9 @@
pixel_y = 0
},
/obj/effect/decal/sandeffect,
+/obj/structure/mirror{
+ pixel_x = 28
+ },
/turf/open/floor/plating{
baseturf = /turf/open/floor/plating/lava/smooth
},
@@ -158,7 +161,6 @@
/turf/open/floor/plasteel/asteroid/warning{
baseturf = /turf/open/floor/plating/beach/sand;
dir = 1;
- icon_state = "asteroidwarning";
tag = "icon-asteroidwarning (NORTH)"
},
/area/ruin/powered)
@@ -186,6 +188,7 @@
/area/ruin/powered)
"aG" = (
/obj/structure/table,
+/obj/item/weapon/book/manual/barman_recipes,
/obj/item/weapon/reagent_containers/glass/rag,
/turf/open/floor/wood,
/area/ruin/powered)
@@ -207,7 +210,6 @@
/turf/open/floor/plasteel/asteroid/warning{
baseturf = /turf/open/floor/plating/beach/sand;
dir = 1;
- icon_state = "asteroidwarning";
tag = "icon-asteroidwarning (NORTH)"
},
/area/ruin/powered)
@@ -277,7 +279,6 @@
/turf/open/floor/plasteel/asteroid/warning{
baseturf = /turf/open/floor/plating/beach/sand;
dir = 1;
- icon_state = "asteroidwarning";
tag = "icon-asteroidwarning (NORTH)"
},
/area/ruin/powered)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm
index 09eb16a80e0..c4e4aed9ed3 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm
@@ -1,140 +1,2003 @@
-"aa" = (/turf/template_noop,/area/template_noop)
-"ab" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered)
-"ac" = (/turf/open/floor/noslip{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ad" = (/mob/living/simple_animal/hostile/retaliate/clown,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered)
-"ae" = (/obj/machinery/light,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered)
-"af" = (/obj/item/clothing/head/cone,/turf/open/floor/noslip{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ag" = (/obj/item/weapon/paper/crumpled/bloody{info = "Abandon hope, all ye who enter here."},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/noslip{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ah" = (/turf/closed/wall/r_wall{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ai" = (/obj/machinery/disposal/deliveryChute{desc = "The following is engraved upon the chute: A FATE WORSE THAN DEATH LIES WITHIN"; dir = 1; name = "THE TRIAL OF HONKITUDE"},/obj/structure/disposalpipe/trunk,/turf/open/floor/noslip{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aj" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/open/floor/noslip{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ak" = (/turf/open/floor/plating/lava/smooth/lava_land_surface,/area/ruin/powered)
-"al" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"am" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/closed/wall/r_wall{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"an" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/closed/wall/r_wall{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ao" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ap" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aq" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ar" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"as" = (/obj/structure/disposalpipe/segment,/obj/effect/mob_spawn/human/corpse/damaged,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"at" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"au" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"av" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aw" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 3},/turf/closed/wall/r_wall{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ax" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ay" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/pie_smudge,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"az" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aC" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aD" = (/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aE" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aF" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aH" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aJ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/item/weapon/bikehorn,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aK" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/closed/wall/r_wall{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/pie_smudge,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aN" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aO" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/ruin/powered)
-"aP" = (/obj/item/weapon/bikehorn,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aR" = (/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aS" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plating,/area/ruin/powered)
-"aT" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aV" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aW" = (/obj/structure/disposalpipe/segment,/obj/item/weapon/bikehorn,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aX" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"aY" = (/obj/structure/disposalpipe/segment,/obj/item/weapon/bikehorn,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"aZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkred{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"ba" = (/obj/effect/decal/cleanable/pie_smudge,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bc" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/weapon/paper/crumpled/bloody{info = "If you dare not continue down this path of madness, escape can be found through the chute in this room. "},/obj/item/weapon/pen/fourcolor,/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"be" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/device/flashlight/lamp/bananalamp,/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bf" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/decal/cleanable/pie_smudge,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/pickaxe,/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bh" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bi" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/light{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bk" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bl" = (/turf/open/floor/light{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bn" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bo" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered)
-"bp" = (/turf/closed/mineral/clown,/area/ruin/powered)
-"bq" = (/obj/item/weapon/pickaxe,/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"br" = (/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bs" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/darkred{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bt" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bu" = (/obj/item/weapon/bikehorn,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/darkred{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bw" = (/obj/machinery/light{dir = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered)
-"bx" = (/turf/open/chasm/straight_down/lava_land_surface,/area/ruin/powered)
-"by" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/darkred{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bz" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white{baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface},/area/ruin/powered)
-"bA" = (/turf/open/floor/plasteel/darkred{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bB" = (/turf/open/floor/mineral/bananium{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bC" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bD" = (/obj/structure/mecha_wreckage/honker,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bE" = (/obj/effect/decal/cleanable/oil,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bF" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/mineral/bananium{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bG" = (/obj/item/weapon/grown/bananapeel{color = "#2F3000"; name = "stealth banana peel"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered)
-"bH" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/mineral/bananium{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bI" = (/obj/effect/mob_spawn/human/corpse/damaged,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel/darkyellow{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bJ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel/darkred{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bK" = (/obj/item/weapon/reagent_containers/food/drinks/trophy/gold_cup,/obj/structure/table/glass,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bL" = (/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bM" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bN" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/mineral/bananium{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bO" = (/obj/structure/statue/bananium/clown,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bP" = (/obj/structure/table/glass,/obj/item/weapon/grown/bananapeel/bluespace,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bQ" = (/obj/structure/table/glass,/obj/item/clothing/shoes/clown_shoes/banana_shoes,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bR" = (/obj/item/weapon/coin/clown,/obj/item/weapon/coin/clown,/obj/item/weapon/coin/clown,/obj/item/weapon/coin/clown,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bS" = (/obj/item/slime_extract/rainbow,/obj/structure/table/glass,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bT" = (/obj/item/weapon/bikehorn/airhorn,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bU" = (/obj/structure/table/glass,/obj/item/weapon/gun/magic/staff/honk,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"bV" = (/obj/item/weapon/bikehorn,/turf/open/floor/mineral/bananium{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered)
-"bX" = (/obj/effect/mob_spawn/human/corpse/damaged,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/mineral/bananium{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bY" = (/obj/machinery/door/airlock/clown,/turf/open/floor/mineral/bananium{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"bZ" = (/obj/item/weapon/bikehorn,/obj/effect/decal/cleanable/dirt,/turf/open/floor/mineral/bananium{baseturf = /turf/open/floor/plating/lava/smooth; wet = 2},/area/ruin/powered)
-"ca" = (/obj/machinery/light{dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/template_noop,
+/area/template_noop)
+"ab" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/powered)
+"ac" = (
+/turf/open/floor/noslip{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"ad" = (
+/mob/living/simple_animal/hostile/retaliate/clown,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/powered)
+"ae" = (
+/obj/machinery/light,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/powered)
+"af" = (
+/obj/item/clothing/head/cone,
+/turf/open/floor/noslip{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"ag" = (
+/obj/item/weapon/paper/crumpled/bloody{
+ info = "Abandon hope, all ye who enter here."
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/noslip{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"ah" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"ai" = (
+/obj/machinery/disposal/deliveryChute{
+ desc = "The following is engraved upon the chute: A FATE WORSE THAN DEATH LIES WITHIN";
+ dir = 1;
+ name = "THE TRIAL OF HONKITUDE"
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/noslip{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aj" = (
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/turf/open/floor/noslip{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"ak" = (
+/turf/open/floor/plating/lava/smooth,
+/area/ruin/powered)
+"al" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"am" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"an" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"ao" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"ap" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aq" = (
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"ar" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"as" = (
+/obj/effect/mob_spawn/human/corpse/damaged,
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"at" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"au" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"av" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j2s";
+ invisibility = 101;
+ sortType = 3
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aw" = (
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"ax" = (
+/obj/effect/decal/cleanable/pie_smudge,
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"ay" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"az" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aC" = (
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aD" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aE" = (
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/obj/item/weapon/bikehorn,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/pie_smudge,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aN" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/floor/plating,
+/area/ruin/powered)
+"aO" = (
+/obj/item/weapon/bikehorn,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aQ" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/floor/plating,
+/area/ruin/powered)
+"aS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aW" = (
+/obj/item/weapon/bikehorn,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aX" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"aY" = (
+/obj/item/weapon/bikehorn,
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"aZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkredfull"
+ },
+/area/ruin/powered)
+"ba" = (
+/obj/effect/decal/cleanable/pie_smudge,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/structure/table,
+/obj/item/weapon/paper/crumpled/bloody{
+ info = "If you dare not continue down this path of madness, escape can be found through the chute in this room. "
+ },
+/obj/item/weapon/pen/fourcolor,
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"be" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/structure/table,
+/obj/item/device/flashlight/lamp/bananalamp,
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/pie_smudge,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/obj/item/weapon/pickaxe,
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "light_on"
+ },
+/area/ruin/powered)
+"bk" = (
+/obj/structure/disposalpipe/segment{
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bl" = (
+/turf/open/indestructible{
+ icon_state = "light_on"
+ },
+/area/ruin/powered)
+"bm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bo" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/powered)
+"bp" = (
+/turf/closed/mineral/clown,
+/area/ruin/powered)
+"bq" = (
+/obj/item/weapon/pickaxe,
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"br" = (
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkredfull"
+ },
+/area/ruin/powered)
+"bt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bu" = (
+/obj/item/weapon/bikehorn,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bv" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/powered)
+"bw" = (
+/turf/open/chasm/straight_down/lava_land_surface,
+/area/ruin/powered)
+"bx" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/indestructible{
+ icon_state = "darkredfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"by" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bz" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/indestructible{
+ icon_state = "white"
+ },
+/area/ruin/powered)
+"bA" = (
+/turf/open/indestructible{
+ icon_state = "darkredfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bB" = (
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered)
+"bC" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-y";
+ invisibility = 101
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bD" = (
+/obj/structure/mecha_wreckage/honker,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bE" = (
+/obj/effect/decal/cleanable/oil,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bF" = (
+/obj/effect/decal/cleanable/cobweb{
+ icon_state = "cobweb2"
+ },
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered)
+"bG" = (
+/obj/item/weapon/grown/bananapeel{
+ color = "#2F3000";
+ name = "stealth banana peel"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/powered)
+"bH" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered)
+"bI" = (
+/obj/effect/mob_spawn/human/corpse/damaged,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/indestructible{
+ icon_state = "darkyellowfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkredfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c";
+ invisibility = 101
+ },
+/turf/open/indestructible{
+ icon_state = "darkredfull";
+ wet = 5
+ },
+/area/ruin/powered)
+"bL" = (
+/obj/item/weapon/reagent_containers/food/drinks/trophy/gold_cup,
+/obj/structure/table/glass,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bM" = (
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bN" = (
+/obj/machinery/disposal/deliveryChute,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bO" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered)
+"bP" = (
+/obj/structure/statue/bananium/clown,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bQ" = (
+/obj/structure/table/glass,
+/obj/item/weapon/grown/bananapeel/bluespace,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bR" = (
+/obj/structure/table/glass,
+/obj/item/clothing/shoes/clown_shoes/banana_shoes,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bS" = (
+/obj/item/weapon/coin/clown,
+/obj/item/weapon/coin/clown,
+/obj/item/weapon/coin/clown,
+/obj/item/weapon/coin/clown,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bT" = (
+/obj/item/slime_extract/rainbow,
+/obj/structure/table/glass,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bU" = (
+/obj/item/weapon/bikehorn/airhorn,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bV" = (
+/obj/structure/table/glass,
+/obj/item/weapon/gun/magic/staff/honk,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"bW" = (
+/obj/item/weapon/bikehorn,
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered)
+"bX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/ruin/powered)
+"bY" = (
+/obj/effect/mob_spawn/human/corpse/damaged,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered)
+"bZ" = (
+/obj/machinery/door/airlock/clown,
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered)
+"ca" = (
+/obj/item/weapon/bikehorn,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible/sound{
+ icon_state = "bananium";
+ name = "bananium floor";
+ sound = 'sound/effects/clownstep1.ogg';
+ wet = 5
+ },
+/area/ruin/powered)
+"cb" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/powered)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaababacacacababaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaadaeadadafacagacacadadaeadaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaahahahahahahahahaiacajahahahahahahahahahaaaaaaaaaaaa
-aaaaaaaaahahahakakakakakakahalahalahakakakakakakakahahaaaaaaaaaa
-aaaaaaahahakakakamanaoapahakalakalakakahahaqahahakakahahaaaaaaaa
-aaaaahahakakamaparasalatauanavaoawahahahahaxahahahahakahahaaaaaa
-aaaaahakakahayatatatatatararatatazaAaAaBaBaCaDaEaFahakakahaaaaaa
-aaahahakamaGaCaHaIaHaIaJaCaralaKaBaAaAaBaLaMaBaBaBaNahakahahaaaa
-aaahakakaOauaAaAaBaMaAaAaNatatauaBaAaPaBaMaQaBaMaBaCaRakakahaaaa
-aaahakaSaTatamaMaBaAaAanayataraHaMaBaBaAaAaAaPaBaBaNahaUakahaaaa
-aaahakaKaVaWataXaMaMaMaCataYalauaBaBaBaBaMaMaZaMaNatbaaUakahaaaa
-aaahakaoaIataKaMbbbbbbaMaCatayarbcaBaMaMbdbebbaMaCataDaUakahaaaa
-aaahakaKbfaHaMbbbbbbbgbbaMaIatatataDahbhbbbbbibhaMaTaRahakahaaaa
-aaahahakaKaMaMbbbbbjbjbbaMaBaIavaHaNahbkblblbmbnahahahakahahaaaa
-aaboahahakakahbpbqblblbrbsaVaEbtbuaHbvbnblblbrbpahakakahahbwaaaa
-ababbxahahahbyahbpbrbpahalazaBaNatbaahahbpbzbpahbAahahahbxababaa
-abbxbxbxahbBbAbAahbAahahaKaAaNaHbCaMbDbEahalahbAbAbFahbxbxabbxaa
-ababbGbxahbHbBbAahbAbAbAahahaHaVaEbIahaKbvbJbAbAbBbBahbxbGababaa
-ababbxbxahbBbHbBbAbAbAbBahahahalahahbBbBbAahbAbBbBbBahbxbxababaa
-abbxbxahahahbHahbBbBbBbBahbKbLbMbLbKahbBbBbBbBbBbBahahahbxbxabaa
-aaboahahbNbBbBahbBahbBahbObLbPbLbQbLbOahbBbBbBbBbHbBbBahahbwaaaa
-aaahahakbBbHbHbHbHbBahahbRbLbSbTbUbLbRahahbHbHbBbVbBbBakahahaaaa
-aaahakakbWbXbBahbBbBbBbBahbLbLbLbLbLahbXbBbHbHbBbBahbBakakahaaaa
-aaahakbWakbBbBbBbBbHbBbBbBahahbYahahbBbBbHbHbBahbBbBakaRakahaaaa
-aaahakaRakbWbBbBbZbHbBahbBbBahbBbBbBbBbBbBbBbBbBbBbBakbWakahaaaa
-aaahahakakakahbBbHbBbBbBbHbHbHbHbBbBbHbHbBbVahbBahakakakahahaaaa
-aaaaahakakbWakbWbBbBbHbHbZbHbBbBbBbBbHbBbBbBahakakaRakakahaaaaaa
-aaaaahahakakaRakahakakakbBbBbBahbBbBbBakakahakaRbWakakahahaaaaaa
-aaaaaaahahakakakakbWbWaRakakakakakakakbWbWbWaRakakakahahaaaaaaaa
-aaaaaaaaahahahakakakakbWbWbWbWbWbWbWbWaRakakakakahahahaaaaaaaaaa
-aaaaaaaaaacaahahahahakakakakakakakakakakakahahahahcaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaahahahahahahahahahahahahahaaaaaaaaaaaaaaaaaaaa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+bo
+ab
+bw
+ab
+ab
+bw
+bo
+ah
+ah
+ah
+ah
+ah
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ah
+ah
+ah
+ak
+ak
+ak
+ak
+ak
+ah
+ah
+bw
+bw
+bG
+bw
+bw
+ah
+ah
+ak
+ak
+ak
+ah
+ah
+ah
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+ah
+ah
+ak
+ak
+ak
+aR
+aJ
+ao
+aJ
+ak
+ah
+ah
+bw
+bw
+bw
+ah
+ah
+ak
+ak
+bX
+aQ
+ak
+ak
+ah
+ah
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+ah
+ah
+ak
+ak
+am
+aN
+aS
+aV
+aH
+bf
+aJ
+ak
+ah
+ah
+ah
+ah
+ah
+bO
+bB
+bX
+ak
+ak
+ak
+ak
+ak
+ah
+ah
+aa
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+aa
+ah
+ak
+ak
+ah
+aF
+at
+ar
+aW
+ar
+aG
+aL
+ak
+ah
+bB
+bH
+bB
+ah
+bB
+bH
+bY
+bB
+bX
+ak
+bX
+ak
+ak
+ah
+cb
+aa
+"}
+(7,1,1) = {"
+aa
+aa
+ah
+ah
+ak
+am
+ax
+aB
+az
+am
+ar
+aJ
+aL
+aL
+ah
+bx
+bA
+bB
+bH
+bH
+bB
+bH
+bB
+bB
+bB
+ah
+ak
+aQ
+ak
+ah
+ah
+aa
+"}
+(8,1,1) = {"
+aa
+aa
+ah
+ak
+ak
+ap
+ar
+aG
+az
+aL
+aX
+aL
+bb
+bb
+bp
+ah
+bA
+bA
+bB
+ah
+ah
+bH
+ah
+bB
+bB
+bB
+bX
+ak
+ak
+ak
+ah
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+ah
+ak
+am
+ar
+ar
+aH
+aA
+aA
+aL
+bb
+bb
+bb
+bq
+bp
+ah
+ah
+bA
+bB
+bB
+bH
+bB
+bB
+ca
+bH
+bB
+ah
+ak
+ak
+ah
+aa
+"}
+(10,1,1) = {"
+aa
+ad
+ah
+ak
+an
+as
+ar
+aG
+aL
+az
+aL
+bb
+bb
+bj
+bl
+br
+bA
+bA
+bA
+bB
+ah
+bB
+bB
+bH
+bH
+bB
+bB
+ak
+bX
+ak
+ah
+ah
+"}
+(11,1,1) = {"
+aa
+ae
+ah
+ak
+ao
+al
+ar
+aH
+az
+az
+aL
+bb
+bg
+bj
+bl
+bp
+ah
+bA
+bA
+bB
+bB
+ah
+bB
+bB
+bB
+bB
+bH
+ak
+bX
+ak
+ak
+ah
+"}
+(12,1,1) = {"
+aa
+ad
+ah
+ak
+ap
+ar
+ar
+aI
+az
+an
+aB
+aL
+bb
+bb
+br
+ah
+ah
+bA
+bB
+bB
+ah
+ah
+bB
+bB
+ah
+bB
+bH
+ak
+aQ
+bX
+ak
+ah
+"}
+(13,1,1) = {"
+ab
+ad
+ah
+ak
+ah
+at
+ar
+aB
+aM
+ax
+ar
+aB
+aL
+aL
+bs
+al
+aJ
+ah
+ah
+ah
+bP
+bS
+ah
+bB
+bB
+bH
+ca
+bB
+ak
+bX
+ak
+ah
+"}
+(14,1,1) = {"
+ab
+af
+ah
+ah
+ak
+an
+ar
+ar
+ar
+ar
+aY
+ar
+aH
+aA
+aV
+ay
+az
+ah
+ah
+bL
+bM
+bM
+bM
+ah
+bB
+bH
+bH
+bB
+ak
+bX
+ak
+ah
+"}
+(15,1,1) = {"
+ac
+ac
+ai
+al
+al
+au
+ar
+al
+ar
+aT
+al
+ax
+ar
+aH
+aD
+aA
+aM
+aG
+ah
+bM
+bQ
+bT
+bM
+ah
+ah
+bH
+bB
+bB
+ak
+bX
+ak
+ah
+"}
+(16,1,1) = {"
+ac
+ag
+ac
+ah
+ak
+ao
+ar
+aJ
+at
+aG
+at
+ar
+ar
+au
+bt
+aM
+aG
+aV
+al
+bN
+bM
+bU
+bM
+bZ
+bB
+bH
+bB
+ah
+ak
+bX
+ak
+ah
+"}
+(17,1,1) = {"
+ac
+ac
+aj
+al
+al
+av
+ay
+aA
+aA
+aL
+aA
+bc
+ar
+aG
+bu
+by
+bC
+aD
+ah
+bM
+bR
+bV
+bM
+ah
+bB
+bB
+bB
+bB
+ak
+bX
+ak
+ah
+"}
+(18,1,1) = {"
+ab
+ac
+ah
+ah
+ak
+ah
+az
+az
+az
+aA
+aA
+aA
+aC
+aM
+aG
+ba
+aL
+bI
+ah
+bL
+bM
+bM
+bM
+ah
+bB
+bB
+bB
+bB
+ak
+bX
+ak
+ah
+"}
+(19,1,1) = {"
+ab
+ad
+ah
+ak
+ak
+ah
+az
+az
+aO
+aA
+aA
+aL
+ah
+ah
+aZ
+ah
+bD
+ah
+bB
+ah
+bP
+bS
+ah
+bB
+bB
+bH
+bH
+bB
+ak
+bX
+ak
+ah
+"}
+(20,1,1) = {"
+aa
+ad
+ah
+ak
+ah
+ah
+aA
+aA
+aA
+az
+aA
+aL
+bh
+bk
+bn
+ah
+bE
+aJ
+bB
+bB
+ah
+ah
+bY
+bB
+bB
+bH
+bB
+ak
+bX
+aQ
+ak
+ah
+"}
+(21,1,1) = {"
+aa
+ae
+ah
+ak
+ah
+ah
+aA
+aK
+aL
+az
+aL
+bd
+bb
+bl
+bl
+bp
+ah
+bJ
+bA
+bB
+bB
+ah
+bB
+bH
+bB
+bB
+bB
+ak
+bX
+ak
+ak
+ah
+"}
+(22,1,1) = {"
+aa
+ad
+ah
+ak
+aq
+aw
+aB
+aL
+aP
+az
+aL
+be
+bb
+bl
+bl
+bz
+al
+bK
+ah
+bB
+bB
+bH
+bH
+bH
+bB
+bW
+bB
+ah
+bX
+ak
+ah
+ah
+"}
+(23,1,1) = {"
+aa
+aa
+ah
+ak
+ah
+ah
+aC
+aA
+aA
+aO
+aZ
+bb
+bi
+bm
+br
+bp
+ah
+bA
+bA
+bB
+bB
+bH
+bH
+bB
+bB
+ah
+ah
+ak
+aQ
+ak
+ah
+aa
+"}
+(24,1,1) = {"
+aa
+aa
+ah
+ak
+ah
+ah
+aD
+aA
+aL
+aA
+aL
+aL
+bh
+bn
+bp
+ah
+bA
+bA
+bB
+bB
+bB
+bB
+bB
+ah
+bB
+bB
+ak
+aQ
+ak
+ak
+ah
+aa
+"}
+(25,1,1) = {"
+aa
+aa
+ah
+ak
+ak
+ah
+aE
+aA
+aA
+aA
+aM
+aB
+aL
+ah
+ah
+bA
+bA
+bB
+bB
+bB
+bH
+bW
+bB
+bB
+bB
+ah
+ak
+bX
+ak
+ah
+ah
+aa
+"}
+(26,1,1) = {"
+aa
+aa
+ah
+ah
+ak
+ah
+ah
+aM
+aB
+aM
+ar
+ar
+aS
+ah
+ak
+ah
+bF
+bB
+bB
+ah
+bB
+bB
+ah
+bB
+bB
+ak
+aQ
+ak
+ak
+ah
+cb
+aa
+"}
+(27,1,1) = {"
+aa
+aa
+aa
+ah
+ah
+ak
+ak
+ah
+aQ
+ah
+ba
+aC
+aQ
+ah
+ak
+ah
+ah
+ah
+ah
+ah
+bB
+bB
+bB
+ak
+ak
+ak
+ak
+ak
+ah
+ah
+aa
+aa
+"}
+(28,1,1) = {"
+aa
+aa
+aa
+aa
+ah
+ah
+ak
+ak
+ak
+aU
+aU
+aU
+ah
+ak
+ah
+ah
+bw
+bw
+bw
+ah
+ah
+ak
+ak
+aQ
+bX
+ak
+ak
+ah
+ah
+aa
+aa
+aa
+"}
+(29,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ah
+ah
+ah
+ak
+ak
+ak
+ak
+ak
+ah
+ah
+bw
+bw
+bG
+bw
+bw
+ah
+ah
+ak
+ak
+ak
+ah
+ah
+ah
+aa
+aa
+aa
+aa
+"}
+(30,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+bv
+ab
+ab
+ab
+ab
+bw
+bv
+ah
+ah
+ah
+ah
+ah
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(31,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+bw
+ab
+ab
+ab
+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
+aa
+aa
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_gym.dmm b/_maps/RandomRuins/LavaRuins/lavaland_gym.dmm
deleted file mode 100644
index c6485f19bd7..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_gym.dmm
+++ /dev/null
@@ -1,53 +0,0 @@
-"a" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/turf/closed/wall/r_wall,/area/ruin/powered)
-"d" = (/obj/structure/closet,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"e" = (/obj/structure/closet,/mob/living/simple_animal/hostile/zombie,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"f" = (/obj/structure/punching_bag,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"g" = (/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"h" = (/obj/structure/window{icon_state = "window";dir = 1},/obj/item/weapon/shard{icon_state = "medium"},/mob/living/simple_animal/hostile/zombie/gymboss,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"i" = (/obj/structure/window{icon_state = "window";dir = 1},/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"j" = (/obj/structure/window{icon_state = "window";dir = 1},/obj/structure/window{icon_state = "window";dir = 4},/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"k" = (/obj/effect/decal/cleanable/blood,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"l" = (/obj/structure/weightlifter,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"m" = (/obj/structure/window{icon_state = "window";dir = 8},/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"n" = (/obj/structure/window{icon_state = "window";dir = 4},/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"o" = (/obj/structure/stacklifter,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"p" = (/obj/structure/window,/obj/structure/window{icon_state = "window";dir = 8},/obj/effect/decal/cleanable/blood,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"q" = (/obj/structure/window,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"r" = (/obj/structure/window,/obj/item/weapon/shard,/mob/living/simple_animal/hostile/zombie/darkholme,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"s" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-splatter4 (NORTH)";icon_state = "splatter4";dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"t" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-splatter6 (EAST)";icon_state = "splatter6";dir = 4},/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (NORTH)";icon_state = "tracks";dir = 1},/obj/effect/decal/cleanable/blood/tracks{tag = "icon-gib3";icon_state = "gib3"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"u" = (/obj/machinery/door/airlock/external,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"v" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)";icon_state = "tracks";dir = 4},/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (NORTHEAST)";icon_state = "tracks";dir = 5},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"w" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)";icon_state = "tracks";dir = 4},/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (SOUTHEAST)";icon_state = "tracks";dir = 6},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"x" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-splatter5";icon_state = "splatter5"},/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)";icon_state = "tracks";dir = 4},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"y" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-splatter4 (NORTH)";icon_state = "splatter4";dir = 1},/obj/effect/decal/cleanable/blood/tracks{tag = "icon-splatter6 (NORTH)";icon_state = "splatter6";dir = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"z" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-splatter5";icon_state = "splatter5"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"A" = (/mob/living/simple_animal/hostile/zombie,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"B" = (/obj/structure/window{icon_state = "window";dir = 1},/obj/machinery/shower,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"C" = (/obj/structure/window{icon_state = "window";dir = 1},/obj/machinery/shower,/mob/living/simple_animal/hostile/zombie,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"D" = (/turf/template_noop,/area/template_noop)
-
-(1,1,1) = {"
-DDDDDDDDDDDDDDDDDDDD
-DDDDDDDDDDDDDDDDDDDD
-DDDDDDDDDDDDDDDDDDDD
-DDDDDDDDDDDDDDDDDDDD
-DDDccccccccccccDDDDD
-DDDcdeddddddedcbDDDD
-DDDcfgghiijkglcbaDDD
-DDDcfggmgkngglcbbbDD
-DDDcfggmggnggocbbbDD
-DDDcfggpqqrggocstbbD
-DDDcgkgggggggkuvwxbD
-DDDcuucccccccccyzbbD
-DDDcgAgggggggAcbbbbD
-DDDcggggggAgggcbbbDD
-DDDcBCBBggBBBBcbbDDD
-DDDcgggggggAggcbDDDD
-DDDccccccccccccbDDDD
-DDDDDDDDDDDDDDDDDDDD
-DDDDDDDDDDDDDDDDDDDD
-DDDDDDDDDDDDDDDDDDDD
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
index 3c45e66d34e..2fb3608f1b6 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm
@@ -17,8 +17,8 @@
},
/area/lavaland/surface/outdoors)
"ae" = (
-/turf/closed/wall/shuttle/smooth{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+/turf/closed/wall/mineral/titanium/nodiagonal{
+ baseturf = /turf/open/floor/plating/lava/smooth
},
/area/ruin/powered)
"af" = (
@@ -139,10 +139,9 @@
"av" = (
/obj/item/weapon/reagent_containers/glass/rag,
/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 8;
- icon_state = "blue"
+ dir = 8
},
/area/ruin/powered)
"aw" = (
@@ -221,15 +220,17 @@
},
/area/ruin/powered)
"aF" = (
-/obj/machinery/door/unpowered/shuttle,
-/turf/open/floor/plating{
+/obj/machinery/door/unpowered/shuttle{
+ name = "Restroom"
+ },
+/turf/open/floor/plasteel/bar{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
"aG" = (
/obj/structure/extinguisher_cabinet,
-/turf/closed/wall/shuttle/smooth{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+/turf/closed/wall/mineral/titanium/nodiagonal{
+ baseturf = /turf/open/floor/plating/lava/smooth
},
/area/ruin/powered)
"aH" = (
@@ -252,21 +253,16 @@
},
/area/ruin/powered)
"aL" = (
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 1;
- icon_state = "blue"
+ dir = 1
},
/area/ruin/powered)
"aM" = (
-/obj/effect/mob_spawn/human/doctor/alive{
- flavour_text = "You were putting in your hours as a vet in the local animal hospital when a massive bluespace translocation shunted you across the galaxy. Can you survive on this desolate wasteland..?";
- id_job = "Veterinarian"
- },
-/turf/open/floor/plasteel{
+/obj/effect/mob_spawn/human/doctor/alive/lavaland,
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 1;
- icon_state = "blue"
+ dir = 1
},
/area/ruin/powered)
"aN" = (
@@ -275,46 +271,40 @@
/obj/item/weapon/reagent_containers/blood/random,
/obj/item/weapon/reagent_containers/blood/random,
/obj/item/weapon/reagent_containers/blood/random,
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 1;
- icon_state = "blue"
+ dir = 1
},
/area/ruin/powered)
"aO" = (
/obj/machinery/iv_drip,
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 1;
- icon_state = "blue"
+ dir = 1
},
/area/ruin/powered)
"aP" = (
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 0;
- icon_state = "blue"
+ dir = 0
},
/area/ruin/powered)
"aQ" = (
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/corner{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 8;
- icon_state = "bluecorner"
+ dir = 8
},
/area/ruin/powered)
"aR" = (
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 4;
- icon_state = "blue"
+ dir = 4
},
/area/ruin/powered)
"aS" = (
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 8;
- icon_state = "blue"
+ dir = 8
},
/area/ruin/powered)
"aT" = (
@@ -393,6 +383,10 @@
"bd" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/masks{
+ pixel_x = 3;
+ pixel_y = 3
+ },
/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
@@ -464,20 +458,18 @@
/obj/item/weapon/reagent_containers/food/snacks/cookie{
name = "doggie biscuit"
},
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 1;
- icon_state = "blue"
+ dir = 1
},
/area/ruin/powered)
"bm" = (
/obj/structure/chair/comfy/teal{
dir = 8
},
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 1;
- icon_state = "blue"
+ dir = 1
},
/area/ruin/powered)
"bn" = (
@@ -499,10 +491,9 @@
/obj/item/trash/pistachios,
/obj/item/weapon/lipstick/random,
/obj/item/seeds/apple,
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 8;
- icon_state = "blue"
+ dir = 8
},
/area/ruin/powered)
"bq" = (
@@ -525,7 +516,7 @@
},
/area/ruin/powered)
"bt" = (
-/obj/structure/flora/kirbyplants,
+/obj/item/weapon/twohanded/required/kirbyplants,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
@@ -534,16 +525,15 @@
/obj/structure/chair/comfy/teal{
dir = 8
},
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 4;
- icon_state = "blue"
+ dir = 4
},
/area/ruin/powered)
"bv" = (
/obj/effect/mob_spawn/mouse{
dir = 4;
- flavour_text = "You're a mousey! You're getting pretty old as mice go, and you haven't been feeling well as of late. Your master loves you a lot so he took you to this place so you can get better! You can't wait to see him again!";
+ flavour_text = "You're a mousey! You're getting pretty old as mice go, and you haven't been feeling well as of late. Your master loves you a lot so he took you to this place so you can get better! You can't wait to see him again!";
mob_name = "Stallman Jr."
},
/turf/open/floor/plasteel/white{
@@ -559,19 +549,18 @@
"bx" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room";
- req_access_txt = "5"
+ req_access_txt = "0"
},
-/turf/open/floor/plating{
+/turf/open/floor/plasteel/white{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
"by" = (
/obj/structure/table/reinforced,
/obj/item/device/flashlight/lamp,
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 8;
- icon_state = "blue"
+ dir = 8
},
/area/ruin/powered)
"bz" = (
@@ -617,50 +606,48 @@
/area/ruin/powered)
"bE" = (
/obj/structure/closet/crate/critter,
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 8;
- icon_state = "blue"
+ dir = 8
},
/area/ruin/powered)
"bF" = (
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 10;
- icon_state = "blue"
+ dir = 10
},
/area/ruin/powered)
"bG" = (
/obj/structure/chair/comfy/teal{
dir = 8
},
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 6;
- icon_state = "blue"
+ dir = 6
},
/area/ruin/powered)
"bH" = (
/obj/structure/table,
/obj/item/weapon/tank/internals/oxygen,
/obj/item/weapon/tank/internals/oxygen,
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 8;
- icon_state = "blue"
+ dir = 8
},
/area/ruin/powered)
"bI" = (
/obj/structure/sign/bluecross_2{
name = "animal hospital"
},
-/turf/closed/wall/shuttle/smooth{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+/turf/closed/wall/mineral/titanium/nodiagonal{
+ baseturf = /turf/open/floor/plating/lava/smooth
},
/area/ruin/powered)
"bJ" = (
-/obj/machinery/door/airlock/glass_large,
-/turf/open/floor/plating{
+/obj/machinery/door/airlock/glass_large{
+ name = "Ian's Pet Care"
+ },
+/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
@@ -691,7 +678,7 @@
"bN" = (
/obj/effect/mob_spawn/cow{
dir = 4;
- flavour_text = "You're a cow. You've lived a pampered life as a prized show heifer, a real blue-ribbon winner. After showing signs of a minor respiratory infection, your master took you to the hospital right away. He'd better come back soon, you're getting quite impatient.";
+ flavour_text = "You're a cow. You've lived a pampered life as a prized show heifer, a real blue-ribbon winner. After showing signs of a minor respiratory infection, your master took you to the hospital right away. He'd better come back soon. You're getting quite impatient.";
mob_name = "Flossie"
},
/turf/open/floor/plasteel/white{
@@ -724,12 +711,14 @@
"bR" = (
/obj/structure/table,
/obj/machinery/cell_charger,
-/obj/item/weapon/melee/baton/cattleprod,
+/obj/item/weapon/melee/baton/cattleprod{
+ desc = "On-the-fly rabies treatment.";
+ name = "cattle prod"
+ },
/obj/item/weapon/stock_parts/cell/high,
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 10;
- icon_state = "blue"
+ dir = 10
},
/area/ruin/powered)
"bS" = (
@@ -737,10 +726,9 @@
/obj/item/weapon/defibrillator/loaded,
/obj/item/weapon/storage/belt/medical,
/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel{
+/turf/open/floor/plasteel/blue/side{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 6;
- icon_state = "blue"
+ dir = 6
},
/area/ruin/powered)
"bT" = (
@@ -799,8 +787,8 @@
/area/lavaland/surface/outdoors)
"cc" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/shuttle/smooth{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+/turf/closed/wall/mineral/titanium/nodiagonal{
+ baseturf = /turf/open/floor/plating/lava/smooth
},
/area/ruin/powered)
"cd" = (
@@ -822,14 +810,66 @@
},
/area/ruin/powered)
"cf" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 4
+/obj/structure/closet/l3closet,
+/turf/open/floor/plasteel/white{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- dir = 1;
- icon_state = "blue"
+/area/ruin/powered)
+"cg" = (
+/obj/machinery/door/unpowered/shuttle{
+ name = "Break Room"
+ },
+/turf/open/floor/plasteel/cmo{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"ch" = (
+/obj/machinery/door/unpowered/shuttle{
+ name = "Emergency Care"
+ },
+/turf/open/floor/plasteel/white{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"ci" = (
+/obj/machinery/door/unpowered/shuttle{
+ desc = "There's a note wedged in the seam saying something about directing pizza here.";
+ name = "Staff Entrance"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"cj" = (
+/obj/machinery/door/unpowered/shuttle{
+ name = "Morgue"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"ck" = (
+/obj/machinery/door/unpowered/shuttle{
+ name = "Medical Supplies"
+ },
+/turf/open/floor/plasteel/white{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"cl" = (
+/obj/machinery/door/unpowered/shuttle{
+ name = "Safety Supplies"
+ },
+/turf/open/floor/plasteel/white{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"cm" = (
+/obj/machinery/door/unpowered/shuttle{
+ name = "Tool Storage"
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
@@ -962,14 +1002,14 @@ ae
ae
ae
ae
-aE
-aF
ae
-aE
+ci
+ae
+ae
aT
aY
bf
-aE
+ae
ae
ae
ae
@@ -995,11 +1035,11 @@ ay
ae
aK
aK
-aF
+cj
aU
aZ
bg
-aF
+cj
aK
bp
by
@@ -1025,11 +1065,11 @@ ag
aF
aK
aK
-aE
ae
ae
ae
-aE
+ae
+ae
aL
bq
bz
@@ -1082,7 +1122,7 @@ ae
ai
as
as
-aF
+cg
aK
aP
ae
@@ -1115,11 +1155,11 @@ as
ae
aM
aK
-aF
+ck
ao
bb
ao
-aF
+ck
aK
aK
aK
@@ -1154,7 +1194,7 @@ bl
bt
aK
aK
-aU
+aK
aJ
aJ
ab
@@ -1175,11 +1215,11 @@ as
ae
aM
aK
-aF
+cl
ao
bc
ao
-aF
+cl
aK
aK
aK
@@ -1202,7 +1242,7 @@ ae
am
as
as
-aF
+cg
aK
aP
ae
@@ -1232,11 +1272,11 @@ ae
ae
ae
ae
-aH
+aG
aL
aP
ae
-aV
+cf
bd
bj
ae
@@ -1265,7 +1305,7 @@ aA
ae
aL
aP
-aE
+ae
ae
ae
ae
@@ -1292,10 +1332,10 @@ cc
ce
ao
ao
-aF
+ch
aK
aK
-aF
+cm
aX
be
bk
@@ -1322,18 +1362,18 @@ ae
ap
ao
aB
-aI
+ae
aL
aP
ae
ae
ae
ae
-aE
+ae
af
bx
ae
-aE
+ae
af
bx
ae
@@ -1352,7 +1392,7 @@ ae
aq
ao
aC
-aI
+ae
aN
aQ
aS
@@ -1382,7 +1422,7 @@ ae
ar
aw
aD
-aI
+ae
aO
aR
aR
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
index 0d13efc45a1..e1f874254d4 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
@@ -1,65 +1,588 @@
-"a" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/turf/closed/wall/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"d" = (/obj/effect/light_emitter,/mob/living/simple_animal/hostile/spawner/ash_walker,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"e" = (/obj/effect/decal/cleanable/blood,/obj/effect/mob_spawn/human/ash_walker,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"f" = (/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"g" = (/obj/effect/mob_spawn/human/ash_walker,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"h" = (/obj/effect/decal/cleanable/blood,/obj/item/device/flashlight/lantern,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"i" = (/obj/effect/decal/cleanable/blood,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"j" = (/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/structure/closet/crate/internals,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/storage/box/rxglasses,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"k" = (/obj/effect/mob_spawn/human/corpse/damaged,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"l" = (/obj/structure/closet/crate/radiation,/obj/item/device/flashlight/lantern,/obj/item/device/flashlight/lantern,/obj/item/device/flashlight/lantern,/obj/item/device/flashlight/flare,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"m" = (/obj/structure/closet/crate/medical,/obj/item/device/malf_upgrade,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"n" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/storage/belt,/obj/item/weapon/scythe,/obj/item/seeds/glowshroom,/obj/item/seeds/glowshroom,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"o" = (/obj/item/device/flashlight/lantern,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"p" = (/obj/item/device/flashlight/seclite,/obj/item/device/flashlight,/obj/structure/closet/crate,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"q" = (/obj/item/device/flashlight/flare,/obj/item/device/flashlight/seclite,/obj/item/device/flashlight/seclite,/obj/item/device/flashlight,/obj/structure/closet/crate,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"r" = (/turf/closed/wall/mineral/iron{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"s" = (/obj/item/weapon/twohanded/spear,/obj/structure/mineral_door/iron,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"t" = (/obj/structure/mineral_door/iron,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"u" = (/obj/structure/closet/crate/engineering,/obj/item/weapon/rcd/loaded,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"v" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"w" = (/obj/machinery/the_singularitygen,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"x" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi';icon_state = "minibar_left";name = "skeletal minibar"},/obj/item/stack/sheet/cloth/ten,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"y" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi';icon_state = "minibar_right";name = "skeletal minibar"},/obj/item/clothing/head/helmet/roman/legionaire,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"z" = (/obj/item/weapon/shovel,/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"A" = (/obj/structure/closet/crate,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"B" = (/obj/structure/table_frame,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"C" = (/obj/structure/table/optable,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"D" = (/obj/item/device/flashlight,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"E" = (/obj/item/weapon/storage/toolbox/syndicate,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"F" = (/obj/structure/closet/crate/miningcar,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"G" = (/obj/item/weapon/twohanded/spear,/obj/structure/rack,/obj/item/weapon/twohanded/spear,/obj/item/weapon/twohanded/spear,/obj/item/weapon/twohanded/spear,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"H" = (/obj/item/weapon/twohanded/spear,/obj/structure/rack,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"I" = (/obj/structure/mineral_door/iron,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth;blocks_air = 1},/area/ruin/unpowered)
-"J" = (/turf/closed/wall/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/lavaland/surface/outdoors)
-"K" = (/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth;initial_gas_mix = "o2=13;n2=24;TEMP=300"},/area/lavaland/surface/outdoors)
-"L" = (/obj/item/weapon/twohanded/spear,/obj/structure/table,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"M" = (/obj/item/weapon/pickaxe,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth;initial_gas_mix = "o2=13;n2=24;TEMP=300"},/area/lavaland/surface/outdoors)
-"N" = (/obj/structure/ore_box,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"R" = (/mob/living/simple_animal/hostile/asteroid/gutlunch/gubbuck,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"Q" = (/mob/living/simple_animal/hostile/asteroid/gutlunch/guthen,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"P" = (/obj/machinery/iv_drip,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"O" = (/obj/item/weapon/reagent_containers/glass/bowl,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/turf/closed/wall/mineral/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"d" = (
+/obj/effect/light_emitter,
+/mob/living/simple_animal/hostile/spawner/ash_walker,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"e" = (
+/obj/effect/decal/cleanable/blood,
+/obj/effect/mob_spawn/human/ash_walker,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"f" = (
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"g" = (
+/obj/effect/mob_spawn/human/ash_walker,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"h" = (
+/obj/effect/decal/cleanable/blood,
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"i" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"j" = (
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/structure/closet/crate/internals,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/storage/box/rxglasses,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"k" = (
+/obj/effect/mob_spawn/human/corpse/damaged,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"l" = (
+/obj/structure/closet/crate/radiation,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/lantern,
+/obj/item/device/flashlight/flare,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"m" = (
+/obj/structure/closet/crate/medical,
+/obj/item/device/malf_upgrade,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"n" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/weapon/storage/belt,
+/obj/item/weapon/scythe,
+/obj/item/seeds/glowshroom,
+/obj/item/seeds/glowshroom,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"o" = (
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"p" = (
+/obj/item/device/flashlight/seclite,
+/obj/item/device/flashlight,
+/obj/structure/closet/crate,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"q" = (
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/seclite,
+/obj/item/device/flashlight/seclite,
+/obj/item/device/flashlight,
+/obj/structure/closet/crate,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"r" = (
+/turf/closed/wall/mineral/iron{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"s" = (
+/obj/item/weapon/twohanded/spear,
+/obj/structure/mineral_door/iron,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"t" = (
+/obj/structure/mineral_door/iron,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"u" = (
+/obj/structure/closet/crate/engineering,
+/obj/item/weapon/rcd/loaded,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"v" = (
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/reagent_containers/blood/random,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"w" = (
+/obj/machinery/the_singularitygen,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"x" = (
+/obj/structure/rack{
+ icon = 'icons/obj/stationobjs.dmi';
+ icon_state = "minibar_left";
+ name = "skeletal minibar"
+ },
+/obj/item/stack/sheet/cloth/ten,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"y" = (
+/obj/structure/rack{
+ icon = 'icons/obj/stationobjs.dmi';
+ icon_state = "minibar_right";
+ name = "skeletal minibar"
+ },
+/obj/item/clothing/head/helmet/roman/legionaire,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"z" = (
+/obj/item/weapon/shovel,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"A" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/o2,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"B" = (
+/obj/structure/table_frame,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"C" = (
+/obj/structure/table/optable,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"D" = (
+/obj/item/device/flashlight,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"E" = (
+/obj/item/weapon/storage/toolbox/syndicate,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"F" = (
+/obj/structure/closet/crate/miningcar,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"G" = (
+/obj/item/weapon/twohanded/spear,
+/obj/structure/rack,
+/obj/item/weapon/twohanded/spear,
+/obj/item/weapon/twohanded/spear,
+/obj/item/weapon/twohanded/spear,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"H" = (
+/obj/item/weapon/twohanded/spear,
+/obj/structure/rack,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"I" = (
+/obj/structure/mineral_door/iron,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ blocks_air = 1
+ },
+/area/ruin/unpowered)
+"J" = (
+/turf/closed/wall/mineral/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/lavaland/surface/outdoors)
+"K" = (
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=13;n2=24;TEMP=300"
+ },
+/area/lavaland/surface/outdoors)
+"L" = (
+/obj/item/weapon/twohanded/spear,
+/obj/structure/table,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"M" = (
+/obj/item/weapon/pickaxe,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=13;n2=24;TEMP=300"
+ },
+/area/lavaland/surface/outdoors)
+"N" = (
+/obj/structure/ore_box,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"R" = (
+/mob/living/simple_animal/hostile/asteroid/gutlunch/gubbuck,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"Q" = (
+/mob/living/simple_animal/hostile/asteroid/gutlunch/guthen,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"P" = (
+/obj/machinery/iv_drip,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"O" = (
+/obj/item/weapon/reagent_containers/glass/bowl,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
(1,1,1) = {"
-aabaaaaaaaaabb
-aaaaaaaaaaaabb
-aaaaccccccaaab
-aaaacdefgcaaab
-aaaacehifcaaab
-baacciffOccaaa
-baacjfkfflcaaa
-aaacmnfopqcaaa
-aaccrrstrrccaa
-aacuvwffxyzcaa
-aacAPffkQfBcaa
-aacCRDffffEcaa
-bFrGfHrIrrrraa
-JKrLLHrKbKMNaa
-JKrrrrrbbbbbaa
-bbbKbbbbKbbKaa
-KbbbbbKbKbbbaa
-abbbbbbbKbbbaa
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+a
+a
+b
+J
+J
+b
+K
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+F
+K
+K
+b
+b
+b
+"}
+(3,1,1) = {"
+b
+a
+a
+a
+a
+a
+a
+a
+c
+c
+c
+c
+r
+r
+r
+b
+b
+b
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+c
+c
+c
+c
+u
+A
+C
+G
+L
+r
+K
+b
+b
+"}
+(5,1,1) = {"
+a
+a
+c
+c
+c
+c
+j
+m
+r
+v
+P
+R
+f
+L
+r
+b
+b
+b
+"}
+(6,1,1) = {"
+a
+a
+c
+d
+e
+i
+f
+n
+r
+w
+f
+D
+H
+H
+r
+b
+b
+b
+"}
+(7,1,1) = {"
+a
+a
+c
+e
+h
+f
+k
+f
+s
+f
+f
+f
+r
+r
+r
+b
+K
+b
+"}
+(8,1,1) = {"
+a
+a
+c
+f
+i
+f
+f
+o
+t
+f
+k
+f
+I
+K
+b
+b
+b
+b
+"}
+(9,1,1) = {"
+a
+a
+c
+g
+f
+O
+f
+p
+r
+x
+Q
+f
+r
+b
+b
+K
+K
+K
+"}
+(10,1,1) = {"
+a
+a
+c
+c
+c
+c
+l
+q
+r
+y
+f
+f
+r
+K
+b
+b
+b
+b
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+c
+c
+c
+c
+z
+B
+E
+r
+M
+b
+b
+b
+b
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+c
+c
+c
+c
+r
+N
+b
+K
+b
+b
+"}
+(13,1,1) = {"
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_automated_trade_outpost.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_automated_trade_outpost.dmm
index dcc341718d2..9823fd54dd2 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_automated_trade_outpost.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_automated_trade_outpost.dmm
@@ -1,33 +1,277 @@
-"a" = (/turf/closed/indestructible/opshuttle,/area/ruin/powered)
-"b" = (/obj/machinery/vending/medical{emagged = 1},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"c" = (/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"d" = (/obj/machinery/vending/autodrobe{emagged = 1},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"e" = (/obj/machinery/vending/coffee{emagged = 1},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"f" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"g" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 4; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = -9; pixel_y = 2},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"h" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"i" = (/obj/structure/table/glass,/obj/item/weapon/paper{name = "payment table"},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"j" = (/obj/machinery/vending/magivend{emagged = 1},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"k" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"l" = (/obj/machinery/door/airlock/shuttle{name = "automated trading pod"},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"m" = (/obj/structure/table/glass,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"n" = (/obj/machinery/vending/boozeomat{emagged = 1},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"o" = (/obj/machinery/vending/sovietsoda,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"p" = (/obj/item/weapon/paper{desc = "Please leave payment on the table - The Trader"; name = "welcome to the trading post"},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"q" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"r" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"s" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"t" = (/obj/machinery/vending/clothing,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/wall/mineral/plastitanium{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"b" = (
+/obj/machinery/vending/medical{
+ emagged = 1
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"c" = (
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"d" = (
+/obj/machinery/vending/autodrobe{
+ emagged = 1
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"e" = (
+/obj/machinery/vending/coffee{
+ emagged = 1
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"f" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"g" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 4;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"h" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"i" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper{
+ name = "payment table"
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"j" = (
+/obj/machinery/vending/magivend{
+ emagged = 1
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"k" = (
+/obj/machinery/vending/sustenance,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"l" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "automated trading pod"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"m" = (
+/obj/structure/table/glass,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"n" = (
+/obj/machinery/vending/boozeomat{
+ emagged = 1
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"o" = (
+/obj/machinery/vending/sovietsoda,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"p" = (
+/obj/item/weapon/paper{
+ desc = "Please leave payment on the table - The Trader";
+ name = "welcome to the trading post"
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"q" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"r" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"s" = (
+/obj/machinery/vending/cola,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"t" = (
+/obj/machinery/vending/clothing,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
(1,1,1) = {"
-aaaaaaaaaa
-abcdccecfa
-acccccccca
-agccccccha
-aiccjkcccl
-amccnocpcl
-agccccccha
-acccccccca
-aqcrccscta
-aaaaaaaaaa
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+b
+c
+g
+i
+m
+g
+c
+q
+a
+"}
+(3,1,1) = {"
+a
+c
+c
+c
+c
+c
+c
+c
+c
+a
+"}
+(4,1,1) = {"
+a
+d
+c
+c
+c
+c
+c
+c
+r
+a
+"}
+(5,1,1) = {"
+a
+c
+c
+c
+j
+n
+c
+c
+c
+a
+"}
+(6,1,1) = {"
+a
+c
+c
+c
+k
+o
+c
+c
+c
+a
+"}
+(7,1,1) = {"
+a
+e
+c
+c
+c
+c
+c
+c
+s
+a
+"}
+(8,1,1) = {"
+a
+c
+c
+c
+c
+p
+c
+c
+c
+a
+"}
+(9,1,1) = {"
+a
+f
+c
+h
+c
+c
+h
+c
+t
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+l
+l
+a
+a
+a
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
index fbf9af94e17..1fa9867295b 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm
@@ -1,103 +1,1357 @@
-"aa" = (/turf/template_noop,/area/template_noop)
-"ab" = (/turf/closed/wall/r_wall{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"ac" = (/obj/item/stack/medical/ointment,/obj/structure/table,/obj/item/stack/medical/bruise_pack,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"ad" = (/obj/structure/table,/obj/item/stack/medical/gauze,/obj/item/stack/medical/gauze,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"ae" = (/obj/machinery/power/smes,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"af" = (/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"ag" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"ah" = (/obj/item/weapon/reagent_containers/food/drinks/mug,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"ai" = (/obj/machinery/shower,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aj" = (/obj/structure/sink,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"ak" = (/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"al" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"am" = (/obj/machinery/door/airlock/hatch,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"an" = (/obj/structure/toilet{dir = 8},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"ao" = (/turf/open/floor/plating/ice,/area/ruin/powered/snow_biodome)
-"ap" = (/obj/structure/flora/rock/icy,/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aq" = (/turf/closed/wall/mineral/wood,/area/ruin/powered/snow_biodome)
-"ar" = (/obj/machinery/door/airlock/wood,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"as" = (/obj/structure/fans,/turf/closed/wall/mineral/wood,/area/ruin/powered/snow_biodome)
-"at" = (/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"au" = (/obj/structure/bed,/obj/item/weapon/bedsheet/blue,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"av" = (/obj/structure/bookcase/random,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"aw" = (/obj/structure/table/wood,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"ax" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/beans,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"ay" = (/obj/structure/closet/crate/trashcart,/obj/item/trash/semki,/obj/item/trash/candy,/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"az" = (/obj/structure/flora/tree/pine,/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aA" = (/obj/structure/chair/comfy/brown{tag = "icon-comfychair (EAST)"; icon_state = "comfychair"; dir = 4},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"aB" = (/obj/structure/flora/rock/pile/icy,/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aC" = (/obj/structure/flora/tree/dead,/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aD" = (/obj/machinery/door/airlock/wood,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"aE" = (/obj/structure/extinguisher_cabinet,/turf/closed/wall/mineral/wood,/area/ruin/powered/snow_biodome)
-"aF" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/mug/coco,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"aG" = (/obj/structure/chair/comfy/brown{tag = "icon-comfychair (WEST)"; icon_state = "comfychair"; dir = 8},/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"aH" = (/mob/living/simple_animal/hostile/skeleton/eskimo,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"aI" = (/obj/structure/flora/bush,/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aJ" = (/obj/vehicle/atv,/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aK" = (/turf/closed/wall/mineral/wood{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aL" = (/obj/structure/displaycase/captain,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"aM" = (/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aN" = (/obj/structure/bed/dogbed,/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "floor"},/area/ruin/powered/snow_biodome)
-"aO" = (/obj/machinery/door/airlock/glass_large,/obj/structure/fans/tiny,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"aP" = (/obj/structure/fans/tiny,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"aQ" = (/obj/structure/flora/grass/both,/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aR" = (/obj/structure/flora/tree/pine/xmas,/turf/open/floor/plating/asteroid/snow{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aS" = (/obj/structure/rack,/obj/item/clothing/suit/hooded/wintercoat/science,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/gloves/fingerless,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"aT" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"aU" = (/obj/machinery/vending/coffee,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"aV" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"aW" = (/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"aX" = (/turf/open/floor/pod/light,/area/ruin/powered/snow_biodome)
-"aY" = (/obj/structure/chair/stool,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"aZ" = (/obj/machinery/door/airlock/hatch,/obj/structure/fans/tiny,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"ba" = (/obj/machinery/door/airlock/silver,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bb" = (/obj/machinery/door/airlock/silver,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/snow_biodome)
-"bc" = (/obj/structure/table,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bd" = (/obj/structure/table,/obj/item/weapon/pen,/obj/item/weapon/paper_bin,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"be" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bf" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bg" = (/obj/item/weapon/twohanded/required/chainsaw,/obj/structure/closet,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bh" = (/obj/structure/filingcabinet,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bi" = (/obj/machinery/computer/monitor,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bj" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bk" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bl" = (/turf/open/floor/wood{baseturf = /turf/open/floor/plating/lava/smooth; name = "bridge"},/area/ruin/powered/snow_biodome)
-"bm" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/powered/snow_biodome)
-"bn" = (/obj/item/clothing/mask/balaclava,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bo" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bp" = (/obj/structure/table,/obj/item/weapon/pen,/obj/item/weapon/paper,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"bq" = (/obj/machinery/light/built{dir = 1},/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
-"br" = (/obj/structure/fans/tiny,/obj/machinery/door/airlock/glass_large,/turf/open/floor/pod/dark,/area/ruin/powered/snow_biodome)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/template_noop,
+/area/template_noop)
+"ab" = (
+/turf/closed/wall/r_wall{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"ac" = (
+/obj/item/stack/medical/ointment,
+/obj/structure/table,
+/obj/item/stack/medical/bruise_pack,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"ad" = (
+/obj/structure/table,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/gauze,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"ae" = (
+/obj/machinery/power/smes,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"af" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"ag" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"ah" = (
+/obj/item/weapon/reagent_containers/food/drinks/mug,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"ai" = (
+/obj/machinery/shower,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aj" = (
+/obj/structure/sink,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"ak" = (
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"al" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"am" = (
+/obj/machinery/door/airlock/hatch,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"an" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"ao" = (
+/turf/open/floor/plating/ice,
+/area/ruin/powered/snow_biodome)
+"ap" = (
+/obj/structure/flora/rock/icy,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aq" = (
+/turf/closed/wall/mineral/wood,
+/area/ruin/powered/snow_biodome)
+"ar" = (
+/obj/machinery/door/airlock/wood,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"as" = (
+/obj/structure/fans,
+/turf/closed/wall/mineral/wood,
+/area/ruin/powered/snow_biodome)
+"at" = (
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"au" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/blue,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"av" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"aw" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"ax" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/beans,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"ay" = (
+/obj/structure/closet/crate/trashcart,
+/obj/item/trash/semki,
+/obj/item/trash/candy,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"az" = (
+/obj/structure/flora/tree/pine,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aA" = (
+/obj/structure/chair/comfy/brown{
+ tag = "icon-comfychair (EAST)";
+ icon_state = "comfychair";
+ dir = 4
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"aB" = (
+/obj/structure/flora/rock/pile/icy,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aC" = (
+/obj/structure/flora/tree/dead,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aD" = (
+/obj/machinery/door/airlock/wood,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"aE" = (
+/obj/structure/extinguisher_cabinet,
+/turf/closed/wall/mineral/wood,
+/area/ruin/powered/snow_biodome)
+"aF" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/drinks/mug/coco,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"aG" = (
+/obj/structure/chair/comfy/brown{
+ tag = "icon-comfychair (WEST)";
+ icon_state = "comfychair";
+ dir = 8
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"aH" = (
+/mob/living/simple_animal/hostile/skeleton/eskimo,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"aI" = (
+/obj/structure/flora/bush,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aJ" = (
+/obj/vehicle/atv,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aK" = (
+/turf/closed/wall/mineral/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aL" = (
+/obj/structure/displaycase/captain,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"aM" = (
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aN" = (
+/obj/structure/bed/dogbed,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "floor"
+ },
+/area/ruin/powered/snow_biodome)
+"aO" = (
+/obj/machinery/door/airlock/glass_large,
+/obj/structure/fans/tiny,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"aP" = (
+/obj/structure/fans/tiny,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"aQ" = (
+/obj/structure/flora/grass/both,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aR" = (
+/obj/structure/flora/tree/pine/xmas,
+/turf/open/floor/plating/asteroid/snow{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aS" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/science,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/gloves/fingerless,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"aT" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"aU" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"aV" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"aW" = (
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"aX" = (
+/turf/open/floor/pod/light,
+/area/ruin/powered/snow_biodome)
+"aY" = (
+/obj/structure/chair/stool,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"aZ" = (
+/obj/machinery/door/airlock/hatch,
+/obj/structure/fans/tiny,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"ba" = (
+/obj/machinery/door/airlock/silver,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bb" = (
+/obj/machinery/door/airlock/silver,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/snow_biodome)
+"bc" = (
+/obj/structure/table,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bd" = (
+/obj/structure/table,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"be" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bf" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bg" = (
+/obj/item/weapon/twohanded/required/chainsaw,
+/obj/structure/closet,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bh" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bi" = (
+/obj/machinery/computer/monitor,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bj" = (
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bk" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bl" = (
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ name = "bridge"
+ },
+/area/ruin/powered/snow_biodome)
+"bm" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/powered/snow_biodome)
+"bn" = (
+/obj/item/clothing/mask/balaclava,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bo" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bp" = (
+/obj/structure/table,
+/obj/item/weapon/pen,
+/obj/item/weapon/paper,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"bq" = (
+/obj/machinery/light/built{
+ dir = 1
+ },
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
+"br" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/glass_large,
+/turf/open/floor/pod/dark,
+/area/ruin/powered/snow_biodome)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaababababababababababababaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaababababacadaeafaeagahabaiajababababaaaaaaaaaaaa
-aaaaaaaaabababakabafafafafalafahafamafafanabakabababaaaaaaaa
-aaaaaaababaoapakababaqaraqaqaqasaqaqaqaqababakakapababaaaaaa
-aaaaababaoaoakakakakaqatauaqavawaxavavaqayakazakakakababaaaa
-aaaaabakaoaoaoakazakaqatauaqataAawatataqakakakaBakakakabaaaa
-aaababaCakaoaoakakakaqaDaqaEataAaFaGaHaqakaIaJakakazakababaa
-aaabakakaIaoaoaoakakaqatatataHatatatataqakakakakakakakakabaa
-aaabakakakakaoaoaoakaKaLatataMaMatataNaqakapakaCakakakakabaa
-aaabakakakaIakaoaoakaqaqaqaqaOaPaqaqaqaqakakakakaQakakakabaa
-ababababakakakaoaoakakakakakapakakaRakakakakakakakakabababab
-abaSaSaTazakakakaoaoaoazakakakakaIakakakakakakakakakaTaUaVab
-abaWaWaTakakakakaoaoaoakakaCakaQakakakakakakakakakakaTaWaWab
-abaWaWaTaBakakakakaoaoaoaoakakakakakazakakakazaIaIakaTaXaYab
-aZaXaXbaakakazakakaoaoaoaoaoakakakakakakaCakakakakakbbaXbcab
-abaWbdaTakakakakakakaoaoaoakakazakakakaIakakaQapakakaTaXbeab
-abaWaYaTakakaCakakaIakaoaoaoakakakakakakakakakakakazaTbfbgab
-abbhbiaTaIakakakakazakaoaoaoaoakakakakazakakaCakakakaTbjbkab
-ababababakakakapakakblblblblblblakaCakakakakakakaQakabababab
-ababakakakaQaIaIakakblblblblblblakakakakapakaIakakakakakabaa
-ababakakakakaIakakakakakaoaoaoakakakakakakaIakakakakakakabaa
-aaabakakakakakaQaCakaIakakaoaoaoaoakakakakakazakaBazakakabaa
-aaababakakakakakakakakakakaIakaoaoaoakazakakaIaIakakakababaa
-aaaaabakakazakakakaIakazakakakakaoaoaoakakaQaIaIakakakabaaaa
-aaaaababakakakakakakakakaIakakakakaoaoaoakakakakaCakababaaaa
-aaaabmababakakazakakababababaOaPababababakakakakakababbmaaaa
-aaaabmbmabababakakakabaSbnaXaXaXaXaWboabakakakabababbmbmaaaa
-aaaaaabmbmbmabababababaSaWaXaXaXaXaWbpabababababbmbmbmaaaaaa
-aaaaaaaabmbmbmbmbqbmababababbraPababababbmbqbmbmbmaaaaaaaaaa
-aaaaaaaaaaaaaabmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmaaaaaaaaaaaaaa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+aZ
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+aS
+aW
+aW
+aX
+aW
+aW
+bh
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ak
+ak
+ak
+ab
+aS
+aW
+aW
+aX
+bd
+aY
+bi
+ab
+ak
+ak
+ak
+ab
+ab
+ab
+bm
+bm
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+ab
+ab
+ak
+aC
+ak
+ak
+ak
+ab
+aT
+aT
+aT
+ba
+aT
+aT
+aT
+ab
+ak
+ak
+ak
+ak
+ak
+ab
+ab
+bm
+bm
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+ab
+ab
+ao
+ao
+ak
+aI
+ak
+ak
+ak
+az
+ak
+aB
+ak
+ak
+ak
+aI
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ab
+ab
+bm
+bm
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+ab
+ao
+ao
+ao
+ao
+ao
+ak
+aI
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aQ
+ak
+ak
+ak
+az
+ak
+ak
+ab
+bm
+bm
+aa
+"}
+(7,1,1) = {"
+aa
+ab
+ab
+ap
+ak
+ao
+ao
+ao
+ao
+ak
+ak
+ak
+ak
+ak
+az
+ak
+aC
+ak
+ak
+aI
+aI
+ak
+ak
+ak
+ak
+ak
+ab
+ab
+bm
+aa
+"}
+(8,1,1) = {"
+aa
+ab
+ak
+ak
+ak
+ak
+ak
+ao
+ao
+ao
+ao
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ap
+aI
+ak
+aQ
+ak
+ak
+ak
+az
+ak
+ab
+bm
+bm
+"}
+(9,1,1) = {"
+aa
+ab
+ab
+ab
+ak
+az
+ak
+ak
+ao
+ao
+ao
+ao
+ao
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aC
+ak
+ak
+ak
+ak
+ak
+ab
+bq
+bm
+"}
+(10,1,1) = {"
+ab
+ab
+af
+ab
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ao
+ao
+ao
+ao
+ak
+aI
+az
+ak
+ak
+ak
+ak
+ak
+aI
+ak
+ak
+ak
+ab
+bm
+bm
+"}
+(11,1,1) = {"
+ab
+ac
+af
+aq
+aq
+aq
+aq
+aq
+aK
+aq
+ak
+ao
+ao
+ao
+ao
+ao
+ak
+ak
+bl
+bl
+ak
+aI
+ak
+ak
+ak
+ab
+ab
+ab
+ab
+bm
+"}
+(12,1,1) = {"
+ab
+ad
+af
+ar
+at
+at
+aD
+at
+aL
+aq
+ak
+az
+ak
+ao
+ao
+ao
+ao
+ao
+bl
+bl
+ak
+ak
+ak
+az
+ak
+ab
+aS
+aS
+ab
+bm
+"}
+(13,1,1) = {"
+ab
+ae
+af
+aq
+au
+au
+aq
+at
+at
+aq
+ak
+ak
+ak
+ao
+ao
+ao
+ao
+ao
+bl
+bl
+ao
+ak
+ak
+ak
+aI
+ab
+bn
+aW
+ab
+bm
+"}
+(14,1,1) = {"
+ab
+af
+al
+aq
+aq
+aq
+aE
+at
+at
+aq
+ak
+ak
+aC
+ak
+ao
+ak
+ao
+ao
+bl
+bl
+ao
+ao
+aI
+ak
+ak
+ab
+aX
+aX
+ab
+bm
+"}
+(15,1,1) = {"
+ab
+ae
+af
+aq
+av
+at
+at
+aH
+aM
+aO
+ap
+ak
+ak
+ak
+ak
+ak
+ak
+ao
+bl
+bl
+ao
+ao
+ak
+ak
+ak
+aO
+aX
+aX
+br
+bm
+"}
+(16,1,1) = {"
+ab
+ag
+ah
+as
+aw
+aA
+aA
+at
+aM
+aP
+ak
+ak
+aQ
+ak
+ak
+az
+ak
+ak
+bl
+bl
+ak
+ao
+ao
+ak
+ak
+aP
+aX
+aX
+aP
+bm
+"}
+(17,1,1) = {"
+ab
+ah
+af
+aq
+ax
+aw
+aF
+at
+at
+aq
+ak
+aI
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ao
+ao
+ao
+ak
+ab
+aX
+aX
+ab
+bm
+"}
+(18,1,1) = {"
+ab
+ab
+am
+aq
+av
+at
+aG
+at
+at
+aq
+aR
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aC
+ak
+ak
+ak
+ao
+ao
+ao
+ab
+aW
+aW
+ab
+bm
+"}
+(19,1,1) = {"
+ab
+ai
+af
+aq
+av
+at
+aH
+at
+aN
+aq
+ak
+ak
+ak
+az
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ao
+ao
+ab
+bo
+bp
+ab
+bm
+"}
+(20,1,1) = {"
+ab
+aj
+af
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+ak
+ak
+ak
+ak
+ak
+aI
+ak
+az
+ak
+ak
+ak
+ak
+az
+ak
+ao
+ab
+ab
+ab
+ab
+bm
+"}
+(21,1,1) = {"
+ab
+ab
+an
+ab
+ay
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aC
+ak
+ak
+ak
+ak
+ap
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ab
+bm
+bm
+"}
+(22,1,1) = {"
+aa
+ab
+ab
+ab
+ak
+ak
+aI
+ak
+ap
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+aI
+ak
+ak
+aQ
+ak
+ak
+ak
+ab
+bq
+bm
+"}
+(23,1,1) = {"
+aa
+ab
+ak
+ak
+az
+ak
+aJ
+ak
+ak
+ak
+ak
+ak
+ak
+az
+ak
+aQ
+ak
+aC
+ak
+aI
+ak
+az
+aI
+aI
+ak
+ak
+ak
+ab
+bm
+bm
+"}
+(24,1,1) = {"
+aa
+ab
+ab
+ak
+ak
+aB
+ak
+ak
+aC
+ak
+ak
+ak
+ak
+aI
+ak
+ap
+ak
+ak
+ak
+ak
+ak
+ak
+aI
+aI
+ak
+ak
+ab
+ab
+bm
+aa
+"}
+(25,1,1) = {"
+aa
+aa
+ab
+ap
+ak
+ak
+ak
+ak
+ak
+aQ
+ak
+ak
+ak
+aI
+ak
+ak
+ak
+ak
+aQ
+ak
+ak
+aB
+ak
+ak
+aC
+ak
+ab
+bm
+bm
+aa
+"}
+(26,1,1) = {"
+aa
+aa
+ab
+ab
+ak
+ak
+az
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+az
+ak
+ak
+ak
+ak
+az
+ak
+ak
+ak
+ab
+ab
+bm
+aa
+aa
+"}
+(27,1,1) = {"
+aa
+aa
+aa
+ab
+ab
+ak
+ak
+ak
+ak
+ak
+ab
+aT
+aT
+aT
+bb
+aT
+aT
+aT
+ab
+ak
+ak
+ak
+ak
+ak
+ab
+ab
+bm
+bm
+aa
+aa
+"}
+(28,1,1) = {"
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ak
+ak
+ak
+ab
+aU
+aW
+aX
+aX
+aX
+bf
+bj
+ab
+ak
+ak
+ak
+ab
+ab
+ab
+bm
+bm
+aa
+aa
+aa
+"}
+(29,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+aV
+aW
+aY
+bc
+be
+bg
+bk
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(30,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm
index 6fc910a0f98..59d066dacf2 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm
@@ -1,38 +1,979 @@
-"a" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/obj/effect/decal/remains/human,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"d" = (/turf/closed/indestructible/riveted,/area/lavaland/surface/outdoors)
-"e" = (/obj/machinery/wish_granter,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/obj/effect/decal/remains/human,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"d" = (
+/turf/closed/indestructible/riveted,
+/area/lavaland/surface/outdoors)
+"e" = (
+/obj/machinery/wish_granter,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
(1,1,1) = {"
-aaaaabbaaaaaaaaaaaaaaaaaabbbbb
-aabaaaaaaaaaaaaaaaaaaaaaabbbaa
-aaaabaaabaabbbbbbbbbbbaabbbbaa
-aaaabaaaaababcbbbaabbbaabbaaaa
-aaabbaaaaaaabbbbbaabbbaabbaaaa
-aaabbaaaaaaabbbbbaabbbaabbaaaa
-aabbbaaaaaabbbcbbbbbbabcbbaaaa
-aaaaaaaaaaabbbbbcbbbbbbbbbaaaa
-aaaaaaaaaaaabcbbbbbcbbbbbbaaaa
-aaaaaaaaaaaabbbcbbbbbbbbbbaaaa
-aaaaaabbbaacbcbbcbbbbabbbcaaaa
-aaaaaabbbaabbdddddcbbbbbbbbbba
-aaaaaabbbbabcdddddbcbbbbbbcbba
-bbaaabbbbbbbcddeddcbcbbbbbbbba
-aabbabbbcbbbbdddddcbbbbcbbbbba
-bbababbbbbbbcdddddbbbbbbbbabba
-bbbbbbbbbbbccbbbcbcbbbcbaabbba
-bcbabbcbbcbbbbcbccbbbbbbaabbba
-bbbabbbbbbbcbbbaabbabbbbaabbba
-bbabbbbbbbbbbbbaaaaaabaaaabbba
-bbabbbcbbbbbbbcbaaaaaaaaaabbaa
-abbbbbbbbbbbbbbbaaaaaaaaabbbaa
-aabbbbbbbbbbbcaaaaaaaaaaaaacaa
-aaabbbbbbbcbbbbaaaaaaaaaaaabaa
-aaabbbcbbbbbbbbbabbaaaaaaaabba
-aabbbbbbbbbbbbbbbbaaaaaaaaabaa
-aabbbbbbbcbbbbbbbbbaaaaaaaabba
-aaaaabbbbbbbbbbbacbaaaaaaaabba
-baabaabbbbbbcbbbbaaaaaaaaaabba
-aaabbbaabbbbbbbbbaaaaaaaaaabba
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+b
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+b
+b
+c
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+b
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+b
+a
+b
+b
+b
+a
+a
+b
+b
+a
+a
+b
+b
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+a
+b
+b
+"}
+(5,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+b
+"}
+(6,1,1) = {"
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+b
+"}
+(7,1,1) = {"
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+c
+b
+b
+c
+b
+b
+b
+c
+b
+b
+b
+b
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+"}
+(9,1,1) = {"
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+c
+b
+b
+b
+b
+b
+b
+b
+b
+c
+b
+b
+b
+"}
+(11,1,1) = {"
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+b
+b
+b
+b
+b
+b
+"}
+(12,1,1) = {"
+a
+a
+b
+a
+a
+a
+b
+b
+a
+a
+c
+b
+b
+b
+b
+b
+c
+b
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+"}
+(13,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+c
+b
+c
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+b
+"}
+(14,1,1) = {"
+a
+a
+b
+c
+b
+b
+b
+b
+c
+b
+c
+d
+d
+d
+d
+d
+b
+b
+b
+b
+b
+b
+c
+b
+b
+b
+b
+b
+b
+b
+"}
+(15,1,1) = {"
+a
+a
+b
+b
+b
+b
+c
+b
+b
+b
+b
+d
+d
+d
+d
+d
+b
+c
+b
+b
+c
+b
+a
+b
+b
+b
+b
+b
+b
+b
+"}
+(16,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+b
+c
+b
+d
+d
+e
+d
+d
+b
+b
+a
+a
+b
+b
+a
+a
+b
+b
+b
+b
+b
+b
+"}
+(17,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+c
+b
+b
+c
+d
+d
+d
+d
+d
+c
+c
+a
+a
+a
+a
+a
+a
+a
+b
+b
+a
+b
+b
+"}
+(18,1,1) = {"
+a
+a
+b
+a
+a
+a
+b
+b
+b
+b
+b
+d
+d
+d
+d
+d
+b
+c
+b
+a
+a
+a
+a
+a
+b
+b
+b
+c
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+b
+a
+a
+a
+b
+b
+b
+b
+b
+c
+b
+c
+c
+b
+c
+b
+b
+a
+a
+a
+a
+a
+b
+a
+b
+b
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+c
+b
+b
+b
+c
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(21,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(22,1,1) = {"
+a
+a
+b
+b
+b
+b
+a
+b
+b
+b
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(23,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(24,1,1) = {"
+a
+a
+a
+a
+a
+a
+c
+b
+b
+b
+b
+b
+b
+b
+c
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(26,1,1) = {"
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(27,1,1) = {"
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+b
+b
+a
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(28,1,1) = {"
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+b
+b
+b
+b
+b
+b
+b
+"}
+(29,1,1) = {"
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+b
+a
+b
+b
+b
+b
+"}
+(30,1,1) = {"
+b
+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/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
new file mode 100644
index 00000000000..cb50d1885d0
--- /dev/null
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
@@ -0,0 +1,434 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"c" = (
+/turf/open/floor/plating/lava/smooth/lava_land_surface,
+/area/ruin/unpowered)
+"d" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/wall/mineral/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/unpowered)
+"e" = (
+/obj/effect/decal/remains/human,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered)
+"f" = (
+/obj/structure/cult/pylon,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered)
+"g" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/step_trigger/thrower{
+ name = "south";
+ tiles = 5
+ },
+/obj/effect/step_trigger/sound_effect{
+ name = "turn around";
+ sound = 'sound/hallucinations/turn_around1.ogg';
+ triggerer_only = 1
+ },
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"h" = (
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"i" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"j" = (
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/turf/closed/wall/mineral/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/unpowered)
+"k" = (
+/obj/effect/decal/remains/human,
+/obj/item/weapon/melee/cultblade,
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"l" = (
+/obj/effect/decal/remains/human,
+/obj/item/clothing/shoes/cult,
+/obj/item/clothing/suit/cultrobes,
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"m" = (
+/obj/effect/decal/remains/human,
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"n" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/step_trigger/thrower{
+ direction = 4;
+ name = "east";
+ tiles = 5
+ },
+/obj/effect/step_trigger/sound_effect{
+ name = "turn around";
+ sound = 'sound/hallucinations/turn_around1.ogg';
+ triggerer_only = 1
+ },
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"o" = (
+/obj/effect/rune/narsie{
+ color = "#ff0000";
+ used = 1
+ },
+/obj/item/device/cult_shift,
+/obj/effect/decal/remains/human,
+/obj/item/weapon/melee/cultblade/dagger,
+/obj/effect/step_trigger/sound_effect{
+ happens_once = 1;
+ name = "a grave mistake";
+ sound = 'sound/hallucinations/i_see_you1.ogg';
+ triggerer_only = 1
+ },
+/obj/effect/step_trigger/message{
+ message = "You've made a grave mistake, haven't you?";
+ name = "ohfuck"
+ },
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"p" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/step_trigger/thrower{
+ direction = 8;
+ name = "west";
+ tiles = 5
+ },
+/obj/effect/step_trigger/sound_effect{
+ name = "turn around";
+ sound = 'sound/hallucinations/turn_around1.ogg';
+ triggerer_only = 1
+ },
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"q" = (
+/obj/effect/decal/remains/human,
+/obj/item/clothing/shoes/cult,
+/obj/item/clothing/suit/cultrobes,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"r" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/step_trigger/thrower{
+ direction = 1;
+ name = "north";
+ tiles = 5
+ },
+/obj/effect/step_trigger/sound_effect{
+ name = "turn around";
+ sound = 'sound/hallucinations/turn_around1.ogg';
+ triggerer_only = 1
+ },
+/turf/open/floor/plasteel/cult{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"s" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+c
+b
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+d
+e
+c
+s
+c
+b
+b
+b
+c
+s
+c
+s
+d
+a
+"}
+(3,1,1) = {"
+a
+e
+f
+s
+d
+c
+c
+n
+c
+c
+d
+e
+f
+s
+a
+"}
+(4,1,1) = {"
+a
+c
+s
+c
+c
+c
+c
+b
+c
+c
+c
+c
+e
+c
+a
+"}
+(5,1,1) = {"
+a
+s
+d
+c
+c
+b
+b
+b
+b
+b
+c
+c
+d
+s
+a
+"}
+(6,1,1) = {"
+a
+c
+c
+c
+b
+b
+l
+j
+k
+b
+b
+c
+c
+c
+a
+"}
+(7,1,1) = {"
+b
+b
+c
+c
+h
+i
+b
+b
+b
+l
+b
+c
+c
+b
+b
+"}
+(8,1,1) = {"
+c
+b
+g
+b
+b
+j
+b
+o
+b
+j
+b
+b
+r
+b
+c
+"}
+(9,1,1) = {"
+b
+b
+c
+c
+b
+k
+b
+b
+b
+m
+b
+c
+c
+b
+b
+"}
+(10,1,1) = {"
+a
+c
+c
+c
+h
+b
+m
+j
+q
+b
+b
+c
+c
+c
+a
+"}
+(11,1,1) = {"
+a
+s
+d
+c
+c
+b
+b
+b
+b
+b
+c
+c
+d
+s
+a
+"}
+(12,1,1) = {"
+a
+c
+s
+c
+c
+c
+c
+b
+c
+c
+c
+c
+e
+c
+a
+"}
+(13,1,1) = {"
+a
+e
+f
+s
+d
+c
+c
+p
+c
+c
+d
+e
+f
+s
+a
+"}
+(14,1,1) = {"
+a
+d
+e
+c
+s
+c
+b
+b
+b
+c
+s
+c
+s
+d
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+c
+b
+a
+a
+a
+a
+a
+a
+"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
index 700ec9f8452..faf5d439792 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm
@@ -1,39 +1,349 @@
-"a" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/turf/open/floor/plating/lava/smooth/lava_land_surface,/area/lavaland/surface/outdoors)
-"d" = (/turf/closed/wall/rust{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"e" = (/obj/structure/mirror{desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!"; icon_state = "mirror_broke"; pixel_x = -28; shattered = 1},/obj/item/clothing/suit/hooded/bloated_human,/obj/effect/decal/cleanable/blood,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"f" = (/obj/structure/mirror{desc = "Oh no, seven years of bad luck!"; icon_state = "mirror_broke"; pixel_x = 28; shattered = 1},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth; icon_state = "panelscorched"},/area/ruin/unpowered)
-"g" = (/obj/effect/decal/cleanable/blood/tracks,/obj/structure/mirror{desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!"; icon_state = "mirror_broke"; pixel_x = -28; shattered = 1},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"h" = (/obj/effect/decal/cleanable/blood,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"i" = (/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"j" = (/obj/effect/decal/cleanable/blood/splatter,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"k" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28; shattered = 1},/obj/item/weapon/knife/envy,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"l" = (/obj/structure/mirror{desc = "Oh no, seven years of bad luck!"; icon_state = "mirror_broke"; pixel_x = 28; shattered = 1},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"m" = (/obj/structure/mirror{desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!"; icon_state = "mirror_broke"; pixel_x = -28; shattered = 1},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"n" = (/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth; broken = 1; icon_state = "platingdmg2"},/area/ruin/unpowered)
-"o" = (/obj/structure/mirror{desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!"; icon_state = "mirror_broke"; pixel_x = -28; shattered = 1},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth; broken = 1; icon_state = "platingdmg1"},/area/ruin/unpowered)
-"p" = (/obj/machinery/door/airlock/hatch,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/turf/open/floor/plating/lava/smooth/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"d" = (
+/turf/closed/wall/rust{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"e" = (
+/obj/structure/mirror{
+ desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
+ icon_state = "mirror_broke";
+ pixel_x = -28;
+ shattered = 1
+ },
+/obj/item/clothing/suit/hooded/bloated_human,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"f" = (
+/obj/structure/mirror{
+ desc = "Oh no, seven years of bad luck!";
+ icon_state = "mirror_broke";
+ pixel_x = 28;
+ shattered = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ icon_state = "panelscorched"
+ },
+/area/ruin/unpowered)
+"g" = (
+/obj/effect/decal/cleanable/blood/tracks,
+/obj/structure/mirror{
+ desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
+ icon_state = "mirror_broke";
+ pixel_x = -28;
+ shattered = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"h" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"i" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"j" = (
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"k" = (
+/obj/structure/mirror{
+ icon_state = "mirror_broke";
+ pixel_y = 28;
+ shattered = 1
+ },
+/obj/item/weapon/kitchen/knife/envy,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"l" = (
+/obj/structure/mirror{
+ desc = "Oh no, seven years of bad luck!";
+ icon_state = "mirror_broke";
+ pixel_x = 28;
+ shattered = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"m" = (
+/obj/structure/mirror{
+ desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
+ icon_state = "mirror_broke";
+ pixel_x = -28;
+ shattered = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"n" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ broken = 1;
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"o" = (
+/obj/structure/mirror{
+ desc = "This mirror has been shattered. It looks like the bad luck energies spilling from it are taking immediate effect on your surroundings!";
+ icon_state = "mirror_broke";
+ pixel_x = -28;
+ shattered = 1
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/ruin/unpowered)
+"p" = (
+/obj/machinery/door/airlock/hatch,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
(1,1,1) = {"
-aabcccccbb
-aaccdddccb
-accdddddcc
-acdddddddc
-acdddddddc
-acdedddfdc
-acdghdijdc
-acdghkildc
-acdgiiildc
-acdmiijldc
-acdmiiildc
-acdmiinldc
-acdmiiildc
-acdmhiildc
-acdoiiildc
-acdmiiildc
-acdjiiijdc
-acdddpdddc
-acccaacccc
-aaaaaaaaaa
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+a
+"}
+(3,1,1) = {"
+b
+c
+c
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+c
+a
+"}
+(4,1,1) = {"
+c
+c
+d
+d
+d
+e
+g
+g
+g
+m
+m
+m
+m
+m
+o
+m
+j
+d
+c
+a
+"}
+(5,1,1) = {"
+c
+d
+d
+d
+d
+d
+h
+h
+i
+i
+i
+i
+i
+h
+i
+i
+i
+d
+a
+a
+"}
+(6,1,1) = {"
+c
+d
+d
+d
+d
+d
+d
+k
+i
+i
+i
+i
+i
+i
+i
+i
+i
+p
+a
+a
+"}
+(7,1,1) = {"
+c
+d
+d
+d
+d
+d
+i
+i
+i
+j
+i
+n
+i
+i
+i
+i
+i
+d
+c
+a
+"}
+(8,1,1) = {"
+c
+c
+d
+d
+d
+f
+j
+l
+l
+l
+l
+l
+l
+l
+l
+l
+j
+d
+c
+a
+"}
+(9,1,1) = {"
+b
+c
+c
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+c
+a
+"}
+(10,1,1) = {"
+b
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_fountain_hall.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_fountain_hall.dmm
index 6288a076004..b367a068f15 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_fountain_hall.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_fountain_hall.dmm
@@ -1,27 +1,171 @@
-"a" = (/turf/template_noop,/area/template_noop)
-"b" = (/turf/closed/wall/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"c" = (/obj/structure/divine/healingfountain/anyone,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"d" = (/obj/structure/divine/conduit,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"e" = (/obj/structure/divine/sacrificealtar,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"f" = (/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"g" = (/mob/living/simple_animal/butterfly,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"h" = (/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1},/area/ruin/unpowered)
+//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/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"c" = (
+/obj/structure/divine/healingfountain/anyone,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"d" = (
+/obj/structure/divine/conduit,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"e" = (
+/obj/structure/divine/sacrificealtar,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"f" = (
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"g" = (
+/mob/living/simple_animal/butterfly,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"h" = (
+/obj/structure/fans/tiny/invisible,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
(1,1,1) = {"
-aabbbaa
-bbbcbbb
-bdefedb
-bfgffgb
-bfffffb
-bdfffdb
-bfgfffb
-bfffgfb
-bdfffdb
-bfffffb
-bfffffb
-bdgffdb
-bfffffb
-bfgffgb
-bdfffdb
-bbbhbbb
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+"}
+(2,1,1) = {"
+a
+b
+d
+f
+f
+d
+f
+f
+d
+f
+f
+d
+f
+f
+d
+b
+"}
+(3,1,1) = {"
+b
+b
+e
+g
+f
+f
+g
+f
+f
+f
+f
+g
+f
+g
+f
+b
+"}
+(4,1,1) = {"
+b
+c
+f
+f
+f
+f
+f
+f
+f
+f
+f
+f
+f
+f
+f
+h
+"}
+(5,1,1) = {"
+b
+b
+e
+f
+f
+f
+f
+g
+f
+f
+f
+f
+f
+f
+f
+b
+"}
+(6,1,1) = {"
+a
+b
+d
+g
+f
+d
+f
+f
+d
+f
+f
+d
+f
+g
+d
+b
+"}
+(7,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm
index 7b82523bef6..1475bc151b1 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm
@@ -1,40 +1,531 @@
-"a" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/turf/open/floor/plating/lava/smooth/lava_land_surface,/area/lavaland/surface/outdoors)
-"d" = (/turf/closed/indestructible/riveted/uranium{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"e" = (/turf/open/floor/plating/lava/smooth,/area/ruin/powered)
-"f" = (/obj/item/weapon/reagent_containers/syringe/gluttony,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"g" = (/obj/effect/gluttony,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"h" = (/obj/item/weapon/veilrender/vealrender,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"i" = (/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"j" = (/obj/item/trash/plate,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"k" = (/obj/machinery/door/airlock/uranium,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1},/area/ruin/powered)
-"l" = (/obj/item/trash/candy,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"m" = (/obj/item/trash/raisins,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"n" = (/obj/item/trash/pistachios,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"o" = (/obj/item/trash/popcorn,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"p" = (/obj/item/trash/semki,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"q" = (/obj/item/trash/syndi_cakes,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/turf/open/floor/plating/lava/smooth/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"d" = (
+/turf/closed/indestructible/riveted/uranium{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"e" = (
+/turf/open/floor/plating/lava/smooth,
+/area/ruin/powered)
+"f" = (
+/obj/item/weapon/reagent_containers/syringe/gluttony,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"g" = (
+/obj/effect/gluttony,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"h" = (
+/obj/item/weapon/veilrender/vealrender,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"i" = (
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"j" = (
+/obj/item/trash/plate,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"k" = (
+/obj/machinery/door/airlock/uranium,
+/obj/structure/fans/tiny/invisible,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"l" = (
+/obj/item/trash/candy,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"m" = (
+/obj/item/trash/raisins,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"n" = (
+/obj/item/trash/pistachios,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"o" = (
+/obj/item/trash/popcorn,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"p" = (
+/obj/item/trash/semki,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"q" = (
+/obj/item/trash/syndi_cakes,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
(1,1,1) = {"
-aabbbaaabaaaaaabbaaa
-aaaababbbbbbbbbbbaaa
-aaaaaabcccccccbbbaaa
-bbaaaabcdddddcbaaaaa
-bbbbaabcdefedcbbbbaa
-abbbbbbcddgddcbbbbaa
-abbbbbbcdgggdcbbbbaa
-bbccccccdgggdccccccb
-abcddddddgggddddddcb
-bbcdhiiiggggggijidcb
-bbbkiilimgniiiginkbb
-bbcdoiimiiigiiiiidcb
-bbcddddddpiiddddddcb
-bbccccccdiildccccccb
-bbbbbbbcdjiidcbbbbba
-bbbaabbcdliidcbbbbba
-aaaaabbcdiiqdcbbbbab
-aaaaabbcddkddcbaaaaa
-aaaaabbcccbcccbaaaaa
-aaaaaaabbbbbbbbaaaaa
+a
+a
+a
+b
+b
+a
+a
+b
+a
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+b
+a
+a
+a
+b
+b
+b
+c
+c
+c
+b
+c
+c
+c
+b
+b
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+b
+a
+a
+a
+b
+b
+b
+c
+d
+d
+k
+d
+d
+c
+b
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+b
+b
+a
+a
+a
+b
+b
+c
+d
+h
+i
+o
+d
+c
+b
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+a
+b
+b
+c
+d
+i
+i
+i
+d
+c
+b
+b
+b
+b
+b
+a
+"}
+(7,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+c
+d
+i
+l
+i
+d
+c
+b
+b
+b
+b
+b
+a
+"}
+(8,1,1) = {"
+a
+b
+c
+c
+c
+c
+c
+c
+d
+i
+i
+m
+d
+c
+c
+c
+c
+c
+c
+b
+"}
+(9,1,1) = {"
+b
+b
+c
+d
+d
+d
+d
+d
+d
+g
+m
+i
+d
+d
+d
+d
+d
+d
+c
+b
+"}
+(10,1,1) = {"
+a
+b
+c
+d
+e
+d
+g
+g
+g
+g
+g
+i
+p
+i
+j
+l
+i
+d
+c
+b
+"}
+(11,1,1) = {"
+a
+b
+c
+d
+f
+g
+g
+g
+g
+g
+n
+i
+i
+i
+i
+i
+i
+k
+b
+b
+"}
+(12,1,1) = {"
+a
+b
+c
+d
+e
+d
+g
+g
+g
+g
+i
+g
+i
+l
+i
+i
+q
+d
+c
+b
+"}
+(13,1,1) = {"
+a
+b
+c
+d
+d
+d
+d
+d
+d
+g
+i
+i
+d
+d
+d
+d
+d
+d
+c
+b
+"}
+(14,1,1) = {"
+a
+b
+c
+c
+c
+c
+c
+c
+d
+g
+i
+i
+d
+c
+c
+c
+c
+c
+c
+b
+"}
+(15,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+c
+d
+i
+g
+i
+d
+c
+b
+b
+b
+b
+b
+b
+"}
+(16,1,1) = {"
+b
+b
+b
+a
+b
+b
+b
+c
+d
+j
+i
+i
+d
+c
+b
+b
+b
+a
+a
+a
+"}
+(17,1,1) = {"
+b
+b
+b
+a
+b
+b
+b
+c
+d
+i
+n
+i
+d
+c
+b
+b
+b
+a
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+b
+b
+b
+c
+d
+d
+k
+d
+d
+c
+b
+b
+b
+a
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+c
+c
+c
+b
+c
+c
+c
+b
+b
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+a
+a
+b
+a
+a
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
index d41cfaa3a68..c4747776f39 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm
@@ -1,55 +1,707 @@
-"a" = (/turf/template_noop,/area/template_noop)
-"b" = (/turf/closed/wall/shuttle/smooth/nodiagonal{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"c" = (/obj/structure/closet/crate,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/storage/bag/ore,/obj/item/weapon/storage/bag/ore,/obj/item/device/mining_scanner,/obj/item/device/flashlight/lantern,/obj/item/weapon/card/id/mining,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"d" = (/obj/structure/closet/crate,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/storage/bag/ore,/obj/item/weapon/storage/bag/ore,/obj/item/device/mining_scanner,/obj/item/device/flashlight/lantern,/obj/item/weapon/card/id/mining,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"e" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"f" = (/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"g" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"h" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=14;n2=23;TEMP=300"},/area/ruin/powered/golem_ship)
-"i" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=14;n2=23;TEMP=300"},/area/ruin/powered/golem_ship)
-"j" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"k" = (/obj/machinery/computer/arcade/battle,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"l" = (/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"m" = (/obj/effect/mob_spawn/human/golem/adamantine,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"n" = (/obj/machinery/mineral/equipment_vendor/golem,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"o" = (/obj/item/weapon/resonator,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"p" = (/obj/machinery/mineral/ore_redemption,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"q" = (/obj/structure/statue/gold/rd,/obj/structure/window/reinforced{dir = 4; name = "shrine of the liberator"; pixel_x = 0},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"r" = (/obj/machinery/computer/shuttle,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"s" = (/obj/machinery/bluespace_beacon,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"t" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"u" = (/obj/structure/table/wood,/obj/item/weapon/bedsheet/rd{desc = "Majestic."; layer = 3; name = "Royal Cape of the Liberator"; pixel_x = 5; pixel_y = 9},/obj/item/weapon/book/manual/research_and_development{name = "Sacred Text of the Liberator"; pixel_x = -4; pixel_y = 3},/obj/structure/window/reinforced{dir = 4; name = "shrine of the liberator"; pixel_x = 0},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"v" = (/obj/item/weapon/resonator/upgraded,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"w" = (/obj/machinery/autolathe,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"x" = (/obj/structure/table/wood,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"y" = (/obj/machinery/computer/arcade/orion_trail,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"z" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"A" = (/obj/structure/table/wood,/obj/item/weapon/surgical_drapes{pixel_x = 15},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/fire,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"B" = (/obj/item/weapon/storage/firstaid/fire,/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/fire,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"C" = (/obj/item/weapon/storage/firstaid/brute,/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/brute,/obj/item/areaeditor/blueprints{desc = "Use to build new structures in the wastes."; name = "land claim"},/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"D" = (/obj/item/weapon/storage/firstaid/brute,/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/disk/design_disk/golem_shell,/turf/open/floor/plasteel/shuttle/purple{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"E" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
-"F" = (/obj/structure/ore_box,/turf/open/floor/plating{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered/golem_ship)
+//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/titanium/nodiagonal{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"c" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/storage/bag/ore,
+/obj/item/weapon/storage/bag/ore,
+/obj/item/device/mining_scanner,
+/obj/item/device/flashlight/lantern,
+/obj/item/weapon/card/id/mining,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"d" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/storage/bag/ore,
+/obj/item/weapon/storage/bag/ore,
+/obj/item/device/mining_scanner,
+/obj/item/device/flashlight/lantern,
+/obj/item/weapon/card/id/mining,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"e" = (
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"f" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"g" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"h" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/powered/golem_ship)
+"i" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 8
+ },
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/powered/golem_ship)
+"j" = (
+/obj/machinery/door/airlock/shuttle,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"k" = (
+/obj/machinery/computer/arcade/battle,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"l" = (
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"m" = (
+/obj/effect/mob_spawn/human/golem/adamantine,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"n" = (
+/obj/machinery/mineral/equipment_vendor/golem,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"o" = (
+/obj/item/weapon/resonator,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"p" = (
+/obj/machinery/mineral/ore_redemption,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"q" = (
+/obj/structure/statue/gold/rd,
+/obj/structure/window/reinforced{
+ dir = 4;
+ name = "shrine of the liberator";
+ pixel_x = 0
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"r" = (
+/obj/machinery/computer/shuttle,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"s" = (
+/obj/machinery/bluespace_beacon,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"t" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"u" = (
+/obj/structure/table/wood,
+/obj/item/weapon/bedsheet/rd{
+ desc = "Majestic.";
+ layer = 3;
+ name = "Royal Cape of the Liberator";
+ pixel_x = 5;
+ pixel_y = 9
+ },
+/obj/item/weapon/book/manual/research_and_development{
+ name = "Sacred Text of the Liberator";
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ name = "shrine of the liberator";
+ pixel_x = 0
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"v" = (
+/obj/item/weapon/resonator/upgraded,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"w" = (
+/obj/machinery/autolathe,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"x" = (
+/obj/structure/table/wood,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"y" = (
+/obj/machinery/computer/arcade/orion_trail,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"z" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"A" = (
+/obj/structure/table/wood,
+/obj/item/weapon/surgical_drapes{
+ pixel_x = 15
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/fire,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"B" = (
+/obj/item/weapon/storage/firstaid/fire,
+/obj/structure/table/wood,
+/obj/item/weapon/storage/firstaid/fire,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"C" = (
+/obj/item/weapon/storage/firstaid/brute,
+/obj/structure/table/wood,
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/areaeditor/blueprints{
+ desc = "Use to build new structures in the wastes.";
+ name = "land claim"
+ },
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"D" = (
+/obj/item/weapon/storage/firstaid/brute,
+/obj/structure/table/wood,
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/disk/design_disk/golem_shell,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"E" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"F" = (
+/obj/structure/ore_box,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
+"G" = (
+/turf/closed/wall/mineral/titanium,
+/area/ruin/powered/golem_ship)
+"H" = (
+/obj/machinery/door/airlock/shuttle,
+/obj/structure/fans/tiny,
+/turf/open/floor/mineral/titanium/purple{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered/golem_ship)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaa
-aaaaabbbbbbbbbbbbbbb
-aaaaabccccccdddefghi
-aaaaabfffffffffffghi
-aabbbbjjbbbbjjbbbbbb
-aabkllllmmbllllllnhi
-aabllllloojlllllllhi
-bbbjjbbbbbblllllpbbb
-bqrllllllljlslllljtj
-bulllllllljlllllljlj
-bbbjjbbbbbbllllvwbbb
-aabllllloojllllllxhi
-aabyllllmmbzllABCDhi
-aabbbbjjbbbbjjbbbbbb
-aaaaabfffffffffffEhi
-aaaaabFFFFFFFefffEhi
-aaaaabbbbbbbbbbbbbbb
-aaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaa
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+q
+u
+G
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+b
+b
+b
+b
+r
+l
+G
+b
+b
+b
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+b
+k
+l
+j
+l
+l
+j
+l
+y
+b
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+a
+b
+l
+l
+j
+l
+l
+j
+l
+l
+b
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+b
+b
+b
+b
+l
+l
+b
+l
+l
+G
+l
+l
+b
+b
+b
+b
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+b
+c
+f
+j
+l
+l
+b
+l
+l
+G
+l
+l
+j
+f
+F
+b
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+b
+c
+f
+j
+l
+l
+b
+l
+l
+G
+l
+l
+j
+f
+F
+b
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+b
+c
+f
+b
+m
+o
+b
+l
+l
+G
+o
+m
+b
+f
+F
+b
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+b
+c
+f
+b
+m
+o
+b
+l
+l
+G
+o
+m
+b
+f
+F
+b
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+b
+c
+f
+b
+b
+j
+b
+j
+j
+G
+j
+b
+b
+f
+F
+b
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+b
+c
+f
+b
+l
+l
+l
+l
+l
+l
+l
+z
+b
+f
+F
+b
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+b
+d
+f
+j
+l
+l
+l
+s
+l
+l
+l
+l
+j
+f
+F
+b
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+b
+d
+f
+j
+l
+l
+l
+l
+l
+l
+l
+l
+j
+f
+e
+b
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+b
+d
+f
+b
+l
+l
+l
+l
+l
+l
+l
+A
+b
+f
+f
+b
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+b
+e
+f
+b
+l
+l
+l
+l
+l
+v
+l
+B
+b
+f
+f
+b
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+b
+f
+f
+b
+l
+l
+p
+l
+l
+w
+l
+C
+b
+f
+f
+b
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+b
+g
+g
+b
+n
+l
+b
+j
+j
+b
+x
+D
+b
+E
+E
+b
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+b
+h
+h
+b
+h
+h
+b
+t
+l
+b
+h
+h
+b
+h
+h
+b
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+b
+i
+i
+b
+i
+i
+b
+H
+H
+b
+i
+i
+b
+i
+i
+b
+a
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm
index 542e27d84dc..8a69cfab7e0 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm
@@ -1,43 +1,571 @@
-"a" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/turf/open/floor/plating/lava/smooth/lava_land_surface,/area/lavaland/surface/outdoors)
-"d" = (/turf/closed/wall/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"e" = (/obj/structure/table/wood/poker,/obj/item/weapon/gun/projectile/revolver/russian/soul,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth; icon_state = "carpetsymbol"},/area/ruin/powered)
-"f" = (/obj/structure/cursed_slot_machine,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth; icon_state = "carpetsymbol"},/area/ruin/powered)
-"g" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/mythril,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth; icon_state = "carpetsymbol"},/area/ruin/powered)
-"h" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/diamond,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth; icon_state = "carpetsymbol"},/area/ruin/powered)
-"i" = (/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth; icon_state = "carpetsymbol"},/area/ruin/powered)
-"j" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/adamantine,/turf/open/floor/carpet{baseturf = /turf/open/floor/plating/lava/smooth; icon_state = "carpetsymbol"},/area/ruin/powered)
-"k" = (/obj/machinery/computer/arcade/battle{emagged = 1},/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"l" = (/obj/item/weapon/coin/gold,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"m" = (/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"n" = (/obj/structure/table/wood/poker,/obj/item/stack/spacecash/c1000,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"o" = (/obj/item/weapon/storage/bag/money,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"p" = (/obj/structure/table/wood/poker,/obj/item/weapon/ore/gold,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"q" = (/obj/structure/table/wood/poker,/obj/item/stack/spacecash/c20,/obj/item/stack/spacecash/c50,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"r" = (/obj/structure/table/wood/poker,/obj/item/stack/spacecash/c500,/obj/item/stack/spacecash/c100,/obj/item/stack/spacecash/c1000,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"s" = (/obj/structure/table/wood/poker,/obj/item/stack/spacecash/c200,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"t" = (/obj/machinery/door/airlock/gold,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1},/area/ruin/powered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/turf/open/floor/plating/lava/smooth/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"d" = (
+/turf/closed/wall/mineral/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"e" = (
+/obj/structure/table/wood/poker,
+/obj/item/weapon/gun/projectile/revolver/russian/soul,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ icon_state = "carpetsymbol"
+ },
+/area/ruin/powered)
+"f" = (
+/obj/structure/cursed_slot_machine,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ icon_state = "carpetsymbol"
+ },
+/area/ruin/powered)
+"g" = (
+/obj/structure/table/wood/poker,
+/obj/item/weapon/coin/mythril,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ icon_state = "carpetsymbol"
+ },
+/area/ruin/powered)
+"h" = (
+/obj/structure/table/wood/poker,
+/obj/item/weapon/coin/diamond,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ icon_state = "carpetsymbol"
+ },
+/area/ruin/powered)
+"i" = (
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ icon_state = "carpetsymbol"
+ },
+/area/ruin/powered)
+"j" = (
+/obj/structure/table/wood/poker,
+/obj/item/weapon/coin/adamantine,
+/turf/open/floor/carpet{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ icon_state = "carpetsymbol"
+ },
+/area/ruin/powered)
+"k" = (
+/obj/machinery/computer/arcade/battle{
+ emagged = 1
+ },
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"l" = (
+/obj/item/weapon/coin/gold,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"m" = (
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"n" = (
+/obj/structure/table/wood/poker,
+/obj/item/stack/spacecash/c1000,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"o" = (
+/obj/item/weapon/storage/bag/money,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"p" = (
+/obj/structure/table/wood/poker,
+/obj/item/weapon/ore/gold,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"q" = (
+/obj/structure/table/wood/poker,
+/obj/item/stack/spacecash/c20,
+/obj/item/stack/spacecash/c50,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"r" = (
+/obj/structure/table/wood/poker,
+/obj/item/stack/spacecash/c500,
+/obj/item/stack/spacecash/c100,
+/obj/item/stack/spacecash/c1000,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"s" = (
+/obj/structure/table/wood/poker,
+/obj/item/stack/spacecash/c200,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"t" = (
+/obj/machinery/door/airlock/gold,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ blocks_air = 1
+ },
+/area/ruin/powered)
(1,1,1) = {"
-aaaaabbaabaaabbbaaaa
-abbaaaaaabaaabbbaaaa
-abbbaaaabbbaaaabbaaa
-aabbbaaaaaaaaaabbbba
-aabbbacccccccaaaabbb
-aabaaacdddddcaaaabbb
-aaaaaccdefgdccaaabba
-aaaaccddhijddccaabaa
-aaaacddklmlkddcaabaa
-bbbacdnomlmopdcaabaa
-bbaacdqlmmmmrdcaabba
-abaacdsmmollrdcaabba
-aaaacdddlmmdddcaabbb
-aaaacccdmmldcccaaabb
-aaaaaacdlmodcaaaaaab
-aaaaaacddmddcaaaabbb
-aabbaaccdtdccaaaabbb
-abbbaaaaaaaaaaaaabbb
-abbbbbaaaaaaaaabbbbb
-bbbbaaaaaaaaaaabbbbb
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+b
+"}
+(2,1,1) = {"
+a
+b
+b
+a
+a
+a
+a
+a
+a
+b
+b
+b
+a
+a
+a
+a
+a
+b
+b
+b
+"}
+(3,1,1) = {"
+a
+b
+b
+b
+b
+b
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+"}
+(4,1,1) = {"
+a
+a
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+"}
+(5,1,1) = {"
+a
+a
+a
+b
+b
+a
+a
+c
+c
+c
+c
+c
+c
+c
+a
+a
+a
+a
+b
+a
+"}
+(6,1,1) = {"
+b
+a
+a
+a
+a
+a
+c
+c
+d
+d
+d
+d
+d
+c
+a
+a
+a
+a
+b
+a
+"}
+(7,1,1) = {"
+b
+a
+a
+a
+c
+c
+c
+d
+d
+n
+q
+s
+d
+c
+c
+c
+c
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+c
+d
+d
+d
+k
+o
+l
+m
+d
+d
+d
+d
+c
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+b
+a
+c
+d
+e
+h
+l
+m
+m
+m
+l
+m
+l
+d
+d
+a
+a
+a
+"}
+(10,1,1) = {"
+b
+b
+b
+a
+c
+d
+f
+i
+m
+l
+m
+o
+m
+m
+m
+m
+t
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+b
+a
+c
+d
+g
+j
+l
+m
+m
+l
+m
+l
+o
+d
+d
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+c
+d
+d
+d
+k
+o
+m
+l
+d
+d
+d
+d
+c
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+c
+c
+c
+d
+d
+p
+r
+r
+d
+c
+c
+c
+c
+a
+a
+a
+"}
+(14,1,1) = {"
+b
+b
+a
+a
+a
+a
+c
+c
+d
+d
+d
+d
+d
+c
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+b
+b
+a
+a
+a
+a
+a
+c
+c
+c
+c
+c
+c
+c
+a
+a
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+"}
+(17,1,1) = {"
+a
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+"}
+(18,1,1) = {"
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+b
+b
+b
+b
+b
+"}
+(19,1,1) = {"
+a
+a
+a
+b
+b
+b
+b
+a
+a
+a
+b
+b
+b
+b
+a
+b
+b
+b
+b
+b
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+b
+b
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
new file mode 100644
index 00000000000..2bca5b1fa1d
--- /dev/null
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
@@ -0,0 +1,526 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/ruin/powered)
+"c" = (
+/turf/closed/wall/mineral/iron{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/powered)
+"d" = (
+/obj/item/clothing/head/helmet/space/orange,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plating/asteroid/basalt,
+/area/ruin/powered)
+"e" = (
+/obj/item/clothing/suit/space/orange,
+/turf/open/floor/plating/asteroid/basalt,
+/area/ruin/powered)
+"f" = (
+/turf/open/floor/plating/asteroid/basalt,
+/area/ruin/powered)
+"g" = (
+/turf/open/floor/plating/asteroid{
+ baseturf = /turf/open/floor/plating/asteroid/basalt;
+ name = "dirt"
+ },
+/area/ruin/powered)
+"h" = (
+/obj/item/weapon/shovel,
+/turf/open/floor/plating/asteroid{
+ baseturf = /turf/open/floor/plating/asteroid/basalt;
+ name = "dirt"
+ },
+/area/ruin/powered)
+"i" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plating/asteroid{
+ baseturf = /turf/open/floor/plating/asteroid/basalt;
+ name = "dirt"
+ },
+/area/ruin/powered)
+"j" = (
+/obj/structure/sink/puddle,
+/turf/open/floor/plating/asteroid{
+ baseturf = /turf/open/floor/plating/asteroid/basalt;
+ name = "dirt"
+ },
+/area/ruin/powered)
+"k" = (
+/obj/effect/glowshroom/single,
+/turf/open/floor/plating/asteroid{
+ baseturf = /turf/open/floor/plating/asteroid/basalt;
+ name = "dirt"
+ },
+/area/ruin/powered)
+"l" = (
+/obj/item/weapon/storage/toolbox/emergency,
+/turf/open/floor/plating/asteroid{
+ baseturf = /turf/open/floor/plating/asteroid/basalt;
+ name = "dirt"
+ },
+/area/ruin/powered)
+"m" = (
+/obj/structure/rack,
+/obj/item/seeds/reishi,
+/obj/item/seeds/plump,
+/obj/item/seeds/plump,
+/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom,
+/turf/open/floor/plating/asteroid/basalt,
+/area/ruin/powered)
+"n" = (
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/powered)
+"o" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/powered)
+"p" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/bag/ore,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plating/asteroid/basalt,
+/area/ruin/powered)
+"q" = (
+/obj/effect/glowshroom/single,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/powered)
+"r" = (
+/obj/structure/rack,
+/obj/item/weapon/pickaxe/emergency,
+/obj/item/weapon/tank/internals/oxygen,
+/turf/open/floor/plating/asteroid/basalt,
+/area/ruin/powered)
+"s" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"t" = (
+/turf/closed/wall/shuttle/survival/pod{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"u" = (
+/obj/structure/bed/pod,
+/obj/item/weapon/bedsheet/black,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/powered)
+"v" = (
+/obj/structure/fans,
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"w" = (
+/obj/machinery/smartfridge/survival_pod,
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"x" = (
+/obj/effect/mob_spawn/human/hermit,
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"y" = (
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"z" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/tubes,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/powered)
+"A" = (
+/obj/structure/table,
+/obj/item/weapon/kitchen/knife/combat/survival,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/powered)
+"B" = (
+/obj/structure/table/survival_pod,
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"C" = (
+/obj/structure/tubes,
+/obj/item/weapon/crowbar,
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"D" = (
+/obj/effect/decal/cleanable/blood/footprints{
+ tag = "icon-blood1 (NORTH)";
+ icon_state = "blood1";
+ dir = 1
+ },
+/obj/machinery/door/airlock/survival_pod,
+/obj/structure/fans/tiny,
+/turf/open/floor/pod/dark{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"E" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4
+ },
+/turf/closed/wall/mineral/titanium/interior{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"F" = (
+/turf/closed/wall/mineral/titanium{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"G" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/wall/mineral/titanium/interior{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/powered)
+"H" = (
+/obj/machinery/door/airlock/shuttle{
+ name = "Escape Pod Airlock"
+ },
+/turf/open/floor/mineral/titanium/blue{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"I" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"J" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/powered)
+"K" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/wall/shuttle{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
+ dir = 2;
+ icon_state = "swall_f9"
+ },
+/area/ruin/powered)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+s
+s
+s
+s
+s
+s
+s
+s
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+s
+s
+s
+s
+s
+s
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+s
+s
+s
+s
+s
+s
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+s
+s
+s
+s
+s
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+a
+b
+c
+b
+t
+t
+t
+t
+t
+s
+s
+s
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+b
+b
+n
+n
+t
+v
+x
+B
+t
+s
+s
+s
+"}
+(7,1,1) = {"
+a
+a
+a
+b
+b
+m
+o
+o
+t
+w
+y
+y
+D
+s
+s
+s
+"}
+(8,1,1) = {"
+a
+b
+b
+b
+c
+f
+o
+q
+o
+o
+z
+C
+t
+s
+s
+s
+"}
+(9,1,1) = {"
+b
+b
+f
+i
+g
+f
+f
+o
+o
+o
+t
+t
+t
+s
+s
+s
+"}
+(10,1,1) = {"
+b
+d
+g
+j
+g
+g
+f
+f
+u
+o
+A
+b
+a
+s
+s
+s
+"}
+(11,1,1) = {"
+c
+e
+h
+g
+l
+c
+p
+r
+c
+c
+c
+b
+a
+a
+s
+s
+"}
+(12,1,1) = {"
+b
+b
+f
+k
+f
+b
+b
+b
+b
+a
+a
+a
+a
+E
+H
+E
+"}
+(13,1,1) = {"
+a
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+F
+I
+F
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+F
+I
+F
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+G
+J
+G
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
new file mode 100644
index 00000000000..3936fe3ad66
--- /dev/null
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm
@@ -0,0 +1,792 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/obj/structure/lattice,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"d" = (
+/turf/closed/wall{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface
+ },
+/area/ruin/unpowered)
+"e" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"f" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/box/cups,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"g" = (
+/obj/structure/reagent_dispensers/water_cooler{
+ name = "punch cooler";
+ reagent_id = "bacchus_blessing"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"h" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"i" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"j" = (
+/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/mushroom,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"k" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/pizzabox/margherita = 3, /obj/item/pizzabox/meat = 3, /obj/item/pizzabox/mushroom = 3, /obj/item/pizzabox/bomb = 1);
+ lootdoubles = 0;
+ name = "pizza spawner"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"l" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/pizzabox/margherita = 3, /obj/item/pizzabox/meat = 3, /obj/item/pizzabox/mushroom = 3, /obj/item/pizzabox/bomb = 1);
+ lootdoubles = 0;
+ name = "pizza spawner"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"m" = (
+/obj/item/chair/wood/wings,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"n" = (
+/obj/effect/glowshroom/single,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"o" = (
+/obj/item/trash/plate,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"p" = (
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"q" = (
+/obj/item/chair/wood/wings,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"r" = (
+/obj/structure/chair/wood/wings,
+/obj/effect/decal/remains/human,
+/obj/item/clothing/head/festive{
+ desc = "A festive party hat with the name 'timmy' scribbled on the front.";
+ name = "party hat"
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"s" = (
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"t" = (
+/obj/structure/chair/wood/wings,
+/obj/effect/decal/remains/human,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"u" = (
+/obj/effect/glowshroom/single,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"v" = (
+/obj/structure/lattice,
+/obj/item/chair/wood/wings,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"w" = (
+/obj/item/weapon/kitchen/fork,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"x" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/pizzabox/margherita = 3, /obj/item/pizzabox/meat = 3, /obj/item/pizzabox/mushroom = 3, /obj/item/pizzabox/bomb = 1);
+ lootdoubles = 0;
+ name = "pizza spawner"
+ },
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"y" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"z" = (
+/obj/structure/table/wood,
+/obj/effect/glowshroom/single,
+/obj/item/weapon/a_gift,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"A" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
+/obj/item/weapon/kitchen/fork,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"B" = (
+/obj/structure/lattice,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/space)
+"C" = (
+/obj/structure/chair/wood/wings{
+ tag = "icon-wooden_chair_wings (EAST)";
+ icon_state = "wooden_chair_wings";
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"D" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/margherita,
+/obj/item/trash/plate,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"E" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/meat,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"F" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/store/cake/birthday,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"G" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"H" = (
+/obj/item/chair/wood/wings,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"I" = (
+/obj/item/weapon/kitchen/fork,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"J" = (
+/obj/effect/glowshroom/single,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"K" = (
+/obj/structure/chair/wood/wings{
+ tag = "icon-wooden_chair_wings (NORTH)";
+ icon_state = "wooden_chair_wings";
+ dir = 1
+ },
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"L" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"M" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/a_gift,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"N" = (
+/obj/structure/lattice,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"O" = (
+/obj/item/weapon/kitchen/knife,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"P" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"Q" = (
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/asteroid/basalt/lava_land_surface;
+ initial_gas_mix = "o2=14;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+b
+b
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+c
+b
+b
+b
+b
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+b
+c
+c
+e
+e
+c
+c
+b
+b
+b
+a
+a
+"}
+(5,1,1) = {"
+a
+b
+b
+b
+b
+d
+b
+c
+c
+e
+h
+h
+e
+Q
+e
+d
+b
+b
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+b
+b
+b
+d
+b
+m
+e
+w
+h
+w
+h
+h
+e
+d
+b
+b
+b
+a
+"}
+(7,1,1) = {"
+a
+a
+b
+b
+b
+d
+f
+n
+h
+h
+c
+e
+M
+e
+c
+b
+b
+b
+b
+a
+"}
+(8,1,1) = {"
+a
+b
+b
+b
+b
+d
+g
+o
+h
+h
+C
+J
+h
+d
+b
+b
+b
+b
+b
+a
+"}
+(9,1,1) = {"
+a
+b
+b
+b
+b
+e
+h
+p
+q
+x
+D
+K
+M
+d
+b
+b
+b
+b
+b
+a
+"}
+(10,1,1) = {"
+a
+b
+b
+b
+c
+e
+i
+h
+r
+y
+E
+h
+h
+c
+b
+b
+b
+b
+b
+a
+"}
+(11,1,1) = {"
+a
+b
+b
+b
+c
+e
+j
+h
+s
+z
+F
+q
+N
+c
+b
+b
+b
+b
+b
+a
+"}
+(12,1,1) = {"
+a
+b
+b
+b
+b
+e
+e
+h
+t
+A
+G
+q
+h
+c
+b
+b
+b
+b
+b
+a
+"}
+(13,1,1) = {"
+a
+b
+b
+b
+b
+d
+k
+h
+s
+s
+H
+h
+O
+d
+b
+b
+b
+b
+b
+a
+"}
+(14,1,1) = {"
+a
+b
+b
+b
+b
+d
+k
+h
+u
+s
+s
+o
+n
+d
+b
+b
+b
+b
+a
+a
+"}
+(15,1,1) = {"
+a
+b
+b
+b
+b
+d
+l
+i
+h
+e
+I
+L
+P
+d
+b
+b
+b
+b
+a
+a
+"}
+(16,1,1) = {"
+a
+b
+b
+b
+b
+d
+d
+e
+e
+B
+e
+e
+d
+d
+b
+b
+b
+b
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+c
+v
+b
+c
+b
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm
index 1a5050d08e4..1e5537bbef8 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm
@@ -1,32 +1,270 @@
-"a" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/turf/open/floor/plating/lava/smooth/lava_land_surface,/area/lavaland/surface/outdoors)
-"d" = (/turf/closed/wall/mineral/diamond{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"e" = (/obj/structure/mirror{pixel_x = -32},/turf/open/floor/mineral/silver{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"f" = (/obj/structure/mirror{pixel_x = 32},/turf/open/floor/mineral/silver{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"g" = (/turf/open/floor/mineral/silver{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"h" = (/obj/structure/mirror/magic/pride,/turf/closed/wall/mineral/diamond{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"i" = (/obj/machinery/door/airlock/diamond,/turf/open/floor/mineral/silver{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1},/area/ruin/powered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/turf/open/floor/plating/lava/smooth/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"d" = (
+/turf/closed/wall/mineral/diamond{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"e" = (
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"f" = (
+/obj/structure/mirror{
+ pixel_x = 32
+ },
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"g" = (
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"h" = (
+/obj/structure/mirror/magic/pride,
+/turf/closed/wall/mineral/diamond{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"i" = (
+/obj/machinery/door/airlock/diamond,
+/turf/open/floor/mineral/silver{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ blocks_air = 1
+ },
+/area/ruin/powered)
(1,1,1) = {"
-aabcccccbb
-aaccdddccb
-accdddddcc
-acdddddddc
-acdddddddc
-acdedddfdc
-acdeghgfdc
-acdegggfdc
-acdegggfdc
-acdegggfdc
-acdegggfdc
-acdegggfdc
-acdegggfdc
-acdegggfdc
-acdegggfdc
-acdegggfdc
-acdegggfdc
-acdddidddc
-acccaacccc
-aaaaaaaaaa
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+a
+"}
+(3,1,1) = {"
+b
+c
+c
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+c
+a
+"}
+(4,1,1) = {"
+c
+c
+d
+d
+d
+e
+e
+e
+e
+e
+e
+e
+e
+e
+e
+e
+e
+d
+c
+a
+"}
+(5,1,1) = {"
+c
+d
+d
+d
+d
+d
+g
+g
+g
+g
+g
+g
+g
+g
+g
+g
+g
+d
+a
+a
+"}
+(6,1,1) = {"
+c
+d
+d
+d
+d
+d
+h
+g
+g
+g
+g
+g
+g
+g
+g
+g
+g
+i
+a
+a
+"}
+(7,1,1) = {"
+c
+d
+d
+d
+d
+d
+g
+g
+g
+g
+g
+g
+g
+g
+g
+g
+g
+d
+c
+a
+"}
+(8,1,1) = {"
+c
+c
+d
+d
+d
+f
+f
+f
+f
+f
+f
+f
+f
+f
+f
+f
+f
+d
+c
+a
+"}
+(9,1,1) = {"
+b
+c
+c
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+d
+c
+a
+"}
+(10,1,1) = {"
+b
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_prisoner_crash.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_prisoner_crash.dmm
index c27d750821d..1900c39487b 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_prisoner_crash.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_prisoner_crash.dmm
@@ -1,49 +1,591 @@
-"a" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/obj/item/weapon/shard,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"d" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"e" = (/turf/closed/indestructible/opshuttle,/area/lavaland/surface/outdoors)
-"f" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"g" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/ruin/unpowered)
-"h" = (/turf/closed/indestructible/opshuttle,/area/ruin/unpowered)
-"i" = (/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23"},/area/lavaland/surface/outdoors)
-"j" = (/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/device/flashlight/lantern,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"k" = (/obj/effect/mob_spawn/human/prisoner_transport,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"l" = (/obj/item/weapon/shard,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23"},/area/ruin/unpowered)
-"m" = (/obj/effect/mob_spawn/human/nanotrasensoldier,/obj/effect/decal/cleanable/blood,/obj/item/device/flashlight/seclite,/obj/effect/light_emitter,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"n" = (/obj/item/weapon/gun/projectile/automatic/pistol/m1911,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"o" = (/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"p" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"q" = (/obj/item/weapon/shard,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23"},/area/lavaland/surface/outdoors)
-"r" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23"},/area/ruin/unpowered)
-"s" = (/obj/effect/mob_spawn/human/nanotrasensoldier,/obj/item/weapon/gun/projectile/automatic/pistol/m1911,/obj/effect/decal/cleanable/blood,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23"},/area/ruin/unpowered)
-"t" = (/obj/structure/closet/crate/internals,/obj/item/weapon/crowbar/large,/turf/open/floor/plasteel/shuttle/red{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"u" = (/obj/structure/lattice,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"v" = (/obj/effect/decal/cleanable/blood,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"w" = (/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"x" = (/obj/item/weapon/gun/projectile/automatic/pistol/m1911,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"y" = (/obj/effect/mob_spawn/human/nanotrasensoldier,/obj/effect/decal/cleanable/blood,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"z" = (/obj/effect/decal/cleanable/blood,/obj/item/device/flashlight/seclite,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/obj/item/weapon/shard,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"d" = (
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"e" = (
+/turf/closed/wall/mineral/plastitanium{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/lavaland/surface/outdoors)
+"f" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"g" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 4
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/ruin/unpowered)
+"h" = (
+/turf/closed/wall/mineral/plastitanium{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
+/area/ruin/unpowered)
+"i" = (
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/lavaland/surface/outdoors)
+"j" = (
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe,
+/obj/item/device/flashlight/lantern,
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"k" = (
+/obj/effect/mob_spawn/human/prisoner_transport,
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"l" = (
+/obj/item/weapon/shard,
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"m" = (
+/obj/effect/mob_spawn/human/nanotrasensoldier,
+/obj/effect/decal/cleanable/blood,
+/obj/item/device/flashlight/seclite,
+/obj/effect/light_emitter,
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"n" = (
+/obj/item/weapon/gun/projectile/automatic/pistol/m1911,
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"o" = (
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"p" = (
+/obj/machinery/door/airlock/shuttle,
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"q" = (
+/obj/item/weapon/shard,
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/lavaland/surface/outdoors)
+"r" = (
+/obj/machinery/door/airlock/shuttle,
+/turf/open/floor/plasteel/shuttle/red{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23"
+ },
+/area/ruin/unpowered)
+"s" = (
+/obj/effect/mob_spawn/human/nanotrasensoldier,
+/obj/item/weapon/gun/projectile/automatic/pistol/m1911,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"t" = (
+/obj/structure/closet/crate/internals,
+/obj/item/weapon/crowbar/large,
+/turf/open/floor/mineral/plastitanium/brig{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"u" = (
+/obj/structure/lattice,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"v" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"w" = (
+/obj/item/weapon/shard{
+ icon_state = "small"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"x" = (
+/obj/item/weapon/gun/projectile/automatic/pistol/m1911,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"y" = (
+/obj/effect/mob_spawn/human/nanotrasensoldier,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"z" = (
+/obj/effect/decal/cleanable/blood,
+/obj/item/device/flashlight/seclite,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
(1,1,1) = {"
-abbbbbbabbaabbbbbbbb
-aabbbbbbbbbbbabbbbbb
-bbcbaabbbbbbbabbbbbb
-bbbbaabbdbbbabaaabbb
-bbbbaabbbbbbbbaaabbb
-baabbbbbbbbbbaaaaaaa
-baaabbbbbbbbbaaaaaaa
-bbbbbebaaaabaaaaaaaa
-bbbbbfeaaaabbaaaaaaa
-bbbghhhhhhheiihheaaa
-bbbhhjkkkkhiiihlaaaa
-bbbghmnooopiqirsaaaa
-bbbhhtkkkkhiiieaaeaa
-bbbghhhhhhhuuieeeabb
-bbbbbfebbbbbbbbbbabb
-bbbbbebbbbbbbbbbbbbb
-bbbbbbbvvbbbbbbbbaab
-bbbwxbvvvbbbcbbbbaab
-babbbyzbbaaaaaaaaaaa
-bbabbbbbbaaaaaaaaaaa
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+"}
+(2,1,1) = {"
+b
+a
+b
+b
+b
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+b
+"}
+(3,1,1) = {"
+b
+b
+c
+b
+b
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+"}
+(4,1,1) = {"
+b
+b
+b
+b
+b
+b
+a
+b
+b
+g
+h
+g
+h
+g
+b
+b
+b
+w
+b
+b
+"}
+(5,1,1) = {"
+b
+b
+a
+a
+a
+b
+b
+b
+b
+h
+h
+h
+h
+h
+b
+b
+b
+x
+b
+b
+"}
+(6,1,1) = {"
+b
+b
+a
+a
+a
+b
+b
+e
+f
+h
+j
+m
+t
+h
+f
+e
+b
+b
+y
+b
+"}
+(7,1,1) = {"
+b
+b
+b
+b
+b
+b
+b
+b
+e
+h
+k
+n
+k
+h
+e
+b
+b
+v
+z
+b
+"}
+(8,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+a
+a
+h
+k
+o
+k
+h
+b
+b
+v
+v
+b
+b
+"}
+(9,1,1) = {"
+b
+b
+b
+d
+b
+b
+b
+a
+a
+h
+k
+o
+k
+h
+b
+b
+v
+v
+b
+b
+"}
+(10,1,1) = {"
+b
+b
+b
+b
+b
+b
+b
+a
+a
+h
+k
+o
+k
+h
+b
+b
+b
+b
+a
+a
+"}
+(11,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+a
+a
+h
+h
+p
+h
+h
+b
+b
+b
+b
+a
+a
+"}
+(12,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+b
+e
+i
+i
+i
+u
+b
+b
+b
+b
+a
+a
+"}
+(13,1,1) = {"
+b
+b
+b
+a
+b
+b
+b
+a
+b
+i
+i
+q
+i
+u
+b
+b
+b
+c
+a
+a
+"}
+(14,1,1) = {"
+b
+a
+a
+b
+b
+a
+a
+a
+a
+i
+i
+i
+i
+i
+b
+b
+b
+b
+a
+a
+"}
+(15,1,1) = {"
+b
+b
+b
+a
+a
+a
+a
+a
+a
+h
+h
+p
+e
+e
+b
+b
+b
+b
+a
+a
+"}
+(16,1,1) = {"
+b
+b
+b
+a
+a
+a
+a
+a
+a
+h
+l
+s
+a
+e
+b
+b
+b
+b
+a
+a
+"}
+(17,1,1) = {"
+b
+b
+b
+a
+a
+a
+a
+a
+a
+e
+a
+a
+a
+e
+b
+b
+b
+b
+a
+a
+"}
+(18,1,1) = {"
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+e
+a
+a
+b
+a
+a
+a
+a
+"}
+(19,1,1) = {"
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+a
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm
index 98351f0d8ce..810310c61fd 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm
@@ -1,57 +1,695 @@
-"a" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/turf/closed/wall/r_wall,/area/ruin/powered)
-"d" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion";dir = 8},/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"e" = (/obj/machinery/smartfridge,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"f" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/cultivator,/obj/item/weapon/cultivator,/obj/item/weapon/cultivator,/obj/item/weapon/cultivator,/obj/item/weapon/shovel/spade,/obj/item/weapon/shovel/spade,/obj/item/weapon/shovel/spade,/obj/item/weapon/shovel/spade,/obj/item/weapon/hatchet,/obj/item/weapon/hatchet,/obj/item/weapon/hatchet,/obj/item/weapon/hatchet,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"g" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"h" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/seed_vault,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"i" = (/obj/item/weapon/hatchet,/obj/item/weapon/storage/bag/plants,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"j" = (/obj/structure/table/wood,/obj/item/weapon/storage/bag/plants,/obj/item/weapon/storage/bag/plants,/obj/item/weapon/storage/bag/plants,/obj/item/weapon/storage/bag/plants,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"k" = (/obj/structure/table/wood,/obj/item/weapon/gun/energy/floragun,/obj/item/weapon/gun/energy/floragun,/obj/item/weapon/gun/energy/floragun,/obj/item/weapon/gun/energy/floragun,/obj/item/weapon/storage/box/disks_plantgene,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"l" = (/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"m" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion";dir = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"n" = (/obj/effect/mob_spawn/human/seed_vault,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"o" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"p" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"q" = (/obj/machinery/vending/hydroseeds,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"r" = (/obj/machinery/reagentgrinder{pixel_y = 5},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"s" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"t" = (/obj/machinery/door/airlock,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"u" = (/obj/machinery/door/airlock/external,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"v" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"w" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"x" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"y" = (/obj/machinery/chem_dispenser/mutagen,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"z" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"A" = (/obj/structure/closet/crate/hydroponics,/obj/item/clothing/under/rank/hydroponics,/obj/item/clothing/under/rank/hydroponics,/obj/item/clothing/under/rank/hydroponics,/obj/item/clothing/under/rank/hydroponics,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"B" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"C" = (/obj/item/weapon/storage/toolbox/syndicate,/obj/structure/table/wood,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"D" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/ruin/powered)
-"E" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"F" = (/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"H" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"G" = (/obj/machinery/plantgenes/seedvault,/turf/open/floor/plasteel/freezer{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/turf/closed/wall/r_wall,
+/area/ruin/powered)
+"d" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 8
+ },
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"e" = (
+/obj/machinery/smartfridge,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"f" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/hatchet,
+/obj/item/weapon/hatchet,
+/obj/item/weapon/hatchet,
+/obj/item/weapon/hatchet,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"g" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"h" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/seed_vault,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"i" = (
+/obj/machinery/plantgenes/seedvault,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"j" = (
+/obj/item/weapon/hatchet,
+/obj/item/weapon/storage/bag/plants,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"k" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/bag/plants,
+/obj/item/weapon/storage/bag/plants,
+/obj/item/weapon/storage/bag/plants,
+/obj/item/weapon/storage/bag/plants,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"l" = (
+/obj/structure/table/wood,
+/obj/item/weapon/gun/energy/floragun,
+/obj/item/weapon/gun/energy/floragun,
+/obj/item/weapon/gun/energy/floragun,
+/obj/item/weapon/gun/energy/floragun,
+/obj/item/weapon/storage/box/disks_plantgene,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"m" = (
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"n" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion";
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"o" = (
+/obj/effect/mob_spawn/human/seed_vault,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"p" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"q" = (
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"r" = (
+/obj/machinery/vending/hydroseeds,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"s" = (
+/obj/machinery/reagentgrinder{
+ pixel_y = 5
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/bluespace,
+/obj/item/weapon/reagent_containers/glass/beaker/bluespace,
+/obj/item/weapon/reagent_containers/glass/beaker/bluespace,
+/obj/item/weapon/reagent_containers/glass/beaker/bluespace,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"t" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"u" = (
+/obj/machinery/door/airlock,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"v" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"w" = (
+/obj/machinery/door/airlock/external,
+/obj/structure/fans/tiny,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"x" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"y" = (
+/obj/machinery/seed_extractor,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"z" = (
+/obj/machinery/biogenerator,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"A" = (
+/obj/machinery/chem_dispenser/mutagen,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"B" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"C" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/clothing/under/rank/hydroponics,
+/obj/item/clothing/under/rank/hydroponics,
+/obj/item/clothing/under/rank/hydroponics,
+/obj/item/clothing/under/rank/hydroponics,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"D" = (
+/obj/machinery/chem_master/condimaster,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"E" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"F" = (
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/freezer{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"G" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/ruin/powered)
+"H" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"I" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
(1,1,1) = {"
-aabbaaaaaaaaaaaaaaaa
-aabbaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaabaaaa
-aaaaaaaaaaaaaaaaabab
-aaaaaaaaaaaaaaaaabbb
-aaaccccccccccccdbbbb
-aaccefghGgigjkccabaa
-ccccllllllllllcmbbbb
-cnlcolgpeqrllscccbbb
-cnltllllllllglulubbb
-cnltllllllllglulubbb
-cnlcolgvwxyllscccbbb
-cccclllzllllllcmbbbb
-aaccoAgzlgHgBCccbbbb
-aaaccccDcccccccmbbaa
-aaaaaaaEFbaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaa
-aabaaaaaaaaaaaaaaabb
-bbaaaaaaaaaaaaaabbbb
-bbbaaaaaaaaaaaaabbba
+a
+a
+a
+a
+a
+a
+a
+c
+c
+c
+c
+c
+c
+a
+a
+a
+a
+a
+b
+b
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+c
+o
+o
+o
+o
+c
+a
+a
+a
+a
+a
+b
+b
+"}
+(3,1,1) = {"
+b
+b
+a
+a
+a
+a
+c
+c
+m
+m
+m
+m
+c
+c
+a
+a
+a
+b
+a
+b
+"}
+(4,1,1) = {"
+b
+b
+a
+a
+a
+c
+c
+c
+c
+u
+u
+c
+c
+c
+c
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+a
+c
+e
+m
+p
+m
+m
+p
+m
+p
+c
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+a
+c
+f
+m
+m
+m
+m
+m
+m
+C
+c
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+c
+g
+m
+g
+m
+m
+g
+m
+g
+c
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+a
+c
+h
+m
+q
+m
+m
+x
+B
+B
+G
+H
+a
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+a
+a
+a
+c
+i
+m
+e
+m
+m
+y
+m
+m
+c
+I
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+c
+g
+m
+r
+m
+m
+z
+m
+g
+c
+b
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+c
+j
+m
+s
+m
+m
+A
+m
+D
+c
+a
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+a
+c
+g
+m
+m
+m
+m
+m
+m
+g
+c
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+c
+k
+m
+m
+g
+g
+m
+m
+E
+c
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+c
+l
+m
+t
+m
+m
+t
+m
+F
+c
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+c
+c
+c
+c
+v
+v
+c
+c
+c
+c
+a
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+b
+a
+a
+d
+c
+n
+c
+m
+m
+c
+n
+c
+n
+a
+a
+a
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+b
+a
+b
+c
+w
+w
+c
+b
+b
+b
+a
+a
+a
+b
+b
+"}
+(18,1,1) = {"
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+b
+b
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+b
+b
+a
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+b
+b
+b
+"}
+(20,1,1) = {"
+a
+a
+a
+b
+b
+b
+a
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+b
+b
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
index 1c78a88c8cf..b973f306795 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm
@@ -1,20 +1,654 @@
-"a" = (/turf/closed/indestructible/riveted{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/unpowered)
-"b" = (/turf/open/floor/plating/lava/smooth/lava_land_surface,/area/ruin/unpowered)
-"c" = (/obj/item/weapon/paper{desc = "have not gotten around to finishing my cursed item yet sorry - sloth"; name = "note from sloth"},/turf/open/floor/sepia{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1; slowdown = 10},/area/ruin/unpowered)
-"d" = (/turf/open/floor/sepia{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1; slowdown = 10},/area/ruin/unpowered)
-"e" = (/obj/machinery/door/airlock/wood,/turf/open/floor/sepia{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1; slowdown = 10},/area/ruin/unpowered)
-"f" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/turf/open/floor/sepia{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1; slowdown = 10},/area/ruin/unpowered)
-"g" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/open/floor/sepia{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1; slowdown = 10},/area/ruin/unpowered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/indestructible/riveted{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/unpowered)
+"b" = (
+/turf/open/floor/plating/lava/smooth/lava_land_surface,
+/area/ruin/unpowered)
+"c" = (
+/obj/item/weapon/paper{
+ desc = "have not gotten around to finishing my cursed item yet sorry - sloth";
+ name = "note from sloth"
+ },
+/turf/open/floor/sepia{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ blocks_air = 0;
+ slowdown = 10
+ },
+/area/ruin/unpowered)
+"d" = (
+/turf/open/floor/sepia{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ blocks_air = 0;
+ slowdown = 10
+ },
+/area/ruin/unpowered)
+"e" = (
+/obj/machinery/door/airlock/wood,
+/turf/open/floor/sepia{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ blocks_air = 0;
+ slowdown = 10
+ },
+/area/ruin/unpowered)
+"f" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,
+/turf/open/floor/sepia{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ blocks_air = 0;
+ slowdown = 10
+ },
+/area/ruin/unpowered)
+"g" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/brown,
+/turf/open/floor/sepia{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ blocks_air = 0;
+ slowdown = 10
+ },
+/area/ruin/unpowered)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-abbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbba
-abaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-abacdddadddadddadddadddadddadddadddadddadddadddada
-abaddadadadadadadadadadadadadadadadadadadadadadade
-abaddadadadadadadadadadadadadadadadadadadadadadade
-abafgadddadddadddadddadddadddadddadddadddadddaddda
-abaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-abbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbba
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+b
+a
+"}
+(3,1,1) = {"
+a
+b
+a
+a
+a
+a
+a
+a
+b
+a
+"}
+(4,1,1) = {"
+a
+b
+a
+c
+d
+d
+f
+a
+b
+a
+"}
+(5,1,1) = {"
+a
+b
+a
+d
+d
+d
+g
+a
+b
+a
+"}
+(6,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(7,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(8,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(9,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(10,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(11,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(12,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(13,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(14,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(15,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(16,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(17,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(18,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(19,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(20,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(21,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(22,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(23,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(24,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(25,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(26,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(27,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(28,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(29,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(30,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(31,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(32,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(33,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(34,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(35,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(36,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(37,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(38,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(39,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(40,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(41,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(42,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(43,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(44,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(45,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(46,1,1) = {"
+a
+b
+a
+d
+a
+a
+a
+a
+b
+a
+"}
+(47,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(48,1,1) = {"
+a
+b
+a
+a
+a
+a
+d
+a
+b
+a
+"}
+(49,1,1) = {"
+a
+b
+a
+d
+d
+d
+d
+a
+b
+a
+"}
+(50,1,1) = {"
+a
+a
+a
+a
+e
+e
+a
+a
+a
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_tomb.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_tomb.dmm
index dc5f71c3e89..c4f10ea6087 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_tomb.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_tomb.dmm
@@ -53,85 +53,60 @@
},
/area/ruin/powered)
"l" = (
-/obj/structure/bodycontainer/morgue{
- desc = "An oddly modernized tomb, at least compared to where it currently is.";
- name = "tomb"
- },
-/obj/effect/mob_spawn/human/skeleton,
-/obj/item/weapon/shovel/cursed,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"m" = (
/obj/item/weapon/grown/bananapeel,
/obj/structure/mineral_door/transparent/diamond,
/turf/open/floor/vault{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"n" = (
+"m" = (
/obj/item/weapon/ore/diamond,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"o" = (
+"n" = (
/turf/open/floor/vault{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"p" = (
+"o" = (
/obj/item/weapon/ore/gold,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"q" = (
+"p" = (
/turf/open/floor/plating/lava/smooth/lava_land_surface,
/area/ruin/powered)
-"r" = (
-/obj/structure/bodycontainer/morgue{
- desc = "An oddly modernized tomb, at least compared to where it currently is.";
- name = "tomb"
- },
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/helmet/stahlhelm;
- name = "german remains";
- uniform = /obj/item/clothing/under/wwii
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"s" = (
+"q" = (
/obj/structure/table,
/obj/item/weapon/tome,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"t" = (
+"r" = (
/obj/item/weapon/grown/bananapeel,
/obj/structure/mineral_door/silver,
/turf/open/floor/vault{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"u" = (
+"s" = (
/obj/item/weapon/ore/bananium,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"v" = (
+"t" = (
/obj/item/weapon/grown/bananapeel,
/obj/structure/mineral_door/gold,
/turf/open/floor/vault{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"w" = (
+"u" = (
/obj/structure/table/optable/abductor{
desc = "A strange, alien-like table for cutting up things, like people.";
name = "strange alien slab"
@@ -144,14 +119,14 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"x" = (
+"v" = (
/obj/structure/table,
/obj/item/weapon/spellbook/oneuse/charge,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"y" = (
+"w" = (
/obj/structure/bodycontainer/morgue{
desc = "An oddly modernized tomb, at least compared to where it currently is.";
name = "tomb"
@@ -165,26 +140,26 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"z" = (
+"x" = (
/obj/item/weapon/ore/uranium,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"A" = (
+"y" = (
/obj/item/weapon/ore/plasma,
/turf/open/floor/plasteel/black{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"B" = (
+"z" = (
/obj/item/weapon/grown/bananapeel,
/obj/structure/mineral_door/iron,
/turf/open/floor/vault{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"C" = (
+"A" = (
/obj/structure/table,
/obj/item/weapon/twohanded/spear,
/obj/item/weapon/shield/riot/buckler,
@@ -192,7 +167,7 @@
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
/area/ruin/powered)
-"D" = (
+"B" = (
/obj/item/weapon/grown/bananapeel,
/obj/structure/mineral_door/iron,
/turf/open/floor/plasteel/black{
@@ -324,8 +299,8 @@ h
j
k
j
-x
-y
+v
+w
g
b
b
@@ -375,9 +350,9 @@ g
g
g
g
-t
+r
g
-t
+r
g
g
g
@@ -399,15 +374,15 @@ g
g
g
g
+m
+n
+n
n
-o
-o
-o
i
-o
-o
-o
-z
+n
+n
+n
+x
g
g
b
@@ -426,15 +401,15 @@ h
i
j
g
-o
n
-o
-o
+m
+n
+n
i
-o
-o
-z
-o
+n
+n
+x
+n
g
g
g
@@ -453,19 +428,19 @@ i
k
i
g
-o
+n
i
-q
-q
+p
+p
i
-q
-q
+p
+p
i
-o
+n
g
-C
-C
-C
+A
+A
+A
g
b
b
@@ -480,15 +455,15 @@ i
i
i
g
-o
-q
+n
+p
i
-q
+p
i
-q
+p
i
-q
-o
+p
+n
g
i
i
@@ -506,21 +481,21 @@ g
j
i
i
-m
-o
-q
-q
-o
-u
-o
-q
-q
-o
-B
+l
+n
+p
+p
+n
+s
+n
+p
+p
+n
+z
i
j
i
-D
+B
b
b
"}
@@ -531,15 +506,15 @@ b
b
g
i
-l
+k
i
g
i
i
i
+s
u
-w
-u
+s
i
i
i
@@ -560,21 +535,21 @@ g
j
i
i
-m
-o
-q
-q
-o
-u
-o
-q
-q
-o
-B
+l
+n
+p
+p
+n
+s
+n
+p
+p
+n
+z
i
j
i
-D
+B
b
b
"}
@@ -588,15 +563,15 @@ i
i
i
g
-o
-q
+n
+p
i
-q
+p
i
-q
+p
i
-q
-o
+p
+n
g
i
i
@@ -615,19 +590,19 @@ i
k
i
g
-o
+n
i
-q
-q
+p
+p
i
-q
-q
+p
+p
i
-o
+n
g
-C
-C
-C
+A
+A
+A
g
b
b
@@ -642,15 +617,15 @@ h
i
j
g
+n
o
-p
-o
-o
+n
+n
i
-o
-o
-A
-o
+n
+n
+y
+n
g
g
g
@@ -669,15 +644,15 @@ g
g
g
g
-p
-o
-o
o
+n
+n
+n
i
-o
-o
-o
-A
+n
+n
+n
+y
g
g
b
@@ -699,9 +674,9 @@ g
g
g
g
-v
+t
g
-v
+t
g
g
g
@@ -724,8 +699,8 @@ e
d
g
g
-r
-s
+k
+q
i
k
i
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm
index 63f933da1f5..a3a5f906577 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm
@@ -1,46 +1,573 @@
-"a" = (/turf/closed/mineral/volcanic/lava_land_surface,/area/lavaland/surface/outdoors)
-"b" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
-"c" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien20"},/area/lavaland/surface/outdoors)
-"d" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien21"},/area/ruin/unpowered)
-"e" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien22"},/area/ruin/unpowered)
-"f" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien23"},/area/ruin/unpowered)
-"g" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien24"},/area/lavaland/surface/outdoors)
-"h" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien16"},/area/lavaland/surface/outdoors)
-"i" = (/turf/closed/indestructible/abductor{icon_state = "alien17"},/area/ruin/unpowered)
-"j" = (/obj/machinery/abductor/experiment{team = 100},/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"k" = (/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"l" = (/obj/machinery/abductor/pad{team = 100},/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"m" = (/turf/closed/indestructible/abductor{icon_state = "alien18"},/area/ruin/unpowered)
-"n" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien19"},/area/lavaland/surface/outdoors)
-"o" = (/obj/item/weapon/hemostat/alien,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"p" = (obj/effect/mob_spawn/human/abductor,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"q" = (/obj/structure/closet/abductor,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"r" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien14"},/area/ruin/unpowered)
-"s" = (/obj/structure/table/optable/abductor,/obj/item/weapon/cautery/alien,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"t" = (/obj/structure/table/abductor,/obj/item/weapon/storage/box/alienhandcuffs,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"u" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien12"},/area/ruin/unpowered)
-"v" = (/obj/item/weapon/scalpel/alien,/obj/item/weapon/surgical_drapes,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"w" = (/obj/item/weapon/retractor/alien,/obj/item/weapon/paper/abductor,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"x" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien10"},/area/ruin/unpowered)
-"y" = (/obj/machinery/abductor/gland_dispenser,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"z" = (/obj/structure/table/abductor,/obj/item/weapon/surgicaldrill/alien,/obj/item/weapon/circular_saw/alien,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"A" = (/obj/structure/bed/abductor,/turf/open/floor/plating/abductor{baseturf = /turf/open/floor/plating/lava/smooth; initial_gas_mix = "o2=16;n2=23;TEMP=300"},/area/ruin/unpowered)
-"B" = (/turf/closed/indestructible/abductor{icon_state = "alien8"},/area/ruin/unpowered)
-"C" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien9"},/area/lavaland/surface/outdoors)
-"D" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien2"},/area/ruin/unpowered)
-"E" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien3"},/area/ruin/unpowered)
-"F" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien4"},/area/ruin/unpowered)
-"G" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/turf/closed/indestructible/abductor{icon_state = "alien5"},/area/lavaland/surface/outdoors)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/closed/mineral/volcanic/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"b" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/lavaland/surface/outdoors)
+"c" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien20"
+ },
+/area/lavaland/surface/outdoors)
+"d" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien21"
+ },
+/area/ruin/unpowered)
+"e" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien22"
+ },
+/area/ruin/unpowered)
+"f" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien23"
+ },
+/area/ruin/unpowered)
+"g" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien24"
+ },
+/area/lavaland/surface/outdoors)
+"h" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien16"
+ },
+/area/lavaland/surface/outdoors)
+"i" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien17"
+ },
+/area/ruin/unpowered)
+"j" = (
+/obj/machinery/abductor/experiment{
+ team = 100
+ },
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"k" = (
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"l" = (
+/obj/machinery/abductor/pad{
+ team = 100
+ },
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"m" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien18"
+ },
+/area/ruin/unpowered)
+"n" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien19"
+ },
+/area/lavaland/surface/outdoors)
+"o" = (
+/obj/item/weapon/hemostat/alien,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"p" = (
+obj/effect/mob_spawn/human/abductor,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"q" = (
+/obj/structure/closet/abductor,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"r" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien14"
+ },
+/area/ruin/unpowered)
+"s" = (
+/obj/structure/table/optable/abductor,
+/obj/item/weapon/cautery/alien,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"t" = (
+/obj/structure/table/abductor,
+/obj/item/weapon/storage/box/alienhandcuffs,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"u" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien12"
+ },
+/area/ruin/unpowered)
+"v" = (
+/obj/item/weapon/scalpel/alien,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"w" = (
+/obj/item/weapon/retractor/alien,
+/obj/item/weapon/paper/abductor,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"x" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien10"
+ },
+/area/ruin/unpowered)
+"y" = (
+/obj/machinery/abductor/gland_dispenser,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"z" = (
+/obj/structure/table/abductor,
+/obj/item/weapon/surgicaldrill/alien,
+/obj/item/weapon/circular_saw/alien,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"A" = (
+/obj/structure/bed/abductor,
+/turf/open/floor/plating/abductor{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ initial_gas_mix = "o2=16;n2=23;TEMP=300"
+ },
+/area/ruin/unpowered)
+"B" = (
+/turf/closed/indestructible/abductor{
+ icon_state = "alien8"
+ },
+/area/ruin/unpowered)
+"C" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien9"
+ },
+/area/lavaland/surface/outdoors)
+"D" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien2"
+ },
+/area/ruin/unpowered)
+"E" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien3"
+ },
+/area/ruin/unpowered)
+"F" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien4"
+ },
+/area/ruin/unpowered)
+"G" = (
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/turf/closed/indestructible/abductor{
+ icon_state = "alien5"
+ },
+/area/lavaland/surface/outdoors)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaabaaabbaaaaabbb
-aaacdefgbbbbbbbbbbbbbbbbbbbbbb
-aahijklmnbbbbbbbbbbbbbbbbbbbbb
-aaaakopqrbbbbbbbbbbbbbbbbbbbbb
-aaaaksktubbbbbbbbbbbbbbbbbbbbb
-aaaaavwqxbbbbbbbbbbbbbbbbbbbbb
-aaaayzABCbbbbbbbbbbbbbbbbbbbbb
-aaaaDEFGbaaaaaaaaabaaaaaaaaaab
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+h
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+c
+i
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+d
+j
+k
+k
+a
+y
+D
+a
+"}
+(6,1,1) = {"
+a
+a
+e
+k
+o
+s
+v
+z
+E
+a
+"}
+(7,1,1) = {"
+a
+a
+f
+l
+p
+k
+w
+A
+F
+a
+"}
+(8,1,1) = {"
+a
+a
+g
+m
+q
+t
+q
+B
+G
+a
+"}
+(9,1,1) = {"
+a
+a
+b
+n
+r
+u
+x
+C
+b
+a
+"}
+(10,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(17,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+b
+a
+"}
+(20,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(21,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(22,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(23,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(24,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(26,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(27,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(28,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(29,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(30,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+b
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ww_vault.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ww_vault.dmm
index 458812ea95b..5b722426566 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ww_vault.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ww_vault.dmm
@@ -1,117 +1,10005 @@
-"a" = (/turf/template_noop,/area/template_noop)
-"b" = (/turf/closed/indestructible,/area/ruin/powered)
-"c" = (/turf/open/floor/engine/cult,/area/ruin/powered)
-"d" = (/obj/structure/cult/pylon,/turf/open/floor/engine/cult,/area/ruin/powered)
-"e" = (/turf/open/floor/plating{icon_state = "cultdamage5"},/area/ruin/powered)
-"f" = (/mob/living/simple_animal/hostile/faithless,/turf/open/floor/engine/cult,/area/ruin/powered)
-"g" = (/turf/open/floor/plating{icon_state = "bcircuitoff"},/area/ruin/powered)
-"h" = (/turf/closed/indestructible{desc = "The patterns engraved on the wall seem to shift as you try to focus on them. You feel sick."; icon = 'icons/turf/closed/walls/cult_wall.dmi'; icon_state = "cult"},/area/ruin/powered)
-"i" = (/turf/open/floor/plating{icon_state = "cultdamage3"},/area/ruin/powered)
-"j" = (/turf/open/floor/plating{icon_state = "cultdamage6"},/area/ruin/powered)
-"k" = (/obj/effect/gateway,/turf/open/floor/engine/cult,/area/ruin/powered)
-"l" = (/mob/living/simple_animal/hostile/faithless,/turf/open/floor/plating{icon_state = "bcircuitoff"},/area/ruin/powered)
-"m" = (/obj/machinery/wish_granter_dark,/turf/open/floor/plating{icon_state = "gcircuitoff"},/area/ruin/powered)
-"n" = (/turf/open/floor/plating{icon_state = "gcircuitoff"},/area/ruin/powered)
-"o" = (/obj/structure/cult/pylon,/turf/open/floor/plating{icon_state = "gcircuitoff"},/area/ruin/powered)
-"p" = (/obj/structure/signpost,/turf/open/floor/plating{icon_state = "gcircuitoff"},/area/ruin/powered)
-"q" = (/obj/effect/meatgrinder,/turf/open/floor/plating{icon_state = "gcircuitoff"},/area/ruin/powered)
-"r" = (/obj/structure/cult/pylon,/turf/open/floor/plating{icon_state = "bcircuitoff"},/area/ruin/powered)
-"s" = (/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"t" = (/turf/open/floor/plating{icon_state = "cultdamage2"},/area/ruin/powered)
-"u" = (/turf/open/floor/carpet,/area/ruin/powered)
-"v" = (/mob/living/simple_animal/hostile/faithless,/turf/open/floor/carpet,/area/ruin/powered)
-"w" = (/obj/machinery/door/airlock/vault{locked = 1},/turf/open/floor/engine/cult,/area/ruin/powered)
-"x" = (/obj/structure/cult/pylon,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"y" = (/mob/living/simple_animal/hostile/faithless,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"z" = (/turf/template_noop,/turf/closed/indestructible{desc = "The patterns engraved on the wall seem to shift as you try to focus on them. You feel sick."; icon = 'icons/turf/closed/walls/cult_wall.dmi'; icon_state = "cult"},/area/ruin/powered)
-"A" = (/mob/living/simple_animal/hostile/faithless,/turf/template_noop,/area/template_noop)
-"B" = (/obj/effect/mob_spawn/human/miner/rig,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/ruin/powered)
-"C" = (/obj/machinery/door/airlock/vault{locked = 1},/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth; blocks_air = 1},/area/ruin/powered)
-"D" = (/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/template_noop)
-"E" = (/turf/closed/indestructible,/area/template_noop)
-"F" = (/obj/item/weapon/paper{info = "meat grinder requires sacri"},/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/template_noop)
-"G" = (/obj/effect/mob_spawn/human/syndicatecommando,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/template_noop)
-"H" = (/mob/living/simple_animal/hostile/faithless,/turf/open/floor/engine/cult{baseturf = /turf/open/floor/plating/lava/smooth},/area/template_noop)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/turf/closed/indestructible,
+/area/ruin/powered)
+"c" = (
+/turf/open/floor/engine/cult,
+/area/ruin/powered)
+"d" = (
+/obj/structure/cult/pylon,
+/turf/open/floor/engine/cult,
+/area/ruin/powered)
+"e" = (
+/turf/open/floor/plating{
+ icon_state = "cultdamage5"
+ },
+/area/ruin/powered)
+"f" = (
+/mob/living/simple_animal/hostile/faithless,
+/turf/open/floor/engine/cult,
+/area/ruin/powered)
+"g" = (
+/turf/open/floor/plasteel/circuit/off,
+/area/ruin/powered)
+"h" = (
+/turf/closed/indestructible{
+ desc = "The patterns engraved on the wall seem to shift as you try to focus on them. You feel sick.";
+ icon = 'icons/turf/walls/cult_wall.dmi';
+ icon_state = "cult"
+ },
+/area/ruin/powered)
+"i" = (
+/turf/open/floor/plating{
+ icon_state = "cultdamage3"
+ },
+/area/ruin/powered)
+"j" = (
+/turf/open/floor/plating{
+ icon_state = "cultdamage6"
+ },
+/area/ruin/powered)
+"k" = (
+/obj/effect/gateway,
+/turf/open/floor/engine/cult,
+/area/ruin/powered)
+"l" = (
+/mob/living/simple_animal/hostile/faithless,
+/turf/open/floor/plasteel/circuit/off,
+/area/ruin/powered)
+"m" = (
+/obj/machinery/wish_granter_dark,
+/turf/open/floor/plasteel/circuit/gcircuit/off,
+/area/ruin/powered)
+"n" = (
+/turf/open/floor/plasteel/circuit/gcircuit/off,
+/area/ruin/powered)
+"o" = (
+/obj/structure/cult/pylon,
+/turf/open/floor/plasteel/circuit/gcircuit/off,
+/area/ruin/powered)
+"p" = (
+/obj/structure/signpost,
+/turf/open/floor/plasteel/circuit/gcircuit/off,
+/area/ruin/powered)
+"q" = (
+/obj/effect/meatgrinder,
+/turf/open/floor/plasteel/circuit/gcircuit/off,
+/area/ruin/powered)
+"r" = (
+/obj/structure/cult/pylon,
+/turf/open/floor/plasteel/circuit/off,
+/area/ruin/powered)
+"s" = (
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"t" = (
+/turf/open/floor/plating{
+ icon_state = "cultdamage2"
+ },
+/area/ruin/powered)
+"u" = (
+/turf/open/floor/carpet,
+/area/ruin/powered)
+"v" = (
+/mob/living/simple_animal/hostile/faithless,
+/turf/open/floor/carpet,
+/area/ruin/powered)
+"w" = (
+/obj/machinery/door/airlock/vault{
+ locked = 1
+ },
+/turf/open/floor/engine/cult,
+/area/ruin/powered)
+"x" = (
+/obj/structure/cult/pylon,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"y" = (
+/mob/living/simple_animal/hostile/faithless,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"z" = (
+/turf/template_noop,
+/turf/closed/indestructible{
+ desc = "The patterns engraved on the wall seem to shift as you try to focus on them. You feel sick.";
+ icon = 'icons/turf/walls/cult_wall.dmi';
+ icon_state = "cult"
+ },
+/area/ruin/powered)
+"A" = (
+/mob/living/simple_animal/hostile/faithless,
+/turf/template_noop,
+/area/template_noop)
+"B" = (
+/obj/effect/mob_spawn/human/miner/rig,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/ruin/powered)
+"C" = (
+/obj/machinery/door/airlock/vault{
+ locked = 1
+ },
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth;
+ blocks_air = 1
+ },
+/area/ruin/powered)
+"D" = (
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/template_noop)
+"E" = (
+/turf/closed/indestructible,
+/area/template_noop)
+"F" = (
+/obj/item/weapon/paper{
+ info = "meat grinder requires sacri"
+ },
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/template_noop)
+"G" = (
+/obj/effect/mob_spawn/human/syndicatecommando,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/template_noop)
+"H" = (
+/mob/living/simple_animal/hostile/faithless,
+/turf/open/floor/engine/cult{
+ baseturf = /turf/open/floor/plating/lava/smooth
+ },
+/area/template_noop)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbccccbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbccccccccccccccbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbccccccccccccccccccbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbccccccccccccccccccccccccccccbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbccccccccccccdcccccccccccccccccccccccccccbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbccccccccccccccccceccfcccccccccccccgcccccccccbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbaaaaaaabhhhcccccccifcccccccccccccccccccifccccggcccccccccccccbbbbbbbbbbaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaabbccccccccccbbaaaaabbhchhccccccccccccccccfcccecccccccccccccgggccccccccccccccccccccbbbbbbaaaaaaaaabbbb
-aaaaaaaaaaaaaaaaabbbhhccchhhchchbbbbbbbcccchhcccccccccjccccccccccccckccccccccckcgggglcccccicccccccccccccbbbbbbaaabbbbmnb
-aaaaaaaaaaaaaaaaabccchhhccchhhchcccccccccccchhcccccccccccccccccccccccccccgccccccccccggggcccgccgcccgdccccbbbbbbbbbbonnnnb
-aaaaaaaaaaaaaaaabbccchhhhhfcdhchhccccccfcdccchhhhccdcccccckccccccccccccccggcccccggggggccggggggggccggccccbpnnbbbbbnnnnnnb
-aaaaaaaaaaaaaaaabcccccccccccchcchhhccccfchhhcccchhcccccceccccccccjccfcccccgclgggcccccgggggglgggggcigbbbbbnnnnnnbnnnnnnob
-aaaaaaaaaaaaaaabbcchhccccfcfchcccchhhhccchhhhcccchccccfccccccdccccccccdcccggcccccggccdggigggggggggbbbggcbnnnnnnnqbnnnnnb
-aaaaaaaaaaaaaabbcccdhhhhhhhhhhhhccccchhccccchcccchhccccccccccccccccccccccccccccccccgggggcccggcccggbggcgdbnnnnnnbnnnnnnnb
-aaaaaaaaaaaabbbcccccccfcccccccchcccccchhcccchhccfchcccccfccccccccfccccccccccccccfcccccggggggcdcccgggbgggnnnnnnbbbonnnnnb
-aaaaaaaaaaaabbhhhcccfcccccccccchhcccccchhhccchdcfchhhcccciccjcccccccccceccciccgggccggggcfgggggggggbggggrbnnnnbbbbbbbbbbb
-aaaaaaaaaaabbccchhhccccccchhhccchdccccccchhcchhhcccchcccccccccfcccjccccccfccggcccgggcckcggggccgggcbbbggcbnnobbbbaaaabbba
-aaaaaaaaaaabcccccchhhhhhhhhdcccchhcccccccchdccchcccchcccccsccccccccccccccccggccccccccgggcgccgglgggggbbbbbnnnbbbaaaaaaaaa
-aaaaaaaaaaabcccccccccfcfccccccccchcccccccfhhhcchhccchccccjscccdcccccccccccccccccdccgggcccggglggggggggggcbnnnbbaaaaaaaaaa
-aaaaaaaaaaabccchccccccccccccccchhhhhhhhccccchccchccchcccccsfccccccccccccccccfccccccgcccccccggcgggggggggcbbbbbbaaaaaaaaaa
-aaaaabbaaabbccchhhhhhhhhhccccchhcccccchhhccchhcchccchhccccccccccceccfccicccccccccccccfcccgggcgggcgggggggcccccbaaaaaaaaaa
-aaaabbbbaabccccccdcccccchhhhhchccccccccchcfcdhcchcccchcccckcicfcccccccccccfcccctcccccccggggcgggfggggggcgdccccbaaaaaaaaaa
-aaaabccbbbbhhhcccccccccccccchhhchhhhcccchccccccchdccchhccccccccccccccccccccccccccfccccggcrcggggggggclgcggccccbaaaaaaaaaa
-aaabbcccccccchhhhhhhhhccccccdhhchcfhcccchhhhhhhhhhcccchccccccccccccccccccccccccccjccgggcccggcggccggcggccgcfccbaaaaaaaaaa
-aaabccccfcfcccccccccdhhhhhhccccchfchdccchcccccccchhccchhcccccccccccccciccccccdccccccgccccggccgfcgclgggccgccccbaaaaaaaaaa
-aaabccchcccchhhhhccccccccchhccfchffhhhcccccccccccchhccchcccccccjciccccccjcfccccccccggccfggccggccggggcgdcggcccbaaaaaaaaaa
-aaabbcchhhdhhccchhhcccccccchhccchcfcchhcfchhhhhhccdhcfchccccccccccccdccccccccccccccfcccccccggccgglcgcgcccccccbaaaaaaaaaa
-aaaabbccchhhhcfccchcchhhhccchccchccfcchhcchcccchfcchcfchhccccccfcccccccccccccccfcccccccccccgcccccgcgcgcccccccbaaaaaaaaaa
-aaaaabbccccchhhccchhcccfhhhchccchhhcccchcfhcccchhcchhccchhccccccccfcccccccicccccccccccccccfcfccccgcgcggcfccccbaaaaaaaaaa
-aaaaaabbcccfcchhhcchhccccchchhcccchhhcchchhccccchcfchhccchcccfccccccccccccccccccccckcccccccccccccgcgccgccckccbaaaaaaaaaa
-aaaaaaabbcffcccdhccchhhccfhcchdccccchcchhhcchhcchcccchccchcccccccckcccccccccccfccccccccdccccccccggcgfcgccccccbaaaaaaaaaa
-aaaaaaaabcccfccccccccchhcchcchhhhccchcchcccchdcchcccchccchccccccccccccfccccccccccfccccccccccccccgcggcccccccccbaaaaaaaaaa
-aaaaaaaabhhhhhcchhhhccchhhhccccccccchcchcccchccchcccchccchcccccccfcccccccfcccccccccccjccccccccccgccccccccfcccbbaaaaaaaaa
-aaaaaaaabsssshhhhsshhcccchhhccfccccchccdcccchcchhccchhccchcccdccccdccccdccccdccccdccccccccjcccccccccccccccccccbaaaaaaaaa
-aaaaaaaabssssssssssshhcfssshhcchhhcchcccchhhhcchcccchdcchhhhcuvuuuuuuuuuuuuuuuvuuucccccccccccfcecccccccccfccccbaaaaaaaaa
-aaaaaaaabshhhhhchhssshfcsssshhhhshhhhcccchfcfchhcccchccchccwcuuuuuuuuuuuuvuuuuuuuuccfccccccccccccccccdccccccccbbbbbaaaaa
-aaabbbbbbssssshcchssshhcsssshssssssshhccchcfchhfccchhfcchccwcuuuvuuuuuuuuuuuuuuuuucccccccccfcccccckccccjccfcccccccbaaaaa
-aabbsssbbhhhsshcchhssxhhsssshsssssssshhcchccchdcchhhfcchhcchcuuuuuuuvuuuuuuuuuuuuuccckcccccccccccccfcccccccccdcfccbaaaaa
-aabsshsshsyssshccfhsssshhcchhssssssssshcchhcchhfchccccfhdcchcdccccdccccdccccdccccdccccccccccccccccccccccccccccccccbaaaaa
-aabshhhssysyxshccfhhssssssshsssshhsschhccchcchhcchccchhhccchcccfcccccciccccccccccccbbbbccccccdccjccjcccccfcecccccbbaaaaa
-aabsshhhhhhhhhhhccchhhhhhshhssshhsssshsssshhchcfchccccccccchccfcccccccccccccccfcccbbaabbbbcccccccccccccccccccccccbaaaaaa
-aabbssshzsysssshdccccccchhhsssshxssshhsssshhccccchcccccffcchcccccccccccccccccccccbbaaaaaabbbcccccccccccccccccccccbaaaaaa
-aaabbbshsyhsxsshcccccccccchssshhsyshhssssshcccccbbbbbbbbccchcccccccccccccfccccccbbaaaaaaaaabbcccccccfcdccjcccccfcbaaaaaa
-aaaaabshshhsssshhhhhhhhccchssshsssshsssssshccccbbaaaaaabbbbbbbbbbcccckcccccccccbbaaaaaaaaaaabbccccjcccccccccccfccbaaaaaa
-aaaaabshshssshhhsssssshccchssxhhhhhhsssssshbbbbbaaaaaaaaaaaaaaaabbcccccccfccccbbaaaaaaaaaaaaabbcccccccccccfcccccbbaaaaaa
-aaaaabshshsssssssssysshssssssssssssssssscbbbaaaaaaaaaaaaaaaaaaaaabbbccccccccccbaaaaaaaaaaaaaaabbbccccfcfcccccfccbaaaaaaa
-aaaaabscshssssssssyssshssssssssssssssyssbbaaaaaaaaaaaaaaaaaaaaaaaaabbbbccccccbbaaaaaaaaaaaaaaaaabbccccccccccccccbaaaaaaa
-aaaaabhhhhhhhhhhhhhwwhhhhhhhhhhhhhhhhhhbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbccbaaaaaaaaaaaaaAaaaaabbbbbbbbbbbbbbbbaaaaaaa
-aaaaabbbsssssssssssssssssssssssssssssssbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbaaaaaaaa
-aaaaaaabbbsssssxssxssxssxssxssxssxssxssbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaabbbbbssssssssssBsysssssssssssbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaabbbssssssssssssssssssssssssbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaabbsssssssssssssssssssssssbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAaaa
-aaaaaaaaaaaaabbbbsssssssssssssssssssbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaabbbbbbbbbbbbbbCCbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaDaaDaDaDaaEFDEaaaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaDaaDDDDDaaEGDEaaaDDDDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaDDaaDDDDaaEDDEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaDDaaDDDaaEDHEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaDaaaaaDaaaDDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaDaaaAaDaaaDDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaDDaaaaaaDaaaDaDDDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaDaaaaaaDDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaDDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaDaaaaaaaaDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+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
+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
+"}
+(2,1,1) = {"
+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
+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
+"}
+(3,1,1) = {"
+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
+b
+b
+b
+b
+b
+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
+"}
+(4,1,1) = {"
+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
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+s
+s
+s
+b
+b
+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
+"}
+(5,1,1) = {"
+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
+b
+b
+b
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+b
+s
+s
+h
+s
+s
+b
+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
+"}
+(6,1,1) = {"
+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
+b
+b
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+b
+s
+h
+h
+h
+s
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+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
+b
+b
+c
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+b
+s
+s
+h
+h
+s
+s
+s
+s
+s
+s
+h
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+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
+b
+b
+c
+c
+h
+h
+c
+c
+b
+b
+a
+a
+a
+a
+a
+b
+b
+s
+s
+h
+h
+h
+h
+h
+h
+c
+h
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(9,1,1) = {"
+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
+b
+c
+f
+c
+h
+c
+c
+c
+b
+b
+b
+b
+b
+b
+b
+b
+h
+s
+h
+z
+s
+s
+s
+s
+s
+h
+s
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+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
+b
+c
+c
+c
+h
+h
+c
+c
+c
+c
+h
+s
+s
+s
+s
+h
+s
+y
+h
+s
+y
+h
+h
+h
+h
+h
+s
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+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
+b
+b
+b
+c
+f
+c
+d
+h
+c
+c
+f
+c
+h
+s
+s
+h
+s
+h
+y
+s
+h
+y
+h
+h
+s
+s
+s
+h
+s
+s
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+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
+b
+b
+b
+b
+b
+c
+h
+c
+c
+c
+h
+h
+c
+f
+f
+c
+h
+s
+s
+h
+s
+h
+s
+y
+h
+s
+s
+s
+s
+s
+s
+h
+s
+s
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+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
+b
+b
+b
+c
+c
+c
+c
+c
+h
+c
+c
+h
+h
+h
+h
+c
+c
+f
+h
+s
+s
+h
+s
+s
+s
+x
+h
+s
+x
+s
+s
+s
+s
+h
+s
+s
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+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
+b
+b
+c
+c
+c
+c
+c
+c
+h
+h
+c
+h
+c
+c
+h
+c
+c
+c
+h
+h
+s
+h
+s
+s
+s
+s
+h
+s
+s
+s
+h
+s
+s
+h
+s
+s
+b
+s
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+h
+c
+c
+c
+c
+c
+c
+c
+h
+c
+h
+c
+f
+h
+h
+c
+c
+c
+h
+s
+h
+h
+h
+h
+h
+h
+s
+s
+s
+h
+s
+s
+h
+s
+s
+s
+s
+s
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+h
+c
+c
+c
+h
+h
+c
+c
+h
+c
+h
+c
+c
+c
+h
+d
+c
+c
+h
+s
+c
+c
+c
+c
+c
+h
+h
+h
+h
+h
+s
+s
+h
+s
+x
+s
+s
+s
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+c
+c
+h
+h
+c
+c
+c
+h
+c
+c
+h
+c
+h
+h
+c
+c
+h
+h
+c
+h
+h
+s
+h
+c
+c
+c
+c
+c
+d
+c
+h
+s
+s
+s
+h
+s
+s
+s
+s
+s
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+c
+c
+c
+c
+c
+h
+c
+c
+c
+h
+d
+c
+h
+c
+c
+h
+c
+c
+c
+c
+c
+h
+s
+s
+h
+h
+h
+f
+f
+c
+c
+c
+h
+s
+s
+s
+h
+s
+s
+s
+s
+s
+s
+b
+a
+a
+a
+a
+a
+a
+D
+a
+a
+a
+a
+a
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+h
+h
+c
+c
+h
+c
+c
+h
+c
+c
+h
+h
+h
+c
+c
+c
+h
+s
+s
+s
+s
+h
+h
+h
+c
+c
+c
+h
+s
+s
+y
+h
+s
+x
+s
+s
+s
+s
+b
+D
+D
+D
+a
+a
+a
+D
+a
+a
+a
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+h
+d
+c
+c
+c
+h
+c
+c
+h
+c
+c
+h
+c
+c
+c
+c
+h
+h
+c
+c
+h
+h
+s
+s
+s
+s
+s
+h
+h
+c
+c
+h
+s
+y
+s
+w
+s
+s
+s
+s
+s
+s
+b
+a
+a
+D
+D
+D
+D
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(21,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+h
+c
+c
+c
+h
+h
+c
+f
+c
+h
+c
+c
+h
+c
+c
+h
+d
+c
+c
+c
+c
+h
+h
+c
+c
+h
+h
+s
+s
+s
+s
+s
+h
+c
+c
+h
+s
+s
+s
+w
+s
+s
+s
+s
+s
+s
+b
+a
+a
+a
+D
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(22,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+h
+h
+h
+c
+c
+h
+c
+c
+c
+h
+f
+c
+h
+c
+c
+h
+h
+c
+c
+h
+c
+c
+h
+c
+c
+c
+h
+h
+h
+x
+s
+s
+h
+c
+c
+h
+s
+s
+s
+h
+s
+x
+s
+s
+s
+s
+b
+D
+D
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(23,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+h
+h
+c
+c
+h
+f
+c
+c
+h
+c
+c
+h
+c
+c
+c
+h
+c
+c
+h
+c
+c
+h
+h
+c
+c
+c
+f
+h
+h
+s
+s
+h
+c
+c
+h
+h
+h
+h
+h
+s
+s
+s
+s
+s
+s
+b
+a
+D
+D
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(24,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+h
+h
+c
+c
+h
+c
+c
+c
+h
+f
+c
+h
+c
+c
+c
+h
+c
+c
+h
+f
+c
+c
+h
+h
+c
+f
+c
+c
+h
+h
+s
+h
+c
+c
+c
+c
+s
+s
+h
+s
+s
+s
+s
+s
+s
+b
+D
+D
+D
+D
+a
+A
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+h
+c
+c
+h
+c
+c
+c
+h
+c
+c
+h
+h
+c
+c
+h
+c
+c
+h
+h
+c
+c
+c
+h
+c
+s
+s
+s
+s
+h
+s
+h
+h
+c
+c
+c
+s
+s
+h
+s
+x
+B
+s
+s
+s
+b
+a
+D
+D
+D
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(26,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+h
+c
+h
+c
+f
+h
+c
+c
+c
+h
+c
+c
+c
+h
+c
+c
+h
+c
+c
+c
+h
+c
+f
+c
+h
+h
+s
+s
+s
+s
+c
+s
+s
+h
+c
+c
+c
+s
+s
+h
+s
+s
+s
+s
+s
+s
+b
+D
+D
+D
+D
+D
+D
+D
+D
+a
+a
+a
+a
+a
+a
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+h
+c
+f
+c
+c
+h
+c
+c
+h
+h
+c
+c
+c
+h
+c
+c
+h
+h
+c
+c
+h
+h
+h
+h
+h
+h
+s
+s
+s
+s
+c
+s
+h
+h
+h
+h
+h
+s
+s
+h
+s
+s
+y
+s
+s
+s
+b
+a
+a
+a
+a
+a
+a
+a
+a
+D
+D
+a
+a
+a
+a
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+h
+h
+c
+c
+f
+h
+c
+c
+h
+d
+c
+c
+c
+h
+c
+c
+c
+h
+h
+c
+c
+c
+c
+c
+c
+h
+h
+s
+s
+s
+h
+h
+h
+s
+s
+s
+s
+s
+s
+h
+s
+x
+s
+s
+s
+s
+b
+a
+a
+a
+a
+a
+a
+a
+a
+D
+a
+a
+a
+a
+a
+"}
+(29,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+h
+d
+c
+c
+h
+c
+c
+h
+c
+c
+c
+c
+h
+h
+d
+c
+c
+h
+h
+h
+h
+c
+c
+c
+c
+h
+h
+h
+h
+h
+s
+s
+s
+s
+s
+s
+s
+s
+h
+s
+s
+s
+s
+s
+s
+b
+E
+E
+E
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(30,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+h
+h
+h
+h
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+c
+c
+c
+c
+c
+h
+h
+h
+c
+c
+c
+h
+s
+s
+s
+s
+s
+s
+s
+s
+x
+s
+s
+h
+s
+s
+s
+s
+s
+s
+C
+F
+G
+D
+D
+D
+D
+D
+a
+a
+a
+a
+a
+a
+a
+"}
+(31,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+h
+c
+c
+c
+c
+c
+c
+h
+h
+h
+h
+c
+f
+c
+c
+c
+c
+d
+h
+c
+f
+c
+h
+s
+s
+s
+s
+s
+s
+h
+h
+h
+s
+s
+h
+s
+x
+s
+s
+s
+s
+C
+D
+D
+D
+H
+D
+D
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(32,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+h
+h
+h
+c
+c
+h
+h
+h
+c
+c
+c
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+c
+c
+h
+h
+s
+s
+s
+s
+h
+h
+h
+s
+h
+s
+s
+h
+s
+s
+s
+s
+s
+s
+b
+E
+E
+E
+E
+a
+a
+D
+a
+a
+a
+a
+a
+a
+a
+"}
+(33,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+h
+h
+c
+c
+c
+h
+h
+h
+c
+h
+c
+c
+h
+h
+h
+h
+h
+h
+h
+c
+c
+h
+c
+c
+h
+s
+s
+s
+s
+h
+h
+x
+s
+s
+h
+s
+s
+h
+s
+s
+s
+s
+s
+s
+b
+a
+a
+a
+a
+a
+a
+D
+D
+a
+a
+a
+a
+a
+a
+"}
+(34,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+h
+c
+c
+c
+c
+d
+h
+h
+h
+c
+c
+h
+c
+f
+f
+c
+c
+h
+c
+c
+c
+c
+c
+h
+h
+s
+s
+s
+h
+s
+s
+y
+s
+h
+s
+s
+h
+s
+x
+s
+s
+s
+s
+b
+a
+a
+a
+a
+a
+a
+D
+D
+a
+a
+a
+a
+a
+a
+"}
+(35,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+h
+h
+c
+c
+c
+c
+c
+c
+h
+c
+c
+h
+f
+c
+f
+f
+c
+h
+h
+c
+c
+c
+c
+c
+h
+s
+s
+s
+s
+s
+s
+s
+s
+h
+s
+s
+h
+s
+s
+s
+s
+s
+s
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(36,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+h
+c
+c
+c
+c
+c
+c
+h
+c
+c
+h
+h
+h
+h
+c
+f
+c
+h
+c
+c
+c
+c
+c
+h
+s
+s
+s
+s
+s
+s
+h
+h
+h
+s
+s
+h
+s
+s
+s
+s
+s
+s
+b
+D
+D
+a
+a
+a
+a
+a
+a
+a
+D
+a
+a
+a
+a
+"}
+(37,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+h
+c
+c
+c
+c
+c
+c
+h
+c
+c
+c
+c
+d
+h
+c
+c
+c
+h
+h
+h
+h
+h
+h
+h
+h
+s
+s
+c
+s
+h
+h
+s
+s
+s
+s
+h
+s
+x
+s
+s
+s
+b
+b
+a
+D
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(38,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+h
+h
+c
+c
+c
+c
+c
+h
+c
+c
+c
+c
+c
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+s
+h
+h
+h
+s
+s
+s
+s
+y
+h
+s
+s
+s
+b
+b
+b
+a
+a
+D
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(39,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+c
+h
+h
+c
+c
+c
+c
+h
+h
+c
+c
+c
+c
+c
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+s
+s
+s
+s
+s
+s
+s
+h
+s
+s
+b
+a
+a
+a
+a
+a
+D
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(40,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+f
+f
+c
+c
+h
+h
+c
+c
+c
+c
+h
+c
+c
+c
+c
+c
+c
+h
+h
+h
+h
+h
+h
+d
+c
+c
+c
+c
+c
+c
+s
+s
+s
+s
+s
+s
+s
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(41,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+h
+h
+c
+c
+c
+c
+c
+c
+c
+h
+c
+c
+c
+c
+h
+h
+h
+h
+h
+c
+f
+c
+c
+c
+h
+c
+c
+c
+c
+c
+c
+c
+c
+c
+s
+s
+s
+s
+s
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(42,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+h
+c
+c
+c
+d
+h
+h
+c
+c
+h
+h
+c
+f
+c
+c
+c
+c
+h
+c
+c
+c
+c
+f
+h
+h
+c
+c
+c
+h
+h
+h
+h
+h
+c
+s
+s
+s
+s
+s
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(43,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+h
+h
+c
+c
+c
+h
+h
+c
+c
+c
+h
+h
+h
+c
+c
+f
+c
+h
+c
+c
+h
+h
+h
+h
+c
+c
+c
+c
+h
+f
+c
+c
+h
+h
+h
+h
+h
+h
+h
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(44,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+h
+h
+c
+c
+h
+h
+c
+c
+c
+c
+d
+h
+c
+c
+c
+c
+h
+c
+c
+h
+c
+c
+c
+c
+c
+c
+c
+h
+c
+f
+c
+c
+c
+h
+h
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(45,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+h
+h
+c
+c
+h
+h
+h
+c
+c
+c
+h
+h
+h
+d
+c
+h
+c
+c
+h
+c
+c
+c
+h
+h
+h
+h
+h
+f
+c
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(46,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+c
+c
+c
+h
+h
+c
+c
+c
+h
+h
+h
+c
+c
+c
+h
+h
+c
+h
+c
+c
+h
+c
+c
+c
+h
+d
+c
+c
+c
+c
+h
+h
+h
+h
+h
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(47,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+h
+c
+c
+c
+c
+d
+h
+c
+c
+c
+c
+c
+c
+h
+c
+c
+h
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+d
+h
+h
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(48,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+h
+c
+c
+c
+c
+c
+h
+h
+h
+c
+c
+c
+c
+h
+c
+c
+h
+h
+h
+c
+c
+c
+c
+h
+h
+h
+f
+c
+f
+c
+f
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(49,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+c
+c
+f
+f
+c
+c
+h
+h
+h
+h
+h
+h
+c
+c
+c
+f
+h
+h
+h
+h
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+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
+"}
+(50,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+d
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+h
+h
+b
+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
+"}
+(51,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+i
+c
+c
+c
+c
+c
+c
+h
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+d
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+h
+c
+c
+c
+c
+b
+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
+"}
+(52,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+f
+c
+c
+c
+d
+c
+c
+c
+c
+h
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+h
+c
+c
+c
+c
+c
+c
+c
+h
+h
+c
+c
+c
+c
+b
+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
+"}
+(53,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+h
+h
+h
+c
+c
+c
+c
+c
+c
+c
+h
+h
+c
+c
+c
+h
+h
+h
+h
+f
+c
+c
+c
+c
+b
+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
+"}
+(54,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+c
+c
+c
+f
+f
+c
+h
+h
+h
+h
+h
+d
+c
+f
+c
+c
+h
+c
+c
+b
+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
+"}
+(55,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+c
+c
+c
+c
+j
+c
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+h
+c
+c
+b
+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
+"}
+(56,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+d
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+c
+f
+b
+b
+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
+"}
+(57,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+e
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+c
+c
+c
+c
+c
+h
+h
+h
+h
+d
+c
+c
+f
+c
+b
+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
+"}
+(58,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+i
+c
+c
+j
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+h
+h
+h
+h
+h
+h
+c
+c
+c
+c
+c
+c
+c
+c
+b
+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
+"}
+(59,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+k
+c
+c
+c
+c
+c
+c
+s
+s
+s
+c
+k
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+c
+c
+c
+c
+c
+c
+c
+c
+b
+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
+"}
+(60,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+c
+e
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+h
+w
+w
+h
+h
+h
+h
+h
+h
+b
+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
+"}
+(61,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+j
+c
+c
+c
+c
+c
+i
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+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
+"}
+(62,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+d
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+d
+u
+u
+u
+u
+d
+c
+c
+c
+c
+b
+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
+"}
+(63,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+d
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+v
+u
+u
+u
+c
+c
+f
+c
+c
+b
+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
+"}
+(64,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+j
+c
+f
+c
+c
+c
+c
+c
+c
+u
+u
+u
+u
+c
+f
+c
+c
+c
+b
+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
+"}
+(65,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+c
+e
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+u
+u
+v
+u
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(66,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+j
+c
+c
+f
+c
+c
+c
+c
+c
+e
+c
+c
+c
+c
+i
+c
+c
+c
+c
+c
+c
+f
+c
+u
+u
+u
+u
+c
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(67,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+j
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+k
+c
+c
+d
+u
+u
+u
+u
+d
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(68,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+u
+u
+u
+u
+c
+c
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(69,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+k
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+c
+d
+c
+c
+c
+c
+c
+c
+c
+u
+u
+u
+v
+c
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(70,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+u
+u
+u
+u
+c
+c
+c
+c
+c
+k
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(71,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+d
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+i
+c
+c
+c
+c
+c
+c
+f
+c
+c
+u
+u
+u
+u
+c
+i
+c
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(72,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+i
+c
+c
+c
+c
+c
+c
+c
+c
+e
+c
+c
+c
+c
+i
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+d
+u
+u
+u
+u
+d
+c
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(73,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+j
+c
+c
+c
+c
+c
+c
+c
+c
+u
+u
+u
+u
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(74,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+g
+g
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+u
+v
+u
+u
+c
+c
+c
+c
+f
+c
+f
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(75,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+g
+g
+g
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+f
+c
+c
+i
+c
+c
+c
+c
+c
+u
+u
+u
+u
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(76,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+g
+c
+c
+i
+c
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+u
+u
+u
+u
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(77,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+g
+c
+c
+c
+c
+c
+l
+c
+c
+c
+c
+g
+g
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+d
+u
+u
+u
+u
+d
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(78,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+g
+c
+c
+c
+c
+g
+c
+c
+c
+c
+g
+c
+c
+c
+c
+c
+c
+c
+d
+c
+c
+c
+c
+c
+c
+c
+c
+c
+u
+u
+u
+u
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(79,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+g
+g
+k
+c
+c
+g
+c
+c
+c
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+v
+u
+u
+u
+c
+c
+f
+c
+c
+c
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(80,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+g
+c
+c
+c
+g
+c
+c
+c
+g
+c
+c
+c
+c
+c
+t
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+c
+c
+u
+u
+u
+u
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(81,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+g
+g
+c
+g
+c
+c
+c
+f
+g
+c
+c
+d
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+u
+u
+u
+u
+c
+c
+c
+c
+b
+b
+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
+"}
+(82,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+g
+c
+g
+c
+g
+c
+c
+c
+g
+c
+c
+c
+c
+c
+f
+j
+c
+c
+c
+c
+c
+c
+c
+f
+c
+d
+u
+u
+u
+u
+d
+c
+c
+b
+b
+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
+"}
+(83,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+g
+c
+g
+c
+g
+c
+c
+c
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+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
+"}
+(84,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+g
+c
+g
+c
+c
+g
+c
+g
+g
+c
+g
+g
+c
+c
+c
+c
+c
+g
+f
+c
+c
+k
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+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
+"}
+(85,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+l
+g
+g
+c
+c
+g
+c
+g
+c
+c
+g
+c
+c
+c
+c
+g
+g
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+b
+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
+"}
+(86,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+g
+g
+g
+d
+g
+c
+g
+c
+g
+g
+c
+f
+c
+c
+g
+c
+c
+c
+c
+c
+c
+c
+c
+j
+c
+c
+c
+c
+k
+c
+b
+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
+"}
+(87,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+g
+c
+g
+g
+g
+g
+g
+k
+g
+c
+c
+c
+c
+g
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+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
+"}
+(88,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+g
+c
+g
+g
+g
+g
+c
+c
+g
+c
+c
+c
+g
+g
+c
+c
+f
+c
+c
+c
+c
+d
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+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
+"}
+(89,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+g
+g
+i
+c
+g
+f
+g
+c
+c
+c
+c
+g
+c
+c
+c
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+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
+"}
+(90,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+g
+g
+g
+c
+g
+g
+g
+g
+g
+c
+g
+g
+r
+c
+g
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+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
+"}
+(91,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+i
+c
+g
+g
+g
+c
+g
+g
+g
+c
+g
+c
+g
+g
+c
+g
+g
+c
+c
+c
+f
+c
+c
+c
+c
+j
+c
+c
+c
+c
+c
+c
+c
+b
+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
+"}
+(92,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+g
+g
+l
+g
+g
+g
+g
+g
+c
+g
+g
+g
+c
+g
+g
+c
+c
+g
+g
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+b
+b
+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
+"}
+(93,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+g
+g
+g
+g
+c
+g
+c
+g
+l
+g
+c
+g
+g
+c
+c
+g
+g
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+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
+"}
+(94,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+g
+g
+g
+c
+d
+g
+c
+g
+g
+c
+g
+g
+g
+g
+g
+g
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+d
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(95,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+g
+g
+g
+g
+c
+c
+g
+g
+l
+g
+g
+g
+g
+g
+g
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(96,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+g
+g
+g
+c
+c
+g
+g
+g
+g
+g
+g
+f
+g
+c
+c
+c
+g
+c
+c
+c
+c
+c
+c
+c
+e
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(97,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+g
+g
+g
+c
+g
+g
+g
+g
+g
+c
+g
+g
+c
+g
+g
+g
+c
+c
+c
+g
+g
+g
+c
+c
+c
+c
+c
+c
+j
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(98,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+g
+g
+g
+g
+c
+g
+g
+g
+g
+g
+g
+g
+c
+g
+l
+g
+g
+g
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(99,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+g
+g
+i
+b
+b
+g
+b
+b
+g
+g
+g
+g
+g
+g
+g
+l
+g
+c
+c
+c
+c
+c
+g
+c
+c
+c
+c
+k
+c
+c
+c
+c
+c
+c
+j
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(100,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+d
+g
+g
+b
+g
+g
+g
+b
+g
+g
+g
+g
+g
+c
+c
+g
+g
+g
+g
+g
+g
+g
+g
+c
+c
+c
+c
+c
+f
+c
+j
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(101,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+b
+b
+g
+b
+g
+b
+b
+g
+g
+g
+g
+l
+g
+g
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(102,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+b
+g
+c
+g
+g
+g
+b
+g
+g
+g
+g
+g
+g
+g
+g
+g
+g
+g
+c
+c
+c
+c
+c
+c
+d
+c
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(103,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+b
+g
+g
+g
+g
+g
+b
+g
+g
+g
+c
+c
+c
+c
+d
+c
+c
+g
+g
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+d
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(104,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+b
+c
+d
+g
+r
+c
+b
+c
+c
+g
+g
+g
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+j
+c
+c
+c
+c
+c
+c
+c
+c
+f
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(105,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+n
+b
+b
+b
+b
+b
+c
+d
+g
+g
+g
+g
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(106,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+p
+n
+n
+n
+n
+n
+n
+n
+n
+b
+c
+c
+c
+c
+c
+g
+c
+c
+c
+c
+c
+c
+f
+c
+f
+c
+c
+c
+c
+f
+c
+c
+j
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(107,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+n
+n
+n
+n
+n
+n
+n
+n
+n
+b
+c
+c
+c
+f
+c
+c
+c
+c
+c
+k
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(108,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+n
+n
+n
+n
+n
+n
+o
+n
+n
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+e
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(109,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+n
+n
+n
+n
+n
+b
+b
+b
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(110,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+n
+n
+n
+n
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+c
+c
+c
+d
+c
+c
+c
+c
+c
+c
+c
+f
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(111,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+n
+n
+n
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+c
+c
+c
+c
+c
+c
+c
+f
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(112,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+n
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+f
+c
+c
+c
+c
+f
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(113,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+n
+q
+n
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(114,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+n
+n
+b
+n
+o
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(115,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+o
+n
+n
+n
+n
+n
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+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
+"}
+(116,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+n
+n
+n
+n
+n
+n
+b
+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
+a
+a
+a
+a
+"}
+(117,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+n
+n
+n
+n
+n
+n
+b
+b
+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
+a
+a
+a
+"}
+(118,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+m
+n
+n
+n
+n
+n
+n
+b
+b
+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
+a
+a
+a
+"}
+(119,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+n
+n
+n
+o
+n
+n
+n
+b
+b
+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
+a
+a
+a
+"}
+(120,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+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
+a
+a
+a
+a
"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_wwiioutpost.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_wwiioutpost.dmm
deleted file mode 100644
index 5e745c1c7d8..00000000000
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_wwiioutpost.dmm
+++ /dev/null
@@ -1,2489 +0,0 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/turf/template_noop,
-/area/template_noop)
-"ab" = (
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/lavaland/surface/outdoors)
-"ac" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/lavaland/surface/outdoors)
-"ad" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/lavaland/surface/outdoors)
-"ae" = (
-/turf/open/floor/plating/lava/smooth/lava_land_surface,
-/area/lavaland/surface/outdoors)
-"af" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating{
- baseturf = /turf/open/chasm/straight_down/lava_land_surface
- },
-/area/lavaland/surface/outdoors)
-"ag" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/chasm/straight_down/lava_land_surface
- },
-/area/lavaland/surface/outdoors)
-"ah" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/ushanka;
- name = "russian remains";
- uniform = /obj/item/clothing/under/soviet
- },
-/obj/item/weapon/gun/projectile/revolver/nagant,
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/ammo_casing/a357,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/lavaland/surface/outdoors)
-"ai" = (
-/obj/item/weapon/c4,
-/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
-/area/lavaland/surface/outdoors)
-"aj" = (
-/turf/closed/wall/r_wall{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"ak" = (
-/obj/item/stack/sheet/plasteel,
-/obj/item/ammo_casing/a357,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/powered)
-"al" = (
-/obj/item/stack/sheet/plasteel,
-/obj/item/stack/rods,
-/obj/item/ammo_casing/a357,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/powered)
-"am" = (
-/obj/item/stack/rods,
-/obj/item/ammo_casing/a357,
-/obj/item/ammo_casing/mm556x45,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/powered)
-"an" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/ushanka;
- name = "russian remains";
- uniform = /obj/item/clothing/under/soviet
- },
-/obj/item/stack/sheet/plasteel,
-/obj/item/weapon/gun/projectile/shotgun/boltaction,
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/ammo_casing/mm556x45,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/powered)
-"ao" = (
-/obj/structure/filingcabinet,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"ap" = (
-/obj/structure/window{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aq" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"ar" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/helmet/stahlhelm;
- name = "german remains";
- uniform = /obj/item/clothing/under/wwii
- },
-/obj/item/weapon/gun/projectile/automatic/pistol/APS,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"as" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/powered)
-"at" = (
-/obj/item/ammo_casing/mm556x45,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/powered)
-"au" = (
-/obj/item/ammo_casing/a357,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"av" = (
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aw" = (
-/obj/structure/window{
- icon_state = "rwindow";
- dir = 8
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"ax" = (
-/obj/structure/window{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/item/weapon/shard,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"ay" = (
-/obj/effect/gibspawner/human,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"az" = (
-/obj/machinery/constructable_frame/machine_frame{
- desc = "A specialized hypersleep chamber meant to keep its occupent in suspended animation for long periods of time. The initials 'A.D' are marked on a specialized plaque. The hypersleeper is empty. ";
- dir = 2;
- icon = 'icons/obj/Cryogenic2.dmi';
- icon_state = "sleeper-o";
- name = "broken hypersleep chamber";
- pixel_y = 3
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aA" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/ushanka;
- name = "russian remains";
- uniform = /obj/item/clothing/under/soviet
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aB" = (
-/obj/structure/filingcabinet,
-/obj/item/weapon/paper/pamphlet{
- icon = 'icons/obj/items.dmi';
- icon_state = "blueprints";
- info = "A strange looking set of blueprints with the actual schematics for whatever was once on it ripped out in what appears to be in a haste. The top of what remains of the blueprints spells out 'aus der Asche'.";
- name = "ripped blueprints"
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aC" = (
-/obj/item/weapon/shard,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aD" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aE" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/helmet/stahlhelm;
- name = "german remains";
- uniform = /obj/item/clothing/under/wwii
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aF" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/helmet/stahlhelm;
- name = "german remains";
- uniform = /obj/item/clothing/under/wwii
- },
-/obj/structure/table_frame,
-/obj/effect/decal/cleanable/blood/old,
-/obj/machinery/light,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aG" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aH" = (
-/obj/structure/table,
-/obj/machinery/light,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aI" = (
-/obj/machinery/door/poddoor/preopen{
- id = "lavagerman"
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aJ" = (
-/turf/open/floor/plasteel/stairs{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aK" = (
-/mob/living/simple_animal/hostile/wwii/bomber,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aL" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aM" = (
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aN" = (
-/obj/item/ammo_casing/c9mm,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aO" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aP" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aQ" = (
-/mob/living/simple_animal/hostile/wwii/melee,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aR" = (
-/obj/effect/spawner/lootdrop/crate_spawner,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aS" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/ushanka;
- name = "russian remains";
- uniform = /obj/item/clothing/under/soviet
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aT" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/ammo_casing/c9mm,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aU" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aV" = (
-/obj/effect/gibspawner/human,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aW" = (
-/obj/structure/closet/crate,
-/obj/item/weapon/dnainjector/dwarf,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aX" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "first-aid kit"
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aY" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"aZ" = (
-/obj/structure/closet/crate,
-/obj/item/weapon/dnainjector/timed/hulk,
-/obj/item/weapon/dnainjector/wackymut,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"ba" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bb" = (
-/obj/structure/table,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bc" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bd" = (
-/obj/item/weapon/c4,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"be" = (
-/obj/item/stack/sheet/plasteel,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bf" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/helmet/stahlhelm;
- name = "german remains";
- uniform = /obj/item/clothing/under/wwii
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bg" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bh" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen/edagger,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel/black{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bi" = (
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bj" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bk" = (
-/turf/closed/wall{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bl" = (
-/obj/machinery/door/poddoor{
- id = "lavagerman"
- },
-/turf/open/floor/plasteel{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bm" = (
-/obj/item/stack/rods,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/powered)
-"bn" = (
-/obj/item/ammo_casing/c9mm,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bo" = (
-/obj/item/ammo_casing/c9mm,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bp" = (
-/obj/machinery/door/poddoor{
- id = "lavagerman1";
- name = "secure storage a"
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bq" = (
-/obj/item/stack/sheet/plasteel,
-/turf/open/floor/plasteel/stairs{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"br" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface;
- icon_plating = "platingdmg1";
- icon_state = "platingdmg1"
- },
-/area/ruin/powered)
-"bs" = (
-/obj/machinery/door/poddoor{
- id = "lavagerman2";
- name = "secure storage b"
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bt" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bu" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/helmet/stahlhelm;
- name = "german remains";
- uniform = /obj/item/clothing/under/wwii
- },
-/obj/item/weapon/gun/projectile/automatic/pistol/APS,
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/ammo_casing/c9mm,
-/obj/item/ammo_casing/c9mm,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bv" = (
-/obj/effect/gibspawner/human,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bw" = (
-/obj/machinery/button/door{
- id = "lavagerman1";
- pixel_y = 32
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bx" = (
-/obj/machinery/door/airlock/highsecurity,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"by" = (
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bz" = (
-/obj/machinery/button/door{
- id = "lavagerman2";
- pixel_y = 32
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bA" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bB" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/ushanka;
- name = "russian remains";
- uniform = /obj/item/clothing/under/soviet
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bC" = (
-/obj/item/ammo_casing/a357,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bD" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bE" = (
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bF" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/helmet/stahlhelm;
- name = "german remains";
- uniform = /obj/item/clothing/under/wwii
- },
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bG" = (
-/obj/structure/table_frame,
-/obj/item/stack/sheet/metal,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bH" = (
-/obj/effect/decal/cleanable/blood/old,
-/obj/item/ammo_casing/c9mm,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bI" = (
-/obj/structure/table,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bJ" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/ushanka;
- name = "russian remains";
- uniform = /obj/item/clothing/under/soviet
- },
-/obj/item/weapon/gun/projectile/shotgun/boltaction,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bK" = (
-/obj/structure/table,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bL" = (
-/obj/effect/mob_spawn/human/skeleton{
- helmet = /obj/item/clothing/head/helmet/stahlhelm;
- name = "german remains";
- uniform = /obj/item/clothing/under/wwii
- },
-/obj/item/weapon/gun/projectile/automatic/pistol/APS,
-/obj/effect/decal/cleanable/blood/old,
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bM" = (
-/obj/machinery/door/poddoor{
- id = "lavagerman"
- },
-/turf/open/floor/plasteel/neutral{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bN" = (
-/obj/machinery/door/airlock/glass_external,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bO" = (
-/obj/structure/window{
- icon_state = "rwindow";
- dir = 8
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bP" = (
-/obj/machinery/porta_turret/stationary,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bQ" = (
-/obj/structure/window{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bR" = (
-/obj/structure/sign/xeno_warning_mining{
- pixel_y = -32
- },
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bS" = (
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bT" = (
-/obj/structure/sign/xeno_warning_mining{
- pixel_y = -32
- },
-/obj/item/weapon/rcd/loaded,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bU" = (
-/obj/structure/window{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window{
- tag = "icon-rwindow";
- icon_state = "rwindow";
- dir = 2
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bV" = (
-/obj/structure/window{
- tag = "icon-rwindow";
- icon_state = "rwindow";
- dir = 2
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-"bW" = (
-/obj/structure/window{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window{
- tag = "icon-rwindow";
- icon_state = "rwindow";
- dir = 2
- },
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
-/area/ruin/powered)
-
-(1,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-aa
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(2,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(3,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-aa
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(4,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(5,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(6,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(7,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-aj
-bi
-bn
-bi
-bA
-bA
-bA
-bi
-aj
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(8,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-aj
-bi
-bo
-bu
-bi
-bi
-bi
-bi
-aj
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(9,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-bj
-bi
-bv
-bo
-bi
-bi
-bi
-aj
-ab
-ae
-ae
-ae
-ae
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(10,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-bk
-bk
-bw
-bi
-bi
-bF
-bi
-aj
-ab
-ae
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(11,1,1) = {"
-aa
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-aj
-ao
-av
-aP
-aX
-bc
-av
-bp
-bi
-bA
-bA
-bI
-bi
-aj
-ab
-ae
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(12,1,1) = {"
-aa
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-aj
-ao
-av
-aQ
-aY
-av
-av
-bk
-as
-bk
-bk
-bk
-bM
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(13,1,1) = {"
-aa
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-ao
-aK
-aR
-aZ
-aR
-aR
-bk
-bi
-bi
-bD
-bi
-bi
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(14,1,1) = {"
-aa
-aa
-ab
-ab
-ab
-ae
-ae
-ae
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-bk
-bi
-bB
-bC
-bi
-bi
-aj
-bO
-bU
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(15,1,1) = {"
-aa
-aa
-ab
-ab
-ab
-ae
-ae
-ae
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-bi
-bC
-bi
-bF
-bi
-aj
-bP
-bV
-ae
-ae
-ae
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(16,1,1) = {"
-aa
-aa
-aa
-ab
-ab
-ae
-ae
-ae
-ab
-aj
-aj
-ao
-ao
-aB
-ao
-aj
-aj
-aL
-aM
-aM
-aL
-aj
-aj
-bi
-bi
-bi
-bi
-bi
-aj
-bQ
-bW
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(17,1,1) = {"
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ae
-ab
-aj
-aj
-ap
-ax
-av
-ap
-aj
-aj
-aM
-aM
-aM
-aM
-aj
-aj
-bx
-bk
-bk
-bk
-bk
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(18,1,1) = {"
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ae
-ab
-aj
-aj
-aq
-av
-aC
-aF
-aj
-aj
-aM
-aM
-aS
-aM
-aj
-aj
-bi
-bD
-bi
-bi
-bi
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(19,1,1) = {"
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ab
-ab
-aj
-aj
-ar
-ay
-av
-aG
-aj
-aj
-aM
-aS
-aN
-aM
-aj
-aj
-bi
-bi
-bi
-by
-bi
-bk
-aj
-aj
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(20,1,1) = {"
-aa
-aa
-ac
-ab
-ae
-ae
-ae
-ab
-ad
-ak
-aj
-as
-av
-au
-aD
-aI
-aJ
-aM
-aM
-aM
-bd
-bl
-bq
-by
-bB
-bi
-bi
-bi
-bk
-bR
-aj
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(21,1,1) = {"
-aa
-aa
-ad
-ab
-af
-ae
-ag
-ab
-ah
-al
-am
-at
-az
-aD
-av
-aj
-aj
-aM
-aT
-aM
-be
-bm
-br
-bi
-bi
-bi
-bi
-bi
-bN
-bS
-bN
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(22,1,1) = {"
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ab
-ai
-aj
-an
-au
-aA
-av
-av
-aI
-aJ
-aM
-aU
-aM
-aN
-bl
-bq
-bi
-bi
-bi
-bJ
-bi
-bk
-bT
-aj
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(23,1,1) = {"
-aa
-aa
-aa
-ad
-ae
-ae
-ae
-ab
-ab
-aj
-aj
-av
-av
-av
-av
-aj
-aj
-aM
-aM
-aM
-bf
-aj
-aj
-bi
-by
-bi
-bi
-bi
-bk
-aj
-aj
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(24,1,1) = {"
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ab
-ab
-aj
-aj
-aq
-av
-aE
-aH
-aj
-aj
-aN
-aM
-aM
-aM
-aj
-aj
-bi
-bt
-bi
-bi
-bi
-aj
-ab
-ab
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(25,1,1) = {"
-aa
-aa
-aa
-ab
-ae
-ae
-ae
-ae
-ab
-aj
-aj
-aw
-aw
-aw
-aw
-aj
-aj
-aM
-aV
-aM
-aM
-aj
-aj
-bx
-bk
-bk
-bk
-bk
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(26,1,1) = {"
-aa
-aa
-ab
-ab
-ae
-ae
-ae
-ae
-ab
-aj
-aj
-ao
-ao
-ao
-ao
-aj
-aj
-aO
-aM
-aM
-aO
-aj
-aj
-bi
-bi
-bi
-bi
-bi
-aj
-bO
-bU
-ae
-ae
-ae
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(27,1,1) = {"
-aa
-aa
-ab
-ab
-ae
-ae
-ae
-ae
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-bi
-bi
-bi
-bi
-bi
-aj
-bP
-bV
-ae
-ae
-ae
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(28,1,1) = {"
-aa
-aa
-ab
-ab
-ae
-ae
-ae
-ae
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-bk
-bi
-bB
-bi
-by
-bi
-aj
-bQ
-bW
-ae
-ae
-ae
-aa
-aa
-aa
-aa
-aa
-aa
-"}
-(29,1,1) = {"
-aa
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-ao
-aK
-aW
-aR
-bg
-aR
-bk
-bi
-bE
-bi
-bt
-bi
-aj
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(30,1,1) = {"
-aa
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-ao
-av
-aQ
-ba
-av
-av
-bk
-bk
-bk
-br
-bk
-bM
-aj
-ab
-ae
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(31,1,1) = {"
-aa
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-ao
-av
-aP
-bb
-bh
-av
-bs
-bi
-bA
-bG
-bK
-bi
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(32,1,1) = {"
-aa
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-bk
-bk
-bz
-bi
-bi
-bi
-bi
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(33,1,1) = {"
-aa
-aa
-aa
-aa
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-bj
-bi
-bi
-bF
-bo
-bL
-bo
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(34,1,1) = {"
-aa
-aa
-aa
-aa
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-aj
-bi
-bi
-bi
-bi
-bH
-bi
-bo
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(35,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-aj
-bi
-bt
-bi
-bA
-bA
-bA
-bi
-aj
-ab
-ab
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(36,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ab
-ab
-ae
-ae
-ab
-ab
-ab
-aa
-aa
-aa
-aa
-"}
-(37,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(38,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(39,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-"}
-(40,1,1) = {"
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-ab
-ab
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-"}
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm
index e2069464413..75239b9ae53 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm
@@ -1,81 +1,2112 @@
-"a" = (/turf/template_noop,/area/template_noop)
-"b" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/alien/resin/wall,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"c" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/alien/resin/wall,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"d" = (/obj/structure/alien/resin/wall,/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"e" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/alien/weeds{desc = "A large mottled egg."; health = 100; icon_state = "egg_hatched"; name = "egg"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"f" = (/obj/structure/alien/weeds,/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"g" = (/obj/structure/alien/weeds,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"h" = (/obj/structure/alien/weeds,/obj/structure/alien/resin/wall,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"i" = (/obj/structure/alien/weeds,/obj/structure/bed/nest,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"j" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/mob/living/simple_animal/hostile/alien,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"k" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/alien/weeds{desc = "A large mottled egg."; health = 100; icon_state = "egg_hatched"; name = "egg"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"l" = (/obj/structure/alien/weeds/node,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"m" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/bed/nest,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"n" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/bed/nest,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"o" = (/obj/structure/alien/weeds,/obj/structure/bed/nest,/obj/effect/decal/cleanable/blood/gibs,/obj/item/clothing/mask/facehugger{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/obj/item/weapon/gun/projectile/automatic/pistol,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"p" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"q" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"r" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/alien/resin/wall,/obj/structure/alien/resin/wall,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"s" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/alien/egg,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"t" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/mob/living/simple_animal/hostile/alien/sentinel,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"u" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/decal/cleanable/blood/gibs,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"v" = (/obj/structure/alien/weeds/node,/obj/effect/decal/cleanable/blood,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"w" = (/obj/structure/alien/weeds,/obj/effect/decal/cleanable/blood/gibs,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"x" = (/obj/structure/alien/weeds,/obj/structure/alien/weeds{desc = "A large mottled egg."; health = 100; icon_state = "egg_hatched"; name = "egg"},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"y" = (/obj/structure/alien/weeds/node,/obj/structure/alien/resin/wall,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"z" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/bed/nest,/obj/effect/decal/cleanable/blood/gibs,/obj/item/clothing/mask/facehugger{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/obj/item/clothing/under/rank/security,/obj/item/clothing/suit/armor/vest,/obj/item/weapon/melee/baton/loaded,/obj/item/clothing/head/helmet,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"A" = (/obj/structure/alien/weeds,/obj/structure/alien/egg,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"B" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/alien/weeds{desc = "A large mottled egg."; health = 100; icon_state = "egg_hatched"; name = "egg"},/obj/effect/decal/cleanable/blood/gibs,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"C" = (/obj/structure/alien/weeds,/obj/structure/alien/weeds{desc = "A large mottled egg."; health = 100; icon_state = "egg_hatched"; name = "egg"},/obj/effect/decal/cleanable/blood,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"D" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/effect/decal/cleanable/blood/gibs,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"E" = (/obj/structure/alien/weeds,/mob/living/simple_animal/hostile/alien/drone{plants_off = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"F" = (/obj/structure/alien/weeds,/mob/living/simple_animal/hostile/alien/queen/large{desc = "A gigantic alien who is in charge of the hive and all of its loyal servants."; name = "alien queen"; pixel_x = -16; plants_off = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"G" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/mob/living/simple_animal/hostile/alien/drone{plants_off = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"H" = (/obj/structure/alien/weeds,/obj/effect/decal/cleanable/blood,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"I" = (/obj/structure/alien/weeds,/obj/structure/bed/nest,/obj/effect/decal/cleanable/blood/gibs,/obj/effect/decal/cleanable/blood,/obj/item/clothing/mask/facehugger{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/obj/item/clothing/under/syndicate,/obj/item/clothing/glasses/night,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"J" = (/obj/structure/alien/weeds,/mob/living/simple_animal/hostile/alien/sentinel,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"K" = (/obj/structure/alien/weeds/node,/mob/living/simple_animal/hostile/alien,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"L" = (/obj/structure/alien/weeds/node,/mob/living/simple_animal/hostile/alien/drone{plants_off = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"M" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/bed/nest,/obj/effect/decal/cleanable/blood/gibs,/obj/item/weapon/tank/internals/oxygen,/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{icon_state = "facehugger_impregnated"; item_state = "facehugger_impregnated"; stat = 2},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"N" = (/obj/structure/alien/weeds,/obj/structure/alien/resin/wall,/turf/template_noop,/area/template_noop)
-"O" = (/obj/structure/alien/weeds/node,/turf/template_noop,/area/template_noop)
-"P" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/obj/structure/alien/resin/wall,/turf/template_noop,/area/template_noop)
-"Q" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/effect/decal/cleanable/blood,/mob/living/simple_animal/hostile/alien/drone{plants_off = 1},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/awaycontent/a5{always_unpowered = 1; has_gravity = 1; name = "The Hive"; power_environ = 0; power_equip = 0; power_light = 0; poweralm = 0})
-"R" = (/obj/structure/alien/weeds,/turf/template_noop,/area/template_noop)
-"S" = (/obj/structure/alien/weeds{icon_state = "weeds2"},/turf/template_noop,/area/template_noop)
-"T" = (/obj/structure/alien/weeds/node,/obj/structure/alien/resin/wall,/turf/template_noop,/area/template_noop)
-"U" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/obj/structure/alien/resin/wall,/turf/template_noop,/area/template_noop)
-"V" = (/obj/structure/alien/weeds{icon_state = "weeds1"},/turf/template_noop,/area/template_noop)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/structure/alien/resin/wall,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"c" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/obj/structure/alien/resin/wall,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"d" = (
+/obj/structure/alien/resin/wall,
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"e" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/structure/alien/weeds{
+ desc = "A large mottled egg.";
+ health = 100;
+ icon_state = "egg_hatched";
+ name = "egg"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"f" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"g" = (
+/obj/structure/alien/weeds,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"h" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/resin/wall,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"i" = (
+/obj/structure/alien/weeds,
+/obj/structure/bed/nest,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"j" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/mob/living/simple_animal/hostile/alien,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"k" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/obj/structure/alien/weeds{
+ desc = "A large mottled egg.";
+ health = 100;
+ icon_state = "egg_hatched";
+ name = "egg"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"l" = (
+/obj/structure/alien/weeds/node,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"m" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/structure/bed/nest,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"n" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/obj/structure/bed/nest,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"o" = (
+/obj/structure/alien/weeds,
+/obj/structure/bed/nest,
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/item/clothing/mask/facehugger{
+ icon_state = "facehugger_impregnated";
+ item_state = "facehugger_impregnated";
+ stat = 2
+ },
+/obj/item/weapon/gun/projectile/automatic/pistol,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"p" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"q" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"r" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/structure/alien/resin/wall,
+/obj/structure/alien/resin/wall,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"s" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/obj/structure/alien/egg,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"t" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/mob/living/simple_animal/hostile/alien/sentinel,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"u" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"v" = (
+/obj/structure/alien/weeds/node,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"w" = (
+/obj/structure/alien/weeds,
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"x" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/weeds{
+ desc = "A large mottled egg.";
+ health = 100;
+ icon_state = "egg_hatched";
+ name = "egg"
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"y" = (
+/obj/structure/alien/weeds/node,
+/obj/structure/alien/resin/wall,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"z" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/structure/bed/nest,
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/item/clothing/mask/facehugger{
+ icon_state = "facehugger_impregnated";
+ item_state = "facehugger_impregnated";
+ stat = 2
+ },
+/obj/item/clothing/under/rank/security,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/clothing/head/helmet,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"A" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/egg,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"B" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/structure/alien/weeds{
+ desc = "A large mottled egg.";
+ health = 100;
+ icon_state = "egg_hatched";
+ name = "egg"
+ },
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"C" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/weeds{
+ desc = "A large mottled egg.";
+ health = 100;
+ icon_state = "egg_hatched";
+ name = "egg"
+ },
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"D" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"E" = (
+/obj/structure/alien/weeds,
+/mob/living/simple_animal/hostile/alien/drone{
+ plants_off = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"F" = (
+/obj/structure/alien/weeds,
+/mob/living/simple_animal/hostile/alien/queen/large{
+ desc = "A gigantic alien who is in charge of the hive and all of its loyal servants.";
+ name = "alien queen";
+ pixel_x = -16;
+ plants_off = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"G" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/mob/living/simple_animal/hostile/alien/drone{
+ plants_off = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"H" = (
+/obj/structure/alien/weeds,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"I" = (
+/obj/structure/alien/weeds,
+/obj/structure/bed/nest,
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/effect/decal/cleanable/blood,
+/obj/item/clothing/mask/facehugger{
+ icon_state = "facehugger_impregnated";
+ item_state = "facehugger_impregnated";
+ stat = 2
+ },
+/obj/item/clothing/under/syndicate,
+/obj/item/clothing/glasses/night,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"J" = (
+/obj/structure/alien/weeds,
+/mob/living/simple_animal/hostile/alien/sentinel,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"K" = (
+/obj/structure/alien/weeds/node,
+/mob/living/simple_animal/hostile/alien,
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"L" = (
+/obj/structure/alien/weeds/node,
+/mob/living/simple_animal/hostile/alien/drone{
+ plants_off = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"M" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/structure/bed/nest,
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/item/weapon/tank/internals/oxygen,
+/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{
+ icon_state = "facehugger_impregnated";
+ item_state = "facehugger_impregnated";
+ stat = 2
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"N" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/resin/wall,
+/turf/template_noop,
+/area/template_noop)
+"O" = (
+/obj/structure/alien/weeds/node,
+/turf/template_noop,
+/area/template_noop)
+"P" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/obj/structure/alien/resin/wall,
+/turf/template_noop,
+/area/template_noop)
+"Q" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/effect/decal/cleanable/blood,
+/mob/living/simple_animal/hostile/alien/drone{
+ plants_off = 1
+ },
+/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
+/area/awaycontent/a5{
+ always_unpowered = 1;
+ has_gravity = 1;
+ name = "The Hive";
+ power_environ = 0;
+ power_equip = 0;
+ power_light = 0;
+ poweralm = 0
+ })
+"R" = (
+/obj/structure/alien/weeds,
+/turf/template_noop,
+/area/template_noop)
+"S" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds2"
+ },
+/turf/template_noop,
+/area/template_noop)
+"T" = (
+/obj/structure/alien/weeds/node,
+/obj/structure/alien/resin/wall,
+/turf/template_noop,
+/area/template_noop)
+"U" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/obj/structure/alien/resin/wall,
+/turf/template_noop,
+/area/template_noop)
+"V" = (
+/obj/structure/alien/weeds{
+ icon_state = "weeds1"
+ },
+/turf/template_noop,
+/area/template_noop)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaabcddcaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaacefgchaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaahijkicaaaaaaaaaaaaaaaaaaaa
-aaahcbhcbhbaaaaaaaabhglmcaaaaaaaaaaaaaaaaaaaa
-abhcggenopchcaaaaaaacbqbhaaaaaaaaaaaaaaachraa
-abgspqtuvwqxhcaaaaaahcgcaaabcchaaaaaaabhcxcaa
-ccepymgpqcgpqhchcbhabqphaabhzibaaaaaabcmeqhaa
-hAkgmqpgppqgpgclgqhbhgcbaacBCDchbhchccqEqgcaa
-begspFqlpggplqblpqgccphbcchgjpgpplpgqpgplnbaa
-hcsGquHqqgqgqpchbggpqgpgEpqqgnchcbhchckggmhaa
-abgqyIuJkyqqghcahcplpqcbcgqlxmcaaaaaabhqxccaa
-abcegHqkpxppcbaaaccpgqhahhcxmchaaaaaahcpcbaaa
-aabcbhchcbchcaaabhgqpccaaabhcbaaaaaaacgphaaaa
-aaaaaaaaaaaaaaaahqqghbaaaaaaaaaaaaaaacqbcaaaa
-aaaaaaaaaaaaaaaacgpcbaaaaaaaaaaaaaaaabKcaaaaa
-aaaaaaaaaaaaaaaahqghaaaaaaaaaaaaaaaabcghaaaaa
-aaaaaaaaaaaaaaaacpqcaaaaaaabhcbhhaachpqcaaaaa
-aaaaaaaaaaaaaaaabgphbhccbhccgqpgcbchgqchaaaaa
-aaaaaaaaaaaaaaaahglqcqgpgqcgphcglpqgphbaaaaaa
-aaaaaaaaaaaaaaaahcqpgqpgLpgqccbhchchbcaaaaaaa
-aaaaaaaaaaaaaaahcbgqpgccbqphhaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaabhggphchbacgpcbaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaahqpcbbaaaabcggchaaaaaaaaaaaaaaa
-aaaaaaaaaaaabccjhhaaaaaaahqpgcaaaaaaaaaaaaaaa
-aaaaaaaaaaahhipgcaaaaaaaacbqlbaaaaaaaaaaaaaaa
-aaaaaaaaaacbxqgebaaaaaaaaacbbcaaaaaaaaaaaaaaa
-aaaaaaaaaahMDlqhhaaaaaaaaaNOOPaaPPaaaaaaaaaaa
-aaaaaaaaaabiQgicaaaaaaaaaaPRSTPNPaaaaaaaaaaaa
-aaaaaaaaaahcqehbaaaaaaaaaUTVVSRVSaaaaaaaaaaaa
-aaaaaaaaaaahcbbaaaaaaaaaPNRSRVSRaaaaaaaaaaaaa
+a
+a
+a
+a
+a
+a
+c
+h
+b
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+b
+b
+c
+A
+e
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+h
+g
+e
+k
+g
+s
+g
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+h
+c
+s
+p
+g
+s
+G
+q
+e
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+c
+g
+p
+y
+m
+p
+q
+y
+g
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+b
+g
+q
+m
+q
+F
+u
+I
+H
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+h
+e
+t
+g
+p
+q
+H
+u
+q
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+c
+n
+u
+p
+g
+l
+q
+J
+k
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+a
+b
+o
+v
+q
+p
+p
+q
+k
+p
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+h
+p
+w
+c
+p
+g
+g
+y
+x
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+b
+c
+q
+g
+q
+g
+q
+q
+p
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+c
+h
+b
+h
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+h
+x
+p
+g
+p
+g
+q
+p
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+b
+M
+i
+c
+h
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+c
+h
+q
+p
+l
+q
+g
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+h
+x
+D
+Q
+q
+c
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+c
+h
+g
+q
+p
+h
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+c
+i
+q
+l
+g
+e
+b
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+c
+c
+b
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+h
+c
+p
+g
+q
+i
+h
+b
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+h
+l
+l
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+h
+h
+q
+j
+g
+e
+h
+c
+b
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+a
+c
+g
+p
+b
+h
+a
+b
+h
+c
+h
+c
+b
+h
+h
+c
+g
+p
+h
+c
+b
+h
+a
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+q
+q
+g
+c
+c
+h
+q
+g
+q
+p
+g
+g
+c
+b
+g
+c
+h
+a
+a
+a
+a
+a
+a
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+a
+a
+h
+h
+g
+g
+p
+c
+g
+q
+p
+g
+q
+p
+l
+q
+g
+p
+b
+a
+a
+a
+a
+a
+a
+a
+"}
+(20,1,1) = {"
+b
+c
+h
+b
+a
+a
+a
+b
+c
+p
+l
+p
+q
+g
+c
+h
+c
+h
+q
+p
+q
+h
+b
+a
+a
+a
+a
+a
+a
+a
+"}
+(21,1,1) = {"
+c
+e
+i
+h
+c
+h
+b
+h
+c
+q
+p
+g
+p
+h
+b
+a
+a
+b
+c
+g
+p
+c
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(22,1,1) = {"
+d
+f
+j
+g
+b
+c
+q
+g
+p
+g
+q
+q
+c
+b
+a
+a
+a
+h
+q
+q
+g
+h
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(23,1,1) = {"
+d
+g
+k
+l
+q
+g
+p
+c
+h
+p
+c
+h
+c
+a
+a
+a
+a
+c
+g
+p
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(24,1,1) = {"
+c
+c
+i
+m
+b
+c
+h
+b
+b
+g
+b
+a
+a
+a
+a
+a
+a
+c
+p
+g
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+h
+c
+c
+h
+a
+a
+a
+c
+E
+c
+h
+a
+a
+a
+a
+a
+b
+g
+L
+b
+c
+b
+a
+a
+a
+a
+a
+a
+P
+"}
+(26,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+c
+p
+g
+h
+a
+a
+a
+a
+a
+h
+q
+p
+q
+g
+c
+h
+c
+a
+a
+a
+U
+N
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+c
+h
+q
+q
+c
+b
+a
+a
+a
+a
+c
+c
+g
+p
+p
+g
+q
+b
+c
+N
+P
+T
+R
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+b
+h
+B
+g
+q
+l
+x
+h
+a
+a
+a
+b
+c
+g
+q
+h
+c
+g
+p
+q
+b
+O
+R
+V
+S
+"}
+(29,1,1) = {"
+a
+a
+a
+a
+a
+c
+z
+C
+j
+g
+x
+m
+c
+a
+a
+a
+h
+g
+p
+c
+h
+b
+c
+g
+l
+b
+O
+S
+V
+R
+"}
+(30,1,1) = {"
+a
+a
+a
+a
+a
+c
+i
+D
+p
+n
+m
+c
+b
+a
+a
+a
+c
+q
+h
+c
+a
+a
+h
+c
+b
+c
+P
+T
+S
+V
+"}
+(31,1,1) = {"
+a
+a
+a
+a
+a
+h
+b
+c
+g
+c
+c
+h
+a
+a
+a
+a
+b
+p
+c
+b
+a
+a
+a
+a
+a
+a
+a
+P
+R
+S
+"}
+(32,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+h
+p
+h
+a
+a
+a
+a
+a
+a
+h
+g
+g
+h
+a
+a
+a
+a
+a
+a
+a
+N
+V
+R
+"}
+(33,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+b
+p
+c
+a
+a
+a
+a
+a
+a
+h
+c
+l
+c
+a
+a
+a
+a
+a
+a
+P
+P
+S
+a
+"}
+(34,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+h
+l
+b
+a
+a
+a
+a
+a
+a
+a
+b
+p
+h
+a
+a
+a
+a
+a
+a
+P
+a
+a
+a
+"}
+(35,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+c
+p
+h
+a
+a
+a
+a
+a
+a
+a
+c
+q
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(36,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+h
+g
+c
+a
+a
+a
+a
+a
+a
+c
+h
+g
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(37,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+c
+q
+h
+a
+a
+a
+a
+a
+b
+h
+g
+p
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(38,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+c
+p
+c
+b
+h
+c
+c
+b
+c
+p
+q
+h
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(39,1,1) = {"
+a
+a
+a
+a
+a
+b
+c
+q
+g
+k
+h
+c
+g
+q
+K
+g
+q
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(40,1,1) = {"
+a
+a
+a
+a
+a
+h
+m
+E
+p
+g
+q
+p
+p
+b
+c
+h
+c
+h
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(41,1,1) = {"
+a
+a
+a
+a
+c
+c
+e
+q
+l
+g
+x
+c
+h
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(42,1,1) = {"
+a
+a
+a
+a
+h
+x
+q
+g
+n
+m
+c
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(43,1,1) = {"
+a
+a
+a
+a
+r
+c
+h
+c
+b
+h
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(44,1,1) = {"
+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
+"}
+(45,1,1) = {"
+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/RandomRuins/SpaceRuins/DJstation.dmm b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
new file mode 100644
index 00000000000..13fba2f83b1
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/DJstation.dmm
@@ -0,0 +1,827 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/open/space,
+/area/space)
+"ab" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/djstation/solars)
+"ac" = (
+/obj/machinery/power/solar/fake,
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/djstation/solars)
+"ad" = (
+/turf/open/floor/plating/airless,
+/area/djstation/solars)
+"ae" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"af" = (
+/turf/closed/wall,
+/area/djstation)
+"ag" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/djstation)
+"ah" = (
+/turf/open/floor/plating,
+/area/djstation)
+"ai" = (
+/obj/machinery/telecomms/relay/preset/ruskie,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/djstation)
+"aj" = (
+/obj/machinery/power/terminal,
+/turf/open/floor/plating,
+/area/djstation)
+"ak" = (
+/obj/item/device/multitool,
+/turf/open/floor/plating,
+/area/djstation)
+"al" = (
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/turf/open/floor/plating,
+/area/djstation)
+"am" = (
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plating,
+/area/djstation)
+"an" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/smes/magical{
+ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
+ name = "power storage unit"
+ },
+/turf/open/floor/plating,
+/area/djstation)
+"ao" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/djstation)
+"ap" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ dir = 0;
+ name = "Worn-out APC";
+ pixel_y = -24
+ },
+/turf/open/floor/plating,
+/area/djstation)
+"aq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/djstation)
+"ar" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/djstation)
+"as" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/syndicate/orange,
+/obj/item/clothing/head/helmet/space/syndicate/orange,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plating,
+/area/djstation)
+"at" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/plating,
+/area/djstation)
+"au" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"av" = (
+/obj/machinery/vending/snack,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"aw" = (
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"ax" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"ay" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"az" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/turf/open/floor/plasteel/bar,
+/area/djstation)
+"aA" = (
+/turf/open/floor/plasteel/bar,
+/area/djstation)
+"aB" = (
+/obj/effect/spawner/lootdrop/crate_spawner,
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aC" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aD" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aE" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aF" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/bar,
+/area/djstation)
+"aG" = (
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"aH" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ dir = 8;
+ freerange = 1;
+ listening = 1;
+ name = "Pirate Radio Listening Channel";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"aI" = (
+/obj/structure/chair/office/light,
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"aJ" = (
+/obj/machinery/door/airlock/glass{
+ name = "Rest Room"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"aK" = (
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aL" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper-open";
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aM" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/bar,
+/area/djstation)
+"aN" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/bar,
+/area/djstation)
+"aO" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/djstation)
+"aP" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"aQ" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ dir = 8;
+ freerange = 1;
+ listening = 0;
+ name = "Pirate Radio Broadcast Channel";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"aR" = (
+/obj/structure/table,
+/obj/item/weapon/paper/djstation,
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"aS" = (
+/obj/structure/frame/computer{
+ anchored = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aT" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aU" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aV" = (
+/obj/structure/closet,
+/turf/open/floor/plasteel/grimy,
+/area/djstation)
+"aW" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/djstation)
+"aX" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Washroom"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/djstation)
+"aY" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"aZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/airless,
+/area/space)
+"ba" = (
+/turf/open/floor/plasteel/freezer,
+/area/djstation)
+"bb" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"bc" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/space_heater,
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"bd" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/rack{
+ dir = 4
+ },
+/obj/item/clothing/under/soviet,
+/obj/item/clothing/head/ushanka,
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"be" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/freezer,
+/area/djstation)
+"bf" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/djstation)
+"bg" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"bh" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/djstation)
+"bi" = (
+/obj/machinery/door/airlock/external{
+ name = "Ruskie DJ Station";
+ req_access = null;
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/djstation)
+"bj" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/turf/open/floor/plating/airless,
+/area/space)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+af
+ag
+ag
+ag
+af
+aa
+ae
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+ad
+ac
+ad
+ac
+ab
+aa
+af
+az
+aF
+aM
+aW
+aZ
+aZ
+aZ
+bj
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+ad
+ac
+ad
+ac
+ab
+aa
+af
+aA
+aA
+aN
+af
+ae
+ae
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+ae
+ab
+ac
+ad
+ac
+ad
+ac
+ab
+aa
+af
+aA
+aA
+aO
+af
+af
+af
+af
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+ae
+ae
+ab
+ac
+ad
+ac
+ad
+ac
+ab
+aa
+af
+aA
+aA
+aA
+aX
+ba
+be
+af
+aa
+aa
+"}
+(6,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+af
+ag
+ag
+af
+ag
+ag
+af
+af
+af
+ag
+aG
+ag
+af
+af
+bf
+af
+aa
+aa
+"}
+(7,1,1) = {"
+ab
+ac
+ac
+ac
+ac
+ag
+ah
+ah
+ah
+am
+ah
+ap
+af
+au
+aw
+aw
+aw
+aw
+af
+af
+af
+aa
+aa
+"}
+(8,1,1) = {"
+ab
+ad
+ad
+ad
+ad
+ag
+ah
+ah
+ah
+ah
+ah
+aq
+af
+av
+aw
+aH
+aP
+aw
+bb
+bg
+af
+aa
+aa
+"}
+(9,1,1) = {"
+ab
+ac
+ac
+ac
+ac
+af
+ai
+ah
+aj
+an
+ao
+ar
+at
+aw
+aw
+aI
+aQ
+aw
+aw
+aw
+af
+aa
+aa
+"}
+(10,1,1) = {"
+ab
+ad
+ad
+ad
+ad
+ag
+ah
+ah
+ak
+ah
+ah
+ah
+af
+ax
+aw
+aH
+aR
+aw
+bc
+bh
+af
+af
+af
+"}
+(11,1,1) = {"
+ab
+ac
+ac
+ac
+ac
+ag
+ah
+ah
+al
+ah
+ah
+as
+af
+ay
+aw
+aw
+aw
+aY
+bd
+aw
+bi
+ah
+bi
+"}
+(12,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+af
+ag
+ag
+af
+ag
+ag
+af
+af
+af
+ag
+aJ
+ag
+af
+af
+af
+af
+af
+af
+"}
+(13,1,1) = {"
+aa
+aa
+ae
+ae
+ae
+ab
+ac
+ad
+ac
+ad
+ac
+ab
+aa
+af
+aB
+aK
+aS
+af
+aa
+aa
+aa
+aa
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+aa
+ae
+ab
+ac
+ad
+ac
+ad
+ac
+ab
+aa
+af
+aC
+aK
+aT
+af
+aa
+aa
+aa
+aa
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+ae
+ab
+ac
+ad
+ac
+ad
+ac
+ab
+aa
+af
+aD
+aK
+aU
+af
+ae
+ae
+aa
+aa
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+ad
+ac
+ad
+ac
+ab
+aa
+af
+aE
+aL
+aV
+af
+aa
+aa
+aa
+aa
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aa
+af
+ag
+ag
+ag
+af
+aa
+aa
+aa
+aa
+aa
+"}
+(18,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ae
+aa
+ae
+aa
+aa
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
new file mode 100644
index 00000000000..a013998affb
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
@@ -0,0 +1,872 @@
+"aa" = (/turf/open/space,/area/space)
+"ab" = (/obj/structure/lattice,/turf/open/space,/area/space)
+"ac" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"ad" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/airless,/area/solar/derelict_starboard)
+"ae" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/space,/area/solar/derelict_starboard)
+"af" = (/turf/open/floor/plating/airless,/turf/open/floor/plating/airless{icon_state = "platingdmg2"},/area/solar/derelict_starboard)
+"ag" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/solar/derelict_starboard)
+"ah" = (/obj/machinery/power/solar{id = "derelictsolar"; name = "Derelict Solar Array"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/airless,/area/solar/derelict_starboard)
+"ai" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/derelict_starboard)
+"aj" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/space,/area/solar/derelict_starboard)
+"ak" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/space,/area/solar/derelict_starboard)
+"al" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/space,/area/solar/derelict_starboard)
+"am" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/space,/area/solar/derelict_starboard)
+"an" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/space,/area/solar/derelict_starboard)
+"ao" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/space,/area/solar/derelict_starboard)
+"ap" = (/obj/machinery/power/solar{id = "derelictsolar"; name = "Derelict Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless,/area/solar/derelict_starboard)
+"aq" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/derelict_starboard)
+"ar" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/space,/area/solar/derelict_starboard)
+"as" = (/turf/closed/wall,/area/derelict/solar_control)
+"at" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/derelict/solar_control)
+"au" = (/obj/machinery/door/airlock/external{name = "External Engineering"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/derelict/solar_control)
+"av" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/derelict/solar_control)
+"aw" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/derelict/solar_control)
+"ax" = (/turf/closed/wall/r_wall,/area/derelict/bridge/ai_upload)
+"ay" = (/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"az" = (/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aA" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aC" = (/obj/machinery/power/smes,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aD" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar_control{id = "derelictsolar"; name = "Primary Solar Control"; track = 0},/obj/structure/cable,/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aE" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/space)
+"aF" = (/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/derelict/solar_control)
+"aG" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aH" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aI" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aK" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"aL" = (/obj/machinery/door/airlock/external{name = "Air Bridge Access"},/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"aM" = (/obj/machinery/door/airlock/external{name = "Air Bridge Access"},/turf/open/floor/plating,/area/derelict/solar_control)
+"aN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aO" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aP" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aQ" = (/obj/machinery/door/window,/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aR" = (/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"aS" = (/turf/closed/wall/r_wall,/area/derelict/solar_control)
+"aT" = (/obj/machinery/power/apc{dir = 8; environ = 0; equipment = 0; lighting = 0; locked = 0; name = "Starboard Solar APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"aV" = (/obj/machinery/door/airlock/external{name = "External Engineering"},/turf/open/floor/plating,/area/derelict/solar_control)
+"aW" = (/obj/machinery/door/airlock/highsecurity,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"aX" = (/obj/structure/frame/computer,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"aY" = (/turf/closed/wall/r_wall,/area/ruin/unpowered/no_grav)
+"aZ" = (/obj/machinery/computer/monitor,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"ba" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/derelict/solar_control)
+"bb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"bc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/derelict/solar_control)
+"bd" = (/obj/structure/grille/broken,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"be" = (/obj/machinery/light/small,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bf" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/porta_turret_cover,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bg" = (/obj/machinery/porta_turret_cover,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bh" = (/obj/machinery/door/airlock/engineering{name = "Starboard Solar Access"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"bi" = (/obj/structure/grille,/turf/open/space,/area/ruin/unpowered/no_grav)
+"bj" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/derelict/bridge/ai_upload)
+"bk" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/derelict/solar_control)
+"bl" = (/turf/closed/wall,/area/derelict/bridge/ai_upload)
+"bm" = (/obj/machinery/door/window,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"bn" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bo" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bp" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bq" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"br" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"bs" = (/turf/open/floor/plasteel{icon_state = "damaged1"},/area/derelict/solar_control)
+"bt" = (/obj/machinery/door/window,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bu" = (/turf/open/floor/plasteel{icon_state = "damaged5"},/area/derelict/solar_control)
+"bv" = (/obj/item/weapon/stock_parts/matter_bin,/turf/open/floor/plasteel{icon_state = "damaged4"},/area/derelict/solar_control)
+"bw" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/smes,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bx" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/microwave,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"by" = (/obj/structure/rack,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bz" = (/turf/open/floor/plasteel/airless,/area/derelict/bridge/ai_upload)
+"bA" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"bB" = (/turf/open/floor/plasteel{icon_state = "damaged2"},/area/derelict/solar_control)
+"bC" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel{icon_state = "damaged3"},/area/derelict/solar_control)
+"bD" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/cryo_tube,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bE" = (/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/bridge/ai_upload)
+"bF" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/bridge/ai_upload)
+"bG" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/airless,/area/derelict/bridge/ai_upload)
+"bH" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"bI" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/airless,/area/derelict/bridge/ai_upload)
+"bJ" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/turf/open/floor/plasteel/airless,/area/derelict/bridge/ai_upload)
+"bK" = (/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/bridge/ai_upload)
+"bL" = (/turf/open/space,/area/derelict/bridge/ai_upload)
+"bM" = (/obj/item/weapon/stock_parts/console_screen,/turf/open/space,/area/derelict/bridge/ai_upload)
+"bN" = (/turf/open/floor/plasteel/airless/circuit,/area/derelict/bridge/ai_upload)
+"bO" = (/turf/open/floor/plating/airless,/area/derelict/bridge/ai_upload)
+"bP" = (/obj/machinery/porta_turret_cover,/turf/open/floor/plasteel/airless,/area/derelict/bridge/ai_upload)
+"bQ" = (/obj/item/device/aicard,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/bridge/ai_upload)
+"bR" = (/obj/structure/lattice,/turf/open/space,/area/derelict/bridge/ai_upload)
+"bS" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"bT" = (/obj/structure/rack,/obj/item/weapon/circuitboard/computer/solar_control,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bU" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/autolathe,/obj/item/weapon/circuitboard/machine/protolathe{pixel_x = -5; pixel_y = -3},/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bV" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/circuit_imprinter,/turf/open/floor/plasteel,/area/derelict/bridge/ai_upload)
+"bW" = (/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/airless,/area/derelict/bridge/ai_upload)
+"bX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/airless/circuit,/area/derelict/bridge/ai_upload)
+"bY" = (/obj/structure/frame/computer,/obj/item/weapon/circuitboard/computer/rdconsole,/turf/open/floor/plasteel/airless,/area/derelict/bridge/ai_upload)
+"bZ" = (/obj/structure/frame/computer,/turf/open/floor/plasteel/airless,/area/derelict/bridge/ai_upload)
+"ca" = (/obj/machinery/door/airlock/external,/turf/open/floor/plasteel,/area/derelict/solar_control)
+"cb" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/space)
+"cc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/airless/circuit,/area/derelict/bridge/ai_upload)
+"cd" = (/obj/machinery/light,/turf/open/floor/plasteel/airless,/area/derelict/bridge/ai_upload)
+"ce" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/closed/wall/r_wall,/area/derelict/bridge/ai_upload)
+"cf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/closed/wall/r_wall,/area/derelict/bridge/ai_upload)
+"cg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/closed/wall/r_wall,/area/derelict/bridge/ai_upload)
+"ch" = (/turf/closed/wall,/area/ruin/unpowered/no_grav)
+"ci" = (/turf/closed/wall/r_wall,/area/space)
+"cj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/closed/wall/r_wall,/area/derelict/bridge/ai_upload)
+"ck" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel,/area/derelict/solar_control)
+"cl" = (/turf/closed/wall/r_wall,/area/derelict/gravity_generator)
+"cm" = (/obj/machinery/light/small,/turf/open/floor/plasteel,/area/derelict/solar_control)
+"cn" = (/obj/item/weapon/ore/iron,/obj/item/weapon/ore/iron,/obj/item/weapon/ore/iron,/turf/open/space,/area/space)
+"co" = (/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/gravity_generator)
+"cp" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/gravity_generator)
+"cq" = (/obj/item/weapon/stock_parts/manipulator,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/gravity_generator)
+"cr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/closed/wall,/area/derelict/bridge/access)
+"cs" = (/turf/closed/wall,/area/derelict/bridge/access)
+"ct" = (/obj/machinery/door/airlock/maintenance,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cu" = (/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/gravity_generator)
+"cv" = (/obj/item/weapon/ore/slag,/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/gravity_generator)
+"cw" = (/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/gravity_generator)
+"cx" = (/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cy" = (/obj/structure/rack,/obj/item/weapon/melee/classic_baton,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cz" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cA" = (/obj/structure/rack,/obj/item/clothing/head/helmet/swat,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cB" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cC" = (/obj/structure/rack,/obj/item/weapon/electronics/apc,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cD" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/smes,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cE" = (/obj/structure/rack,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cG" = (/obj/item/weapon/screwdriver,/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/gravity_generator)
+"cH" = (/obj/machinery/gravity_generator/main/station{on = 0},/turf/open/floor/plasteel/airless,/area/derelict/gravity_generator)
+"cI" = (/obj/item/weapon/ore/slag,/turf/open/space,/area/space)
+"cJ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/closed/wall,/area/derelict/bridge/access)
+"cK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cN" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cO" = (/turf/open/floor/plasteel/airless,/area/derelict/gravity_generator)
+"cP" = (/obj/item/stack/cable_coil/cut,/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/gravity_generator)
+"cQ" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 0; name = "Worn-out APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cR" = (/obj/structure/rack,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plating,/area/derelict/bridge/access)
+"cS" = (/obj/machinery/light/small{dir = 4},/obj/structure/rack,/obj/item/stack/cable_coil/cut,/obj/item/stack/cable_coil/cut,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cT" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/derelict/bridge/access)
+"cU" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/derelict/bridge/access)
+"cV" = (/obj/machinery/door/airlock/command{name = "E.V.A."; req_access = null; req_access_txt = "18"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cW" = (/obj/machinery/door/airlock/engineering{name = "Engineering Secure Storage"; req_access_txt = "10"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cX" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"cY" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"cZ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"da" = (/obj/machinery/door/airlock/engineering{name = "Engineering Access"; req_access_txt = "10"},/turf/open/floor/plasteel,/area/derelict/gravity_generator)
+"db" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"dc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"dd" = (/turf/open/floor/plating,/area/derelict/bridge/access)
+"de" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless/solarpanel,/area/ruin/unpowered/no_grav)
+"df" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/item/wallframe/apc,/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"dg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"dh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"di" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/frame/machine,/obj/item/weapon/stock_parts/console_screen,/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"dj" = (/turf/open/floor/plasteel/airless/solarpanel,/area/ruin/unpowered/no_grav)
+"dk" = (/obj/item/stack/cable_coil/cut,/turf/open/space,/area/space)
+"dl" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"dm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/derelict/bridge/access)
+"dn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"do" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"dp" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"dq" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"dr" = (/turf/closed/wall/r_wall,/area/derelict/singularity_engine)
+"ds" = (/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/item/weapon/paper{info = "If the equipment breaks there should be enough spare parts in our engineering storage near the north east solar array."; name = "Equipment Inventory"},/turf/open/floor/plasteel/airless,/area/derelict/gravity_generator)
+"dt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"du" = (/obj/machinery/light/small{dir = 4},/obj/item/weapon/stock_parts/matter_bin{pixel_x = -10; pixel_y = 5},/obj/item/weapon/stock_parts/matter_bin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/stock_parts/matter_bin,/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"dv" = (/obj/item/weapon/stock_parts/matter_bin,/turf/open/space,/area/space)
+"dw" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"dx" = (/obj/machinery/door/window,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"dy" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"dz" = (/turf/closed/wall,/area/derelict/bridge)
+"dA" = (/obj/structure/sign/electricshock,/turf/closed/wall/r_wall,/area/derelict/singularity_engine)
+"dB" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/derelict/singularity_engine)
+"dC" = (/obj/machinery/door/airlock/engineering{name = "Engineering Access"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless,/area/derelict/gravity_generator)
+"dD" = (/obj/structure/sign/securearea{name = "ENGINEERING ACCESS"},/turf/closed/wall/r_wall,/area/derelict/gravity_generator)
+"dE" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/space,/area/space)
+"dF" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"dG" = (/obj/structure/frame/computer,/turf/open/floor/plasteel,/area/derelict/bridge)
+"dH" = (/obj/structure/frame/computer,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel,/area/derelict/bridge)
+"dI" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plasteel,/area/derelict/bridge)
+"dJ" = (/obj/machinery/computer/security,/turf/open/floor/plasteel,/area/derelict/bridge)
+"dK" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/turf/open/floor/plasteel,/area/derelict/bridge)
+"dL" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/derelict/bridge)
+"dM" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plasteel,/area/derelict/bridge)
+"dN" = (/obj/item/weapon/grenade/empgrenade,/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/derelict/bridge)
+"dO" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/singularity_engine)
+"dP" = (/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/singularity_engine)
+"dQ" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/singularity_engine)
+"dR" = (/obj/item/stack/cable_coil/cut,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"dS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"dT" = (/obj/machinery/door/airlock/engineering{name = "Engineering Access"; req_access_txt = "10"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/derelict/gravity_generator)
+"dU" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/derelict/gravity_generator)
+"dV" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/derelict/gravity_generator)
+"dW" = (/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"dX" = (/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/singularity_engine)
+"dY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/derelict/bridge/access)
+"dZ" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel,/area/derelict/bridge)
+"ea" = (/turf/open/floor/plasteel,/area/derelict/bridge)
+"eb" = (/turf/open/floor/plating,/area/derelict/bridge)
+"ec" = (/obj/structure/table,/obj/item/weapon/paper/crumpled,/turf/open/floor/plasteel,/area/derelict/bridge)
+"ed" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/derelict/bridge)
+"ee" = (/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/singularity_engine)
+"ef" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/singularity_engine)
+"eg" = (/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/singularity_engine)
+"eh" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/singularity_engine)
+"ei" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/singularity_engine)
+"ej" = (/turf/open/floor/plasteel,/area/derelict/gravity_generator)
+"ek" = (/obj/structure/closet/radiation,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel,/area/derelict/gravity_generator)
+"el" = (/turf/closed/wall,/area/derelict/gravity_generator)
+"em" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"en" = (/obj/machinery/power/emitter{dir = 1; icon_state = "emitter"},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"eo" = (/obj/machinery/field/generator,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"ep" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"eq" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"er" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plating,/area/derelict/bridge)
+"es" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/derelict/bridge)
+"et" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/derelict/bridge)
+"eu" = (/obj/item/stack/rods,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"ev" = (/obj/structure/grille,/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"ew" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"ex" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"ey" = (/obj/structure/noticeboard,/turf/closed/wall/r_wall,/area/derelict/singularity_engine)
+"ez" = (/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"eA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"eB" = (/obj/machinery/door/window/eastleft{name = "Heads of Staff"; req_access_txt = "19"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"eC" = (/obj/structure/table,/obj/item/device/paicard,/turf/open/floor/plasteel,/area/derelict/bridge)
+"eD" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/derelict/bridge)
+"eE" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/derelict/bridge)
+"eF" = (/obj/item/weapon/storage/toolbox/syndicate,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"eG" = (/obj/item/stack/cable_coil/cut,/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/singularity_engine)
+"eH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"eI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/derelict/bridge/access)
+"eJ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"eK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/derelict/bridge)
+"eL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/derelict/bridge)
+"eM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/derelict/bridge)
+"eN" = (/obj/item/weapon/paper{info = "Objective #1: Destroy the station with a nuclear device."; name = "Objectives of a Nuclear Operative"},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"eO" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/derelict/bridge/access)
+"eP" = (/obj/structure/table,/turf/open/floor/plasteel,/area/derelict/bridge)
+"eQ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/derelict/bridge)
+"eR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/derelict/bridge)
+"eS" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/derelict/bridge)
+"eT" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/open/floor/plasteel,/area/derelict/bridge)
+"eU" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/derelict/bridge)
+"eV" = (/obj/item/stack/rods,/turf/open/space,/area/space)
+"eW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"eX" = (/obj/item/weapon/shard,/obj/structure/grille/broken,/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; icon_state = "remains"; name = "Syndicate agent remains"},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"eY" = (/obj/item/clothing/suit/space/syndicate/black/engie,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"eZ" = (/obj/item/stack/rods,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fa" = (/obj/item/weapon/shard,/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/singularity_engine)
+"fb" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fe" = (/obj/structure/table,/obj/item/weapon/rack_parts,/turf/open/floor/plasteel,/area/derelict/bridge)
+"ff" = (/obj/structure/window/fulltile,/turf/open/floor/plasteel,/area/derelict/bridge)
+"fg" = (/obj/structure/table,/obj/machinery/power/apc{dir = 0; name = "Worn-out APC"; pixel_y = -24},/obj/structure/cable,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/derelict/bridge)
+"fh" = (/obj/structure/table,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/derelict/bridge)
+"fi" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/derelict/bridge)
+"fj" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"fk" = (/obj/item/clothing/head/helmet/space/syndicate/black/engie,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fl" = (/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fm" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fn" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fo" = (/turf/closed/wall/r_wall,/area/derelict/bridge)
+"fp" = (/obj/machinery/door/window{dir = 2; name = "Captain's Quarters"; req_access_txt = "20"},/obj/structure/grille,/turf/open/floor/plating/airless,/area/derelict/bridge)
+"fq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fr" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"fs" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"ft" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fu" = (/obj/item/stack/cable_coil/cut,/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/singularity_engine)
+"fv" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fw" = (/obj/item/drone_shell,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fx" = (/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fy" = (/obj/structure/table,/obj/item/device/assembly/flash/handheld,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fz" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fA" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/stock_parts/matter_bin,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fB" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell{charge = 100; maxcharge = 15000},/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fC" = (/turf/open/space,/area/derelict/bridge/access)
+"fD" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"fE" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fF" = (/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fG" = (/obj/item/stack/cable_coil/cut,/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/singularity_engine)
+"fH" = (/obj/item/stack/cable_coil/cut,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"fI" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"fJ" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/singularity_engine)
+"fK" = (/obj/machinery/door/window,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/derelict/bridge/access)
+"fL" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"fM" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fN" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fO" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/singularity_engine)
+"fP" = (/obj/structure/grille,/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/singularity_engine)
+"fQ" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/singularity_engine)
+"fR" = (/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/derelict/bridge/access)
+"fT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fU" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/singularity_engine)
+"fV" = (/obj/item/weapon/screwdriver,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fW" = (/obj/item/stack/rods,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"fX" = (/obj/item/weapon/shard{icon_state = "medium"},/obj/item/stack/cable_coil/cut,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"fY" = (/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"fZ" = (/turf/closed/wall,/area/derelict/hallway/primary)
+"ga" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/hallway/primary)
+"gb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary)
+"gc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"gd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating/airless,/area/derelict/bridge/access)
+"ge" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"gf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"gg" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"gh" = (/obj/item/weapon/ore/slag,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gi" = (/obj/item/weapon/shard,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gj" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gk" = (/turf/closed/wall/r_wall,/area/derelict/hallway/primary)
+"gl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"gm" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/hallway/primary)
+"gn" = (/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary)
+"go" = (/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"gp" = (/obj/structure/window/fulltile,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"gq" = (/turf/open/floor/plating/airless,/area/derelict/bridge/access)
+"gr" = (/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"gs" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"gt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gu" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"gy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"gz" = (/turf/open/floor/plasteel/airless{icon_state = "floorscorched2"},/area/derelict/hallway/primary)
+"gA" = (/obj/machinery/light/small,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"gB" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 0; name = "Worn-out APC"; pixel_y = -24},/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"gC" = (/turf/open/floor/plasteel/airless{icon_state = "floorscorched2"},/area/ruin/unpowered/no_grav)
+"gD" = (/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/ruin/unpowered/no_grav)
+"gE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gF" = (/obj/machinery/door/window,/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"gG" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"gH" = (/turf/open/floor/plasteel/airless{icon_state = "floorscorched1"},/area/ruin/unpowered/no_grav)
+"gI" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"gJ" = (/obj/structure/grille/broken,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gK" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/singularity_engine)
+"gL" = (/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"gM" = (/obj/item/weapon/crowbar,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"gN" = (/obj/structure/grille,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"gO" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"gP" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/ruin/unpowered/no_grav)
+"gQ" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"gR" = (/obj/item/weapon/shard{icon_state = "small"},/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gS" = (/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gT" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"gU" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"gV" = (/turf/closed/wall/r_wall,/area/derelict/arrival)
+"gW" = (/turf/closed/wall,/area/derelict/arrival)
+"gX" = (/turf/closed/wall,/area/derelict/medical/chapel)
+"gY" = (/turf/closed/wall,/area/derelict/singularity_engine)
+"gZ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"ha" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"hb" = (/obj/machinery/light/small,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary)
+"hc" = (/obj/structure/lattice,/obj/structure/window/fulltile,/turf/open/space,/area/ruin/unpowered/no_grav)
+"hd" = (/obj/structure/table,/turf/open/floor/plasteel,/area/derelict/arrival)
+"he" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/derelict/arrival)
+"hf" = (/turf/open/floor/plasteel,/area/derelict/arrival)
+"hg" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/derelict/arrival)
+"hh" = (/obj/structure/chair{dir = 8},/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/derelict/arrival)
+"hi" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/derelict/arrival)
+"hj" = (/obj/structure/closet/coffin,/turf/open/floor/plasteel/black,/area/derelict/medical/chapel)
+"hk" = (/turf/open/floor/plasteel/black,/area/derelict/medical/chapel)
+"hl" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/derelict/medical/chapel)
+"hm" = (/obj/item/weapon/shard,/turf/open/space,/area/space)
+"hn" = (/obj/structure/grille,/turf/open/space,/area/derelict/singularity_engine)
+"ho" = (/obj/item/weapon/shard,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/singularity_engine)
+"hp" = (/turf/open/floor/plasteel/airless{icon_state = "floorscorched2"},/area/derelict/arrival)
+"hq" = (/turf/open/floor/plating/airless,/area/derelict/arrival)
+"hr" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/arrival)
+"hs" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/derelict/arrival)
+"ht" = (/obj/machinery/light/small,/turf/open/floor/plasteel/black,/area/derelict/medical/chapel)
+"hu" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6"},/turf/open/floor/plasteel/black,/area/derelict/medical/chapel)
+"hv" = (/turf/closed/wall,/area/derelict/medical)
+"hw" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/medical)
+"hx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/medical)
+"hy" = (/obj/item/weapon/shard,/obj/structure/grille/broken,/turf/open/floor/plating/airless,/area/derelict/medical)
+"hz" = (/turf/open/floor/plating/airless,/area/derelict/medical)
+"hA" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/airless,/area/derelict/medical)
+"hB" = (/obj/machinery/door/airlock/external{name = "External Engineering"},/turf/open/floor/plating/airless,/area/space)
+"hC" = (/obj/structure/grille,/turf/open/space,/area/space)
+"hD" = (/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/hallway/primary)
+"hE" = (/obj/machinery/door/window{dir = 8},/turf/open/floor/plasteel,/area/derelict/arrival)
+"hF" = (/obj/structure/table,/obj/machinery/computer/pod/old{name = "ProComp IIe"; pixel_y = 7; id = "derelict_gun"},/turf/open/floor/plasteel/chapel,/area/derelict/medical/chapel)
+"hG" = (/obj/machinery/door/morgue{name = "coffin storage"; req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/derelict/medical/chapel)
+"hH" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/black,/area/derelict/medical/chapel)
+"hI" = (/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"hJ" = (/obj/item/weapon/firstaid_arm_assembly,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"hK" = (/obj/structure/closet,/obj/structure/window/reinforced{dir = 8},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/medical)
+"hL" = (/obj/structure/frame/computer,/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/medical)
+"hM" = (/obj/machinery/light{dir = 1},/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating/airless,/area/derelict/medical)
+"hN" = (/obj/machinery/light/small,/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/singularity_engine)
+"hO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"hP" = (/turf/open/floor/plating,/area/derelict/arrival)
+"hQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/open/space,/area/space)
+"hR" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/chapel{dir = 1},/area/derelict/medical/chapel)
+"hS" = (/turf/open/floor/plasteel/chapel{dir = 4},/area/derelict/medical/chapel)
+"hT" = (/turf/open/floor/plasteel/chapel{dir = 1},/area/derelict/medical/chapel)
+"hU" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/chapel{dir = 1},/area/derelict/medical/chapel)
+"hV" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"hW" = (/obj/item/stack/medical/bruise_pack,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"hX" = (/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/medical)
+"hY" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/medical)
+"hZ" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/medical)
+"ia" = (/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/ruin/unpowered/no_grav)
+"ib" = (/obj/item/stack/cable_coil/cut,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"ic" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/derelict/arrival)
+"id" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/derelict/arrival)
+"ie" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/chapel{dir = 8},/area/derelict/medical/chapel)
+"if" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/chapel,/area/derelict/medical/chapel)
+"ig" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/chapel{dir = 8},/area/derelict/medical/chapel)
+"ih" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/chapel,/area/derelict/medical/chapel)
+"ii" = (/turf/open/floor/plasteel/chapel{dir = 8},/area/derelict/medical/chapel)
+"ij" = (/turf/open/floor/plasteel/chapel,/area/derelict/medical/chapel)
+"ik" = (/obj/structure/chair,/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/medical)
+"il" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/derelict/medical)
+"im" = (/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"in" = (/obj/item/drone_shell,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"io" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"ip" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary)
+"iq" = (/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/ruin/unpowered/no_grav)
+"ir" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/derelict/arrival)
+"is" = (/obj/structure/chair{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/derelict/arrival)
+"it" = (/obj/structure/window/reinforced,/turf/open/space,/area/space)
+"iu" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/space,/area/space)
+"iv" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/chapel{dir = 1},/area/derelict/medical/chapel)
+"iw" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/chapel{dir = 4},/area/derelict/medical/chapel)
+"ix" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/chapel{dir = 1},/area/derelict/medical/chapel)
+"iy" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/black,/area/derelict/medical/chapel)
+"iz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/derelict/medical/chapel)
+"iA" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"iB" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/item/weapon/reagent_containers/glass/beaker,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"iC" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"iD" = (/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"iE" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless/white,/area/ruin/unpowered/no_grav)
+"iF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary)
+"iG" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/derelict/arrival)
+"iH" = (/obj/machinery/door/poddoor{id = "derelict_gun"; name = "Derelict Mass Driver"},/turf/open/floor/plating,/area/ruin/unpowered/no_grav)
+"iI" = (/turf/open/floor/plating,/area/ruin/unpowered/no_grav)
+"iJ" = (/turf/open/floor/plating,/area/derelict/medical/chapel)
+"iK" = (/obj/machinery/mass_driver{dir = 8; icon_state = "mass_driver"; id = "derelict_gun"},/obj/machinery/door/window{dir = 4; req_access_txt = "25"},/obj/structure/closet/coffin,/turf/open/floor/plating,/area/derelict/medical/chapel)
+"iL" = (/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"iM" = (/obj/item/stack/medical/bruise_pack,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/medical)
+"iN" = (/obj/item/stack/medical/ointment,/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/medical)
+"iO" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plating/airless,/area/derelict/medical)
+"iP" = (/obj/structure/closet/l3closet,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"iQ" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"iR" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/space,/area/space)
+"iS" = (/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space)
+"iT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/open/space,/area/space)
+"iU" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/chapel{dir = 1},/area/derelict/medical/chapel)
+"iV" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/chapel{dir = 4},/area/derelict/medical/chapel)
+"iW" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/chapel{dir = 1},/area/derelict/medical/chapel)
+"iX" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/chapel{dir = 4},/area/derelict/medical/chapel)
+"iY" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"iZ" = (/obj/item/weapon/cigbutt,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"ja" = (/obj/machinery/door/airlock/glass{name = "Med-Sci"; req_access_txt = "9"},/turf/open/floor/plating/airless,/area/derelict/medical)
+"jb" = (/obj/structure/table,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"jc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"jd" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/derelict/arrival)
+"je" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/chapel,/area/derelict/medical/chapel)
+"jf" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"ji" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jj" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/medical)
+"jk" = (/obj/item/weapon/reagent_containers/glass/beaker,/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/medical)
+"jl" = (/obj/structure/closet/wardrobe/genetics_white,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jm" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"jn" = (/obj/item/weapon/shard,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"jo" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"jp" = (/turf/open/floor/plasteel/airless/white,/area/ruin/unpowered/no_grav)
+"jq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"jr" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary)
+"js" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"jt" = (/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/derelict/arrival)
+"ju" = (/obj/machinery/light/small,/turf/open/floor/plasteel/chapel{dir = 4},/area/derelict/medical/chapel)
+"jv" = (/obj/machinery/door/window{dir = 8},/turf/open/floor/plasteel/airless,/area/derelict/medical/chapel)
+"jw" = (/turf/open/floor/plasteel/airless,/area/derelict/medical/chapel)
+"jx" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/airless,/area/derelict/medical/chapel)
+"jy" = (/obj/machinery/power/apc{dir = 4; name = "Worn-out APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/airless,/area/derelict/medical/chapel)
+"jz" = (/obj/machinery/power/apc{dir = 0; name = "Worn-out APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jA" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/bed,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jB" = (/obj/item/stack/medical/ointment,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jC" = (/obj/structure/bed,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jD" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/medical)
+"jE" = (/obj/machinery/door/airlock/medical{name = "Medical"},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jF" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"jG" = (/obj/structure/window/fulltile,/turf/open/space,/area/ruin/unpowered/no_grav)
+"jH" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel,/area/derelict/arrival)
+"jI" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plasteel,/area/derelict/arrival)
+"jJ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/derelict/arrival)
+"jK" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/derelict/arrival)
+"jL" = (/turf/closed/wall/r_wall,/area/derelict/medical/chapel)
+"jM" = (/obj/machinery/door/window,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless,/area/derelict/medical/chapel)
+"jN" = (/obj/machinery/door/window/southleft,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jO" = (/obj/machinery/door/window/southright,/turf/open/floor/plasteel/airless/white,/area/derelict/medical)
+"jP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"jQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Toxins Research"; req_access_txt = "7"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"jR" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"jS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"jT" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/ruin/unpowered/no_grav)
+"jU" = (/obj/machinery/door/airlock/external{name = "Arrivals Docking Bay 1"},/turf/open/floor/plating,/area/derelict/arrival)
+"jV" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/ruin/unpowered/no_grav)
+"jW" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"jX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary)
+"jY" = (/turf/open/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary)
+"jZ" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"ka" = (/obj/structure/frame/computer,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"kc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"kd" = (/obj/structure/window/fulltile,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"ke" = (/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"kf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"kg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/window/fulltile,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"kh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Toxins Research"; req_access_txt = "7"},/turf/open/floor/plasteel/airless,/area/derelict/arrival)
+"ki" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/derelict/arrival)
+"kj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/derelict/arrival)
+"kk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/derelict/arrival)
+"kl" = (/obj/machinery/door/airlock/command{name = "Teleporter Room"},/turf/open/floor/plasteel/airless,/area/derelict/medical/chapel)
+"km" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary)
+"kn" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"ko" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kp" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kq" = (/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kr" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 0; name = "Worn-out APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/derelict/arrival)
+"ks" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/derelict/arrival)
+"kt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"ku" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/hallway/primary)
+"kv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kw" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"ky" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kz" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kB" = (/obj/structure/window/fulltile,/turf/open/floor/plating/airless,/area/derelict/arrival)
+"kC" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/derelict/arrival)
+"kD" = (/obj/machinery/door/window,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kE" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kF" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kG" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kH" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kI" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kJ" = (/obj/structure/girder,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kK" = (/obj/structure/girder,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"kL" = (/obj/structure/window/fulltile,/turf/open/space,/area/space)
+"kM" = (/obj/structure/girder,/turf/open/floor/plating,/area/derelict/arrival)
+"kN" = (/obj/structure/bed,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kO" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"kP" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"kQ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"kR" = (/obj/machinery/door/airlock/security{name = "Security"; req_access = null; req_access_txt = "1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kS" = (/obj/machinery/door/window,/turf/open/floor/plasteel/airless,/area/hallway/primary/port)
+"kT" = (/obj/machinery/vending/hydroseeds,/turf/open/floor/plasteel/airless,/area/hallway/primary/port)
+"kU" = (/obj/item/weapon/cigbutt,/turf/open/space,/area/space)
+"kV" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/derelict/arrival)
+"kW" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kX" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kY" = (/obj/machinery/vending/sovietsoda,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"kZ" = (/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"la" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 0; name = "Worn-out APC"; pixel_y = -24},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"lb" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"lc" = (/obj/structure/window/reinforced{dir = 8},/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"ld" = (/obj/structure/lattice,/obj/item/stack/cable_coil/cut,/turf/open/space,/area/space)
+"le" = (/obj/effect/decal/cleanable/blood/splatter,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"lf" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/effect/decal/cleanable/blood/splatter,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"lg" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"lh" = (/obj/machinery/door/airlock/maintenance{name = "Atmospherics Access"; req_access_txt = "24"},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"li" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"lj" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"lk" = (/obj/structure/closet/wardrobe/orange,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/weapon/shovel/spade,/obj/item/weapon/cultivator,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"ll" = (/obj/structure/grille,/turf/open/floor/plating,/area/derelict/arrival)
+"lm" = (/obj/structure/closet/wardrobe,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel,/area/derelict/arrival)
+"ln" = (/obj/item/weapon/stock_parts/manipulator{pixel_x = -15; pixel_y = 10},/obj/item/weapon/stock_parts/manipulator,/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"lo" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"lp" = (/obj/structure/chair/stool,/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"lq" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker{list_reagents = list("sacid" = 50)},/obj/item/weapon/paper/crumpled/bloody{desc = "Looks like someone started shakily writing a will in space common, but were interrupted by something bloody..."; info = "I, Victor Belyakov, do hereby leave my _- "; name = "unifinished paper scrap"},/obj/item/weapon/pen,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"lr" = (/obj/structure/table,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"ls" = (/turf/open/floor/plasteel/airless,/area/derelict/atmospherics)
+"lt" = (/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lv" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lw" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lx" = (/turf/closed/wall,/area/derelict/atmospherics)
+"ly" = (/turf/closed/wall/r_wall,/area/derelict/atmospherics)
+"lz" = (/turf/open/space,/area/ruin/unpowered/no_grav)
+"lA" = (/obj/structure/lattice,/turf/open/space,/area/ruin/unpowered/no_grav)
+"lB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"lC" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"lD" = (/obj/structure/grille,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"lE" = (/obj/structure/bed,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"lF" = (/turf/open/floor/plasteel/airless/floorgrime,/area/derelict/hallway/primary)
+"lG" = (/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/hallway/primary)
+"lH" = (/obj/item/ammo_casing/a357,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"lI" = (/obj/structure/table,/obj/item/device/healthanalyzer,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"lJ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lL" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map"; dir = 8},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lM" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lN" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/machinery/meter,/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{icon_state = "intact"; dir = 9},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lP" = (/obj/machinery/door/airlock/maintenance{name = "Atmospherics Access"; req_access_txt = "24"},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"lR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"lS" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plasteel,/area/derelict/arrival)
+"lT" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel/airless,/area/derelict/atmospherics)
+"lU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{icon_state = "intact"; dir = 5},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lW" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"lX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"lY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/derelict/arrival)
+"lZ" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/derelict/arrival)
+"ma" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"mb" = (/obj/structure/lattice,/obj/item/stack/cable_coil/cut,/turf/open/space,/area/ruin/unpowered/no_grav)
+"mc" = (/obj/machinery/door/window{dir = 8},/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"md" = (/turf/closed/wall,/area/derelict/hallway/secondary)
+"me" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"mf" = (/turf/closed/wall/r_wall,/area/derelict/hallway/secondary)
+"mg" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"mh" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"mi" = (/obj/item/ammo_casing/a357{pixel_x = -5},/obj/item/ammo_casing/a357{pixel_x = 5; pixel_y = 6},/obj/item/ammo_casing/a357,/turf/open/floor/plasteel/airless,/area/derelict/hallway/primary)
+"mj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"mk" = (/turf/open/floor/plasteel/airless{icon_state = "floorscorched1"},/area/derelict/atmospherics)
+"ml" = (/obj/structure/window/fulltile,/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"mm" = (/obj/structure/grille,/obj/item/weapon/shard,/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/airless,/area/space)
+"mn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"mo" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless,/area/derelict/atmospherics)
+"mp" = (/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/atmospherics)
+"mq" = (/turf/open/floor/plasteel{icon_state = "damaged2"; initial_gas_mix = "TEMP=2.7"},/area/derelict/atmospherics)
+"mr" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/atmospherics)
+"ms" = (/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/atmospherics)
+"mt" = (/obj/structure/window/fulltile,/turf/open/space,/area/derelict/atmospherics)
+"mu" = (/obj/item/stack/rods,/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"mv" = (/obj/item/weapon/shard{icon_state = "small"},/turf/open/space,/area/space)
+"mw" = (/obj/structure/frame/computer,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/airless,/area/derelict/atmospherics)
+"mx" = (/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/airless,/area/derelict/atmospherics)
+"my" = (/obj/machinery/light/small,/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/atmospherics)
+"mz" = (/obj/structure/lattice,/turf/open/space,/area/derelict/atmospherics)
+"mA" = (/obj/item/stack/cable_coil/cut,/turf/open/space,/area/ruin/unpowered/no_grav)
+"mB" = (/obj/structure/door_assembly/door_assembly_mai{name = "airlock assembly"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"mC" = (/obj/item/weapon/wirecutters,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"mD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"mE" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"mF" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"mG" = (/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/atmospherics)
+"mH" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/ruin/unpowered/no_grav)
+"mI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"mJ" = (/obj/item/stack/cable_coil/cut,/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"mK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"mL" = (/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"mM" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plasteel/airless,/area/derelict/atmospherics)
+"mN" = (/turf/open/floor/plasteel/airless{icon_state = "damaged1"},/area/derelict/atmospherics)
+"mO" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/space,/area/ruin/unpowered/no_grav)
+"mP" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"mQ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/turf/open/floor/plating/airless,/area/derelict/atmospherics)
+"mR" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/derelict/hallway/primary)
+"mS" = (/turf/open/space,/area/derelict/atmospherics)
+"mT" = (/obj/machinery/light/small,/turf/open/floor/plasteel/airless,/area/derelict/atmospherics)
+"mU" = (/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"mV" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"mW" = (/obj/machinery/door/airlock/maintenance{name = "Aux Storage"; req_access_txt = "23"},/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"mX" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Worn-out APC"; pixel_x = -24; pixel_y = 0},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"mY" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"mZ" = (/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"na" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"nb" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"nc" = (/obj/machinery/power/apc{dir = 1; name = "Worn-out APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/airless,/area/derelict/atmospherics)
+"nd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"ne" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless{icon_state = "derelict9"},/area/derelict/hallway/secondary)
+"nf" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless{icon_state = "derelict10"},/area/derelict/hallway/secondary)
+"ng" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless{icon_state = "derelict11"},/area/derelict/hallway/secondary)
+"nh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless{icon_state = "derelict12"},/area/derelict/hallway/secondary)
+"ni" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless{icon_state = "derelict13"},/area/derelict/hallway/secondary)
+"nj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless{icon_state = "derelict14"},/area/derelict/hallway/secondary)
+"nk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless{icon_state = "derelict15"},/area/derelict/hallway/secondary)
+"nl" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless{icon_state = "derelict16"},/area/derelict/hallway/secondary)
+"nm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"nn" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"no" = (/turf/open/floor/plasteel/airless{icon_state = "derelict1"},/area/derelict/hallway/secondary)
+"np" = (/turf/open/floor/plasteel/airless{icon_state = "derelict2"},/area/derelict/hallway/secondary)
+"nq" = (/turf/open/floor/plasteel/airless{icon_state = "derelict3"},/area/derelict/hallway/secondary)
+"nr" = (/turf/open/floor/plasteel/airless{icon_state = "derelict4"},/area/derelict/hallway/secondary)
+"ns" = (/turf/open/floor/plasteel/airless{icon_state = "derelict5"},/area/derelict/hallway/secondary)
+"nt" = (/turf/open/floor/plasteel/airless{icon_state = "derelict6"},/area/derelict/hallway/secondary)
+"nu" = (/turf/open/floor/plasteel/airless{icon_state = "derelict7"},/area/derelict/hallway/secondary)
+"nv" = (/turf/open/floor/plasteel/airless{icon_state = "derelict8"},/area/derelict/hallway/secondary)
+"nw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"nx" = (/obj/structure/lattice,/turf/open/space,/area/derelict/hallway/secondary)
+"ny" = (/obj/structure/grille,/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"nz" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"nA" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"nB" = (/turf/closed/wall/r_wall,/area/derelict/se_solar)
+"nC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Aft Solar Access"; req_access_txt = "10"},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nD" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"nE" = (/obj/machinery/door/firedoor,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"nF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nG" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/airless,/area/derelict/hallway/secondary)
+"nH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"nI" = (/obj/structure/girder/reinforced,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"nJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/closed/wall/r_wall,/area/derelict/se_solar)
+"nK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/closed/wall/r_wall,/area/derelict/se_solar)
+"nL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/airlock/engineering{name = "Aft Solar Access"; req_access_txt = "10"},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nM" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/derelict/se_solar)
+"nN" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"nO" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nQ" = (/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/derelict/se_solar)
+"nR" = (/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nS" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nT" = (/obj/docking_port/stationary{dheight = 0; dir = 2; dwidth = 11; height = 22; id = "whiteship_z4"; name = "KSS13: Derelict"; width = 35},/turf/open/space,/area/space)
+"nU" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/item/drone_shell,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nV" = (/turf/open/floor/plating/airless,/area/derelict/se_solar)
+"nW" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nX" = (/obj/item/weapon/storage/toolbox/syndicate,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nY" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/machinery/power/solar_control{id = "derelictsolar"; name = "Primary Solar Control"; track = 0},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nZ" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; environ = 0; equipment = 0; lighting = 0; locked = 0; name = "Worn-out APC"; pixel_x = -24; pixel_y = 0},/turf/open/floor/plating/airless,/area/derelict/se_solar)
+"oa" = (/obj/item/weapon/paper{desc = ""; info = "The Syndicate have cunningly disguised a Syndicate Uplink as your PDA. Simply enter the code \"678 Bravo\" into the ringtone select to unlock its hidden features.
Objective #1. Kill the God damn AI in a fire blast that it rocks the station. Success!
Objective #2. Escape alive. Failed."; name = "Mission Objectives"},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/se_solar)
+"ob" = (/obj/machinery/light/small{dir = 4},/obj/item/clothing/head/helmet/space/syndicate/black/red,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"oc" = (/obj/item/stack/rods,/turf/open/floor/plating/airless,/area/derelict/hallway/secondary)
+"od" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"oe" = (/obj/machinery/light/small,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"of" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"og" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"oh" = (/obj/item/clothing/suit/space/syndicate/black/red,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"oi" = (/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; icon_state = "remains"; name = "Syndicate agent remains"},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"oj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"ok" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"ol" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/derelict_aft)
+"om" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/derelict_aft)
+"on" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "derelictsolar"; name = "Derelict Solar Array"},/turf/open/floor/plasteel/airless,/area/solar/derelict_aft)
+"oo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/derelict_aft)
+"op" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "derelictsolar"; name = "Derelict Solar Array"},/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/derelict_aft)
+"oq" = (/turf/open/floor/plating/airless,/turf/open/floor/plating/airless{icon_state = "platingdmg2"},/area/solar/derelict_aft)
+"or" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/space,/area/solar/derelict_aft)
+"os" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/space,/area/solar/derelict_aft)
+"ot" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/space,/area/solar/derelict_aft)
+"ou" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/derelict_aft)
+"ov" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/space,/area/solar/derelict_aft)
+"ow" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/space,/area/solar/derelict_aft)
+"ox" = (/obj/structure/cable,/obj/machinery/power/solar{id = "derelictsolar"; name = "Derelict Solar Array"},/turf/open/floor/plasteel/airless,/area/solar/derelict_aft)
+"oy" = (/turf/open/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/derelict_aft)
+"oz" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/derelict_aft)
+"oA" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/space,/area/solar/derelict_aft)
+"oB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/derelict_aft)
+"oC" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/space,/area/solar/derelict_aft)
+"oD" = (/obj/machinery/power/tracker,/obj/structure/cable,/turf/open/floor/plasteel/airless,/area/solar/derelict_aft)
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacaaadaaababacacacacacacaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaacaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafagahaaahahahaeahahahaaahahahaaacaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaiaiajakalalalamanananakananaoaaacaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacabapapapaaapapapaqapapapaaapapapababaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaabaaaaaaaaaaaaaraaaaaaaaaaaaabaaacaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaabaaaaaaaaaaaaaeaaaaaaaaaaaaabaaacaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacasatatauavawasacacacacabacaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxaaaxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayasazaAaBaCaDasaEabaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxaxaxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaFaBaGaHaIaJasaEaEaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxaKaLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaMaNaOaPaPaQasasaEaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxaRaxaxaxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayaSaTaUazazazazaVaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxaWaxaXaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxayayayayayayaYayayayayayayaYayayayayayayaSaZbabbbbaUazbcbdaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxaRaRbeaWaRbfbgaxaxaxbgaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaxaSasasasasbhasasbiaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxaxaxaxaxaRaxaRaRaRaxaRaRaRaxaxaxaxaxaxaxbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjasbkaNazasbiaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablbjblaRaxaRaxaRaxaRaxaRaxaxaxbgaxbgaxaxaxaxaxbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjasasbmasasaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablbjblaRaxaRaxaRaxaRaxaRaxaxaRaRbnaRbobpaWaRaxbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjasasbqbrbsasaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablbjblaRaxaRaxaRaxaRaxaRaxaxaRaRaRaRaRaxaxbtaxbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjbjasbkazbubvasaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablbjblaRaxaRaxaRaxaRaxaRaxaxbwaRbxaRbyaxaxbzbjbjaxaxaxaxaxaxaxaxaxaxaxaxaxbjbjbjbjasbAazbBbCasaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablbjblaRaxaRaxaRaxaRaxaRaxaxbyaRbDaRbyaxaxbzbjbjaxaxbzbzbzbEbzbzbFbGbzaxaxbjbjbjbjasbHazbrbsasbiaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablbjblaRboaRaxaRboaRaxaRbpbpaRbeaRbtbgaxaxbIbzbzbzbJbzbKbEbEbLbMbKbzbNaxaxbjbjbjbjasazazaNazasbiaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablbOblbgaxaxaxbgaxaxaxbgaRaxaRaxaxaWaxaxaxbPbjbjaxaxbNbNbKbQbRbLbKbNbNaxaxbjbjbjbjasazazaNbSasasasaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablbOblaxaxaxaxaxaxaxaxaxaxaxbTaxbUbebVaxaxbjbjbjaxaxbWbXbYbKbFbEbZbNbzaxaxbjbjbjbjasazazaNazazazcaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablcbababaaaaaaaaaaaaaaaaaxaxaxaxaxaxaxaxaxbjbjbjaxaxbPcccdbNbEbNbzbNbzaxaxbjbjbjbjasbHazaNazasasasaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablaaaaababaaaaaaaaayacacacabayaaaaaaaaaaaxaxaxaxaxaxaxcecfcfcfcfcgaxaxaxaxbjbjbjbjasazazaNazasbiaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaababchchchabaaaaaaaaaaaaaaaaaaaaaaaaaaaaciaaaaaacjbjbjbjbjbjbjbjbjasazazckaUasbiaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaciaaaaaacjbjbjbjbjbjbjbjbjasbHazazaNaschaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaabclclclclaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaciaaaaaacjbjbjbjbjbjbjbjbjasasazcmaNasaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaacncocpcocqclaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaciaaaaaacrcscscscscscscscscscscscsctcsaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaabcucvcwcucuabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacrcxcxcyczcAcBcscCcDcEcscxcFcsaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcucGcHcucIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJcKcKcLcKcMcNcscxcxcxcscsctcsaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaclcwcOcOcPcoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacscxcxcxcxcFcQcscRcxcScscxcFcsaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaclcOcOcOcOcuabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacscTcTcTcUcVcscscTcWcTcscscXcsaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababaYaaaaclcYcZdadbdcclabaaaYababaaaaaaaaaaaaaaaaaaaaaaaaaaaacscxcxcxcxcFcscsddcxcxcxcxcFcsaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababaYdeababcldfdgdhdgdiclababdjaYabababaaaaaaaaaaaaaadkdkcicicicsdlcxdmcKdndodpcKcKcKcKcKdqcsacaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababdrdrdrdrdscOdtcOdudrdrdrdrabababababaaaaaaaaaaaaaadvdkcicicsdwdxdydwdwcscscscscscscscscsdzchaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdrdrdrdrdAdrdBcldCcldDdrdrdrdrdrdrababaaaaaaaaaadkaadEaacicicicscxcxcFcxcxdFdGdHdIdJdKdLdIdMdNaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadrdrdrdOdPdQdRdSdTdUdVcldWdOdXdOdrdrdrabaaaaaaaaaaaaaadkaaaaaaaacsdlcxdYcxcxdFdZeaebeaeaeaeaecedacaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadrdreeefegehehdOeidaejekelemdOdOdOeneodrciaaaaaaaaaaaaaaaaaaaaaaaacsdwdxepdwdweqeaeaereseaeaebeaeteuaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadrdrevevevevewdWexdrdreydrdWezdXezezdWdrciaaaaaaaaaaaaaaaaaaaaaaaacscxddeAcxcxeBeaeaeaeaeCeaeaeDeEacaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadrdrdWezezezeFdPdOeGezdWezezdOdPdPezezdrciaaaaaaaaaaaaaaaaaaaaaaabcscxcxeHcLeIeJeKeKeLeMebeaeaeaetacaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdrdrezdPdXdOeNdOdXdOdWdWezdOdOdOdOdXdOdrciaaaaaaaaaaaaaaaaaaaaababcscxcxeAcxcxeOePeQeaeReSeaeSeTeUayeVaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababdrdrdOdXdOeWeXeYeZdWfadWdWfbfcfdezdPdXdrciabaaaaaaaaaadkaaaaabababcscscscFcscxdFfeePfffgfhdGdGeQfieuaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababdrdrezdOeWfjfkfldWdWdWdWdWfmfmfnfddOdPdrciababaacicscscscscscscscscscscxcFcscscsfofofpfofofodzdzdzacaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdrdrdrezezfqfrdPdWdWdWdWdWdWdWdWfsftezfudrciciababcicsfvfwfxfyfzfAfBcscscxcFcsfCfCaYabayayaaaYfDaychacaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadrdrdrdrdrezezfqfjdPdWdWdWdWdWdWdWdWfEftdWezdrdrdrdrdraacsfFfxfxfxfxfxfxcscscxcFcsfCfCabaaaaaaaaababaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdrdrezfGfHezezfIfJdWeZaaaaaaaaaadWdWfEewdWezdOezdWdrdrabcsfxfxfxfxfxfxfxcscscsfKcscscsabaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadrdrfLdOfEfdezdPezfMdWdWaaaaaaaaaadWdWfNfMezfOfPfQdOezdrdrcscsfRcsfSfSfSfScsfxfxfTfxfxcsdkaaaaaaaaaaaaaaaaayayaYchaychayaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadrdremdXfUftdPdPdPdXdWdWaaaaaaaaaadWdWfVdWezfWfXfQdOfYdrdrfZgagbgbgcgcgcgcgdgegegffxggcsababaaaaaaaaaaaaaaayayaYchayfDayaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadrdrezezfUftezdXeZghdWdWaaaaaaaaaadWdWdWgidWezdOgjdXezgkgkfZglgmgngogogogpcsgqfxfTfxfxcsaaaaaaaaaaaaaaayayaygraYchaychayaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdrdrezgsewdOdPgtgudWdWaaaaaaaaaadWdWgvgwezezfbfJezdrgkgxgygagzgngogAgogpcsfxfxgBfxfxcsaaaaaaaaaaaaayayayaygCaYchgDchayaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdrdrdrdrdrezezfqdWdWdOdWdWdWdWdWdWdWdWgEdPdPdrdrdrdrgkglfZfZfZgFfZfZfZfZfZfZfZcscscscsaaaaayaychayaygDgGgHgraYchgrfDayaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababdrdrdrdOgIgJdWdOdXdWdWdWdPdOdWdWgKgEdXezdrdrdrababglfZgngLgLfZgogMgNfZgOgLcscsaaababayaygCchayaYgrgCgDgPaYchgQchayaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababdrdrdXdPgRdWdWdOgSdOdPdXeheiehgSgTdPdPdrdraaaagxgUfZgngLgngngogogofZfZaaababayaaaaaygrgrchaygVgVgVgVgVgVgWgWgWayaa
+aaaagXgXgXgXgXgXgXgXgXgXgXgXgXaaaaaaaaaaaaaaaaaaaaaaaagYdWgYababgJfbftezezezgZevevewdOdOezdrdraagLhagmfZgogogognhbgofZfZfZabhcchchchhcgWgWgWgWgWgWhdhehfhghfhhhigWaaaa
+aaaagXhjhjhjhjhkhkhkhkhkhlhjgXaaaaaaaaaaaaaaaaaaaahmaadWdWhnababdWhoezdOdOfWezezdOdPdXezezdrdraagLgLgmfZfZfZgofZfZfZfZfZfZchgCayaygCgChphphqhqhrgWhshdhshfhfhihfgWaaaa
+aaaagXgXgXhjhthkhkhkgXgXhugXgXgXgXgXhvhwhwhwhvhxhyhzhAhvhBabhCabezezdOdPdPdPdOezezdOdPdrdrdrdraaglgmgnfZgogzgngzfZgzgzhDgzaygCgCgCaygChqhphrhrhqhEhfhfhfhfhfhfhfgWaaaa
+aahCgXhFgXgXgXgXgXhGgXhHhkhlhkhkhkgXhIhIhIhJhIhKhLhzhzhMababababdrdrezhNdXdOezdrdrdrdrdrdrababgLhOgmgngogogngLgzgzhDgzgLgLchchhchchchcgVgVgVgVgVgVhfhfhPhfhfhfhfgWaaaa
+aahQhRhShThShUhShThSgXhHhkhHhkhHhkgXhVhIhIhIhIhWhXhYhzhZhzhzababdrdrdrdrdWdrdrdrdrdrdrabaaayfZgUgmgngnfZgogngngLgkgkgkgkgkabababaaaaaaiagDiaayibgVhdhdhfhdichfidgWaaaa
+aahQieifigihiiijiiijgXhHhkhHhkhHhkhuhIhIhIhIhIhIhXikilhzhzhzaaababdrdriminiodrdrabababaaaaayfZgmgmipgnfZfZfZfZgzgkgPgCgPiqaaabaaaaaaaaaaaaiaabiqgVirirhfirishfhfgWaaaa
+itiuiviwixiwhThShThSgXhHiyhHizhHhkgXiAhIhIhIhIiBiChXhYhzhzhzaaaaababdrdrdrdrdrababaaaaiDiDiEfZgniFgngofZgogzgngzgkgCiqgCgCaaabaaaadkaaaaaaaaiqabgVhfhfhfhfiGhdhsgWaaaa
+iHiIiJiJiJiKiiijiiijgXhHhkhHhkhHhkhuhIhIhIhIhIiLhIiMhXiNhYhzhziOhvhvhvhviPiQabaaabaaiRaaaaayfZfZipgnfZfZgLgogLgzgkgCiaaaaaaaabaaaaaaaaaaaaaaaagPgVgWhfhfgWgWgWgWgWaaaa
+iSiTiUiViWiVhTiXhUhSgXhHhkhkhkhthkgXhIhIhIhIhIiYhIiZhIhXhXhYhzhzjahzjaiDayayayaaababababaajbfZgojcgogofZgogogogogkiqgCaaaaaaabaaaaaaaaaaaaaaaagVgVgVhfhfgWjdjdjdgWaaaa
+aahQieijiijeiiijiiijgXgXgXgXgXgXgXgXhVhIhIhIjfjgjhjijhjihXhYjjjkhvjlhvgPayayayjmjnayayayjojpfZgojqgogofZgojrgojsgkgkgkayababayabayabababayababayaygVhfhfhfhfhfjtgWaaaa
+aahQhRhShTjuhThShThSjvjwjwjwjxjwjygXiAhIhIhIjzjAjBjChIhvjDjEhvhvhvhvhvhIjpgPgDjFaygDayaygPjpfZgojqgojsfZgogogogLgogogkfZjGjGchjGaaaaaaaaabaaaaaaabgVjHhfhfhfhfjIgWjJjK
+aahCjLjLjLjLjLjLjLjLjLjLjLjLgXgXjMgXfZfZfZfZfZfZfZfZfZfZjNjOfZfZfZfZfZfZfZfZfZfZgDjpjpjpgDjbfZgojPgcgcgcgcgcgbgcgcgcjQgcjRjSjRjGjGjGchchjTchchchhcgVgWhfhfhfhfhfjUhPjU
+aaaaaYgPayabaaaaaaababdEjVjLfZjWjXjYgogojZgojWgogofZkagojqgogogofZgogogogogofZfZfZfZfZfZfZfZfZgojqgogofZgogngogogLgogkfZjGchkbaykckdkekfkgkcjRkckckhkikjkkhPhfhfgWjJjK
+aaaaaYgHdEaaaaaaaaaaabaygPklgogLgLkmkngogogogokogofZkpgojqgogojsfZkpkngokogofZfZfZfZgogogogogogojqgogofZgokogngngokqgkfDabaajGjGjGayfDchaajGjGjGjGgVgWhfkrhfhfksgWaaaa
+aaaaabayaaaaaaaaaaaaayabayjLfZgUgnktkukvkvkvkvkvkvkwkvkvkxgogogofZgogogogogogogojZgokygcgcgcgcgckzkAgkgkgkgogogogogogkfDabaaaaaaaaaaaaaaaaaaaaaaaakBgWhfgWhfhfkCgWaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaYjLfZgngLfZfZfZgofZfZfZkDfZgogokEgcgcgckFgcgckGgcgcgcgcgcgckHgogogogogogojqgkkIgkgkkJgnfZkKchabaaaaaaaaaaaaaaaaaaaaaaaakLkMgWhfgWgWgWgWgWgVaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaafZgLgmfZkNjZgofZkNjZgofZkOkOkOkPkDkQfZkpgojqgogogogogogogogkgkgkgkgkgkkRgkkSkTgkfZfZfZaaaaaaaaaaaaaaaakUaaaaabaaababgWhPkVhfhfjtkVhfgVgVac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgnfZkWknkXfZkWknkWfZkYkZkZgogogofZgogolagogogogogogogogkgrgrlbgrgrlcgrgraYaYchchchgDaaaaeVaaaaaaaaaaaaabldldababgWkMhfhfhPhfhfhfhfgVac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababfZfZfZfZfZfZfZfZfZgolelflggogofZfZfZfZfZfZfZfZfZlhfZgkayayayaygrliljgraYlbgrlkchayabaaabababaaaaaaabababaaabaakLllhfhfhfhfhPhflmgVac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgLgLgLlnkajYlojYfZgolplqlrlggofZlsltlultlvlwlwlxltlxlylzlzlAeuaygrlBlClDgrgrlEchabchababdkabababababaaabaaaaaakLllkMhfhfhfhfhfhfgVac
+aaaaaaaaaaaaaaaaaaaaaaaaaaababababababgLgLjYlFgolGfZkplHlIlrgojsfZlJlKltlLlMlNlOlxlPlxlylzlAlAlAlAaylQgrlRgrlElEchabaaaaaaaaabababaaabaaaaabaaaakLllhfhfhfhfhfhflSgVac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababgLgLgLjYgofZgogolrlrgogofZlTlUlVlLlWltlslxlslxlylzlAlzlzlzayljgrlXgrlElEchababaaaaababaaaaaaaaaaaaaaaaaaaalYlZlYjJjJjJjJjJgVac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagLgLgLfZgogolglggogofZltlsltmamalslslxlPlxlylzlAlAlAmbayaygrmcgrgrgrmdmemfaYaYabaaaaaaaaaaaaaaaaaaaaaamghPjFayayayayaaaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababgLmhmigogogogogofZmjltltltlsltmklxlPlxlyaYaYaYaYlzlzjRaYaYaYaYaYmfmlmfaaayaaaaaaaaaaaaaaaaeVaaaaaammlZmnchaaaachaaaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabfZfZfZfZfZfZkDfZgOmoltltltltmpmqmrmrmsmtlzlAlzlAlzlzlzlAaygrgrgrmfmumfaachaaaaaaaaaaaaaaaaaaaaaaaamvaaaaaaaaaaacayaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababaagLgLhDgngolGfZmwmxltltltlsmyltltmtmzlAlAgPaYmAlzlzlAayjRayljmBmCmDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababaaaagLgmmEgogofZmFlsltltltlsltltmrmGmtlAlAlAmHlAlAlAlAlzayaygrmfmImDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacayaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaagLmJgLgnmKgofZmLmMlsltlsltltltmrmGlxlzlzlAlAlzlzlzlAlzlzaygrmfmImDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaabaagLgLgLgogogmfZltlsltltmNlsltltmGmplxgPlzlAaYaYlzlzlAlAlAaYaYmfmImDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacayaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabababfZgLfZfZfZfZlsltlsltmGmNltmsmNmpmtgPmOlAayaylzlzlAlzlzlzaymdmImDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaagLgLgLgngmgofZltmPmaltltltmQltmpmtmzlzlzlAchlzlzlzlAlzlzaygrmdmImDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayacayaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababaaaaabmEgLmRgnfZlxlxlsmGltlsltltlxlxmzlAlAchchlAlAlAlAayaygrgrmdmImfmdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaYac
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaagLgLgLgmgofZmSmSlxmTmGmGltltlxmSmSlzlzlzchlzlzlzaygrgrgrgrmdmImUmVmdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababchmdmemdmdmdmdmWmdmdlxmdmdmdmdmdmdmdmdmdmdmdmdmdmdmdmdmdmdmdmdmdmdmXmUmUmUmYaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababmZmUmUmUnanbmUmUmUncndnenfngnhninjnknlndndndndndndndndndndndnmndnnmZmUmUmDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmZmZmZmUmUmUmUmUmUmUmUnonpnqnrnsntnunvmUmUmUmUmUmUmUmUmUmUmUmImUnwmUmUmUmDaaaaaaaaaamvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababnxnynznznzmdnznznznznzmdnznznznznzmdnznznznznzmdnznznznzmdmImZmZmUmUmUnAitititaaaaaaiRaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayacacacacacacacacacacchacacacacaceueueuacacacaYacacacacnBnCnBmZmUmUmZnDnEmlmlmZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYaaaaaaaanBnFnBnGnGmfnHmfnHmfiSiSiSaaaaaamvaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanIayaynBnJnKnLnBnMnMmfnNmfnNmfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababaynBnOnBnPnQnRnSmfnNmfnNmfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabayaynBnUnVnPnWnXnRmfnNmfnNmfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabldaygPnBnYnBnZnRoaobmfocmfnNmfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaygPodoeofognRohoinRmfnNmfnNmfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaygrgrnBnPnBnRnRnVojmfnNmfocmfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYaYaYaanBnBoknBnBnBnBnBmfnNmfocmfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaabolabaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaomaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaonononaaooaaonopoqaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaorososotouotovowdkaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaoxoxoxaaooaaoxoyaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaozaaaaaadkaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaonononaaooaaonononaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacabozoAosoBouoBovovoCababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaoxoxoxaaooaaoxoxoxaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaoDaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacabacacababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm b/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm
new file mode 100644
index 00000000000..58e188aac0c
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm
@@ -0,0 +1,44 @@
+"a" = (/turf/open/space,/area/space)
+"b" = (/turf/closed/wall/r_wall,/area/AIsattele)
+"c" = (/obj/structure/lattice,/turf/open/space,/area/space)
+"d" = (/obj/structure/frame/computer,/turf/open/floor/plating/airless,/area/AIsattele)
+"e" = (/obj/machinery/teleport/station,/turf/open/floor/plating/airless,/area/AIsattele)
+"f" = (/obj/machinery/teleport/hub,/turf/open/floor/plating/airless,/area/AIsattele)
+"g" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/airless,/area/AIsattele)
+"h" = (/turf/open/floor/plating/airless,/area/AIsattele)
+"i" = (/obj/structure/rack,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plating/airless,/area/AIsattele)
+"j" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/AIsattele)
+"k" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/floor/plating/airless,/area/AIsattele)
+"l" = (/obj/item/weapon/stock_parts/cell,/turf/open/floor/plating/airless,/area/AIsattele)
+"m" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/AIsattele)
+"n" = (/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plating/airless,/area/AIsattele)
+"o" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/open/floor/plating/airless,/area/AIsattele)
+"p" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating/airless,/area/AIsattele)
+"q" = (/obj/effect/decal/cleanable/dirt,/obj/item/device/flashlight,/turf/open/floor/plating/airless,/area/AIsattele)
+"r" = (/obj/effect/decal/cleanable/dirt,/obj/item/device/radio/beacon,/turf/open/floor/plating/airless,/area/AIsattele)
+"s" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating/airless,/area/AIsattele)
+"t" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/AIsattele)
+"u" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating/airless,/area/AIsattele)
+"v" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating/airless,/area/AIsattele)
+"w" = (/obj/item/weapon/shard,/obj/item/weapon/electronics/apc,/turf/open/floor/plating/airless,/area/AIsattele)
+"x" = (/obj/structure/closet,/turf/open/floor/plating/airless,/area/AIsattele)
+"y" = (/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/turf/open/floor/plating/airless,/area/AIsattele)
+"z" = (/obj/structure/closet/crate,/obj/item/device/aicard,/obj/item/device/multitool,/obj/item/weapon/weldingtool,/obj/item/weapon/wrench,/obj/item/weapon/circuitboard/computer/teleporter,/turf/open/floor/plating/airless,/area/AIsattele)
+"A" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating/airless,/area/AIsattele)
+"B" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/AIsattele)
+"C" = (/obj/structure/lattice,/turf/open/space,/area/AIsattele)
+
+(1,1,1) = {"
+aaaaaabbbbbca
+aaaccbbdefbba
+acccbbghhhibb
+aajkbhlmhnmob
+ccphphqnrhhsb
+aajtbsuhvhwxb
+acccbbhhmhybb
+aaaccbbzhAbba
+aaaaaabbChBca
+aaaaaacccacaa
+aaaaaaacaaaaa
+aaaaaaaaccaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm
index 57039bae9d3..b44df3813f8 100644
--- a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm
+++ b/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm
@@ -1,124 +1,1291 @@
-"aa" = (/turf/open/space,/area/space)
-"ab" = (/obj/machinery/shieldwallgen{active = 2; anchored = 1; power = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/ruin/unpowered)
-"ac" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating,/area/ruin/unpowered)
-"ad" = (/obj/machinery/shieldwallgen{active = 2; anchored = 1; power = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/ruin/unpowered)
-"ae" = (/obj/machinery/shieldwallgen{active = 2; anchored = 1; power = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/ruin/unpowered)
-"af" = (/obj/machinery/shieldwallgen{active = 2; anchored = 1; power = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/ruin/unpowered)
-"ag" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/unpowered)
-"ah" = (/turf/closed/mineral,/area/ruin/unpowered)
-"ai" = (/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
-"aj" = (/obj/structure/flora/rock,/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
-"ak" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/ruin/unpowered)
-"al" = (/obj/structure/flora/ausbushes/genericbush,/turf/open/floor/grass,/area/ruin/unpowered)
-"am" = (/mob/living/simple_animal/hostile/poison/bees,/mob/living/simple_animal/hostile/poison/bees,/mob/living/simple_animal/hostile/poison/bees,/mob/living/simple_animal/hostile/poison/bees,/mob/living/simple_animal/hostile/poison/bees,/mob/living/simple_animal/hostile/poison/bees,/turf/open/floor/grass,/area/ruin/unpowered)
-"an" = (/mob/living/simple_animal/hostile/poison/bees,/turf/open/floor/grass,/area/ruin/unpowered)
-"ao" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/open/floor/grass,/area/ruin/unpowered)
-"ap" = (/mob/living/simple_animal/hostile/asteroid/goldgrub{will_burrow = 0},/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
-"aq" = (/obj/structure/flora/ausbushes/grassybush,/turf/open/floor/grass,/area/ruin/unpowered)
-"ar" = (/obj/structure/flora/rock/pile,/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
-"as" = (/mob/living/simple_animal/hostile/asteroid/basilisk,/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
-"at" = (/turf/closed/wall/r_wall,/area/ruin/unpowered)
-"au" = (/obj/structure/flora/ausbushes/leafybush,/mob/living/simple_animal/hostile/poison/bees,/turf/open/floor/grass,/area/ruin/unpowered)
-"av" = (/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/ruin/unpowered)
-"aw" = (/obj/structure/flora/rock,/obj/machinery/light,/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
-"ax" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/clothing/mask/surgical,/obj/item/weapon/razor,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"ay" = (/turf/open/floor/plasteel/darkgreen,/area/ruin/unpowered)
-"az" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/syringes{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/beakers,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aA" = (/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/ruin/unpowered)
-"aB" = (/obj/machinery/light,/mob/living/simple_animal/hostile/poison/bees,/turf/open/floor/grass,/area/ruin/unpowered)
-"aC" = (/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/ruin/unpowered)
-"aD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/airlock/highsecurity{name = "Bio Containment"; req_one_access_txt = "47"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aE" = (/obj/machinery/shieldwallgen{active = 2; anchored = 1; power = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/open/floor/plating,/area/ruin/unpowered)
-"aF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/closed/wall/r_wall,/area/ruin/unpowered)
-"aG" = (/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/item/weapon/gun/energy/floragun,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/darkgreen,/area/ruin/unpowered)
-"aI" = (/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aJ" = (/obj/machinery/shieldwallgen{active = 2; anchored = 1; power = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/ruin/unpowered)
-"aK" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space)
-"aL" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/closed/wall/r_wall,/area/ruin/unpowered)
-"aN" = (/obj/structure/table/reinforced,/obj/item/weapon/folder,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aO" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/darkgreen,/area/ruin/unpowered)
-"aP" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/bottle/liver_enhance_virion,/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aQ" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space)
-"aR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aS" = (/obj/machinery/power/apc{dir = 8; environ = 0; equipment = 0; lighting = 0; locked = 0; name = "Worn-out APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/rack,/obj/item/weapon/melee/baton/cattleprod,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/rack,/obj/item/clothing/suit/space/hardsuit/medical,/obj/item/weapon/tank/internals/emergency_oxygen/double,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aU" = (/obj/structure/rack,/obj/item/weapon/crowbar,/obj/item/weapon/shield/riot,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aV" = (/obj/machinery/smartfridge/chemistry,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aW" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/syringe,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aX" = (/obj/structure/table/reinforced,/obj/item/weapon/grenade/chem_grenade/antiweed{pixel_x = 3; pixel_y = 5},/obj/item/weapon/grenade/chem_grenade/antiweed{pixel_x = 4},/obj/item/weapon/grenade/chem_grenade/antiweed{pixel_x = -3; pixel_y = -1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aY" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/energy/temperature,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"aZ" = (/obj/structure/table/reinforced,/obj/item/weapon/cultivator,/obj/item/weapon/shovel,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"ba" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bb" = (/obj/machinery/door/airlock/hatch{name = "Bio-Research Station"},/turf/open/floor/plasteel/darkgreen,/area/ruin/unpowered)
-"bc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/darkgreen,/area/ruin/unpowered)
-"bd" = (/obj/machinery/power/terminal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/darkgreen,/area/ruin/unpowered)
-"be" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bf" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/obj/structure/cable,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bg" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bh" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bi" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/hypospray/medipen/stimpack,/obj/item/weapon/reagent_containers/glass/bottle/mutagen,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bj" = (/obj/structure/table/reinforced,/obj/item/weapon/surgicaldrill,/obj/item/weapon/hemostat,/obj/item/weapon/scalpel,/obj/item/weapon/surgical_drapes,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bk" = (/obj/structure/table/optable,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bl" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bm" = (/obj/structure/closet/wardrobe/science_white,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bn" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/snacks/carrotfries,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bo" = (/obj/machinery/shieldwallgen{active = 2; anchored = 1; power = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/ruin/unpowered)
-"bp" = (/obj/structure/bed,/obj/item/weapon/bedsheet/green,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bq" = (/obj/item/stack/cable_coil/cut,/obj/item/stack/tile/plasteel{pixel_x = 3; pixel_y = -4},/obj/item/weapon/wirecutters,/turf/open/floor/plating,/area/ruin/unpowered)
-"br" = (/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/shieldwallgen,/turf/open/floor/plating,/area/ruin/unpowered)
-"bt" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/shieldwallgen,/turf/open/floor/plating,/area/ruin/unpowered)
-"bu" = (/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/plating,/area/ruin/unpowered)
-"bv" = (/turf/open/floor/plating,/area/ruin/unpowered)
-"bw" = (/obj/machinery/light{dir = 1},/mob/living/simple_animal/hostile/carp,/turf/open/floor/plating,/area/ruin/unpowered)
-"bx" = (/obj/structure/flora/ausbushes/palebush,/turf/open/floor/plating,/area/ruin/unpowered)
-"by" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/closed/wall/r_wall,/area/ruin/unpowered)
-"bz" = (/obj/machinery/space_heater,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bA" = (/obj/structure/table/reinforced,/obj/machinery/juicer,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"bB" = (/obj/structure/alien/weeds,/turf/open/floor/plating,/area/ruin/unpowered)
-"bC" = (/obj/structure/alien/weeds/node,/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/ruin/unpowered)
-"bD" = (/obj/item/clothing/mask/facehugger{icon_state = "facehugger_dead"; stat = 2},/turf/open/floor/plating,/area/ruin/unpowered)
-"bE" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/plating,/area/ruin/unpowered)
-"bF" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/ruin/unpowered)
-"bG" = (/obj/machinery/door/airlock/external,/turf/open/floor/plasteel/darkgreen,/area/ruin/unpowered)
-"bH" = (/obj/structure/alien/resin/wall,/turf/open/floor/plating,/area/ruin/unpowered)
-"bI" = (/obj/structure/flora/ausbushes/reedbush,/turf/open/floor/plating,/area/ruin/unpowered)
-"bJ" = (/mob/living/simple_animal/crab{faction = list("carp")},/turf/open/floor/plating,/area/ruin/unpowered)
-"bK" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/space)
-"bL" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/darkgreen,/area/ruin/unpowered)
-"bM" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/darkgreen,/area/ruin/unpowered)
-"bN" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating,/area/ruin/unpowered)
-"bO" = (/obj/item/weapon/shard,/turf/open/floor/plating,/area/ruin/unpowered)
-"bP" = (/obj/structure/lattice,/turf/open/space,/area/space)
-"bQ" = (/obj/machinery/shieldwallgen{active = 2; anchored = 1; power = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable,/turf/open/floor/plating,/area/ruin/unpowered)
-"bR" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/open/floor/plating,/area/space)
-"bS" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable,/obj/machinery/shieldwallgen,/turf/open/floor/plating,/area/ruin/unpowered)
-"bT" = (/obj/structure/grille,/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating,/area/ruin/unpowered)
-"bU" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/turf/open/floor/plating,/area/ruin/unpowered)
-"bV" = (/obj/machinery/shieldwallgen,/turf/open/space,/area/space)
-"bW" = (/obj/item/weapon/shard,/turf/open/space,/area/space)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/open/space,
+/area/space)
+"ab" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"ac" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"ad" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"ae" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"af" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"ag" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"ah" = (
+/turf/closed/mineral,
+/area/ruin/unpowered)
+"ai" = (
+/turf/open/floor/plating/asteroid,
+/area/ruin/unpowered)
+"aj" = (
+/obj/structure/flora/rock,
+/turf/open/floor/plating/asteroid,
+/area/ruin/unpowered)
+"ak" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"al" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"am" = (
+/mob/living/simple_animal/hostile/poison/bees,
+/mob/living/simple_animal/hostile/poison/bees,
+/mob/living/simple_animal/hostile/poison/bees,
+/mob/living/simple_animal/hostile/poison/bees,
+/mob/living/simple_animal/hostile/poison/bees,
+/mob/living/simple_animal/hostile/poison/bees,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"an" = (
+/mob/living/simple_animal/hostile/poison/bees,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"ao" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"ap" = (
+/mob/living/simple_animal/hostile/asteroid/goldgrub{
+ will_burrow = 0
+ },
+/turf/open/floor/plating/asteroid,
+/area/ruin/unpowered)
+"aq" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"ar" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/plating/asteroid,
+/area/ruin/unpowered)
+"as" = (
+/mob/living/simple_animal/hostile/asteroid/basilisk,
+/turf/open/floor/plating/asteroid,
+/area/ruin/unpowered)
+"at" = (
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered)
+"au" = (
+/obj/structure/flora/ausbushes/leafybush,
+/mob/living/simple_animal/hostile/poison/bees,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"av" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"aw" = (
+/obj/structure/flora/rock,
+/obj/machinery/light,
+/turf/open/floor/plating/asteroid,
+/area/ruin/unpowered)
+"ax" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/clothing/mask/surgical,
+/obj/item/weapon/razor,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"ay" = (
+/turf/open/floor/plasteel/darkgreen,
+/area/ruin/unpowered)
+"az" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/box/beakers,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aA" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"aB" = (
+/obj/machinery/light,
+/mob/living/simple_animal/hostile/poison/bees,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"aC" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/open/floor/grass,
+/area/ruin/unpowered)
+"aD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/highsecurity{
+ name = "Bio Containment";
+ req_one_access_txt = "47"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aE" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"aF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered)
+"aG" = (
+/obj/structure/table/reinforced,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/item/weapon/gun/energy/floragun,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/ruin/unpowered)
+"aI" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aJ" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"aK" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"aL" = (
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered)
+"aN" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aO" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/ruin/unpowered)
+"aP" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/bottle/liver_enhance_virion,
+/obj/item/weapon/reagent_containers/dropper,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"aR" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aS" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ environ = 0;
+ equipment = 0;
+ lighting = 0;
+ locked = 0;
+ name = "Worn-out APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/rack,
+/obj/item/weapon/melee/baton/cattleprod,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/space/hardsuit/medical,
+/obj/item/weapon/tank/internals/emergency_oxygen/double,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aU" = (
+/obj/structure/rack,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/shield/riot,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aV" = (
+/obj/machinery/smartfridge/chemistry,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aW" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/gun/syringe,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aX" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/grenade/chem_grenade/antiweed{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/weapon/grenade/chem_grenade/antiweed{
+ pixel_x = 4
+ },
+/obj/item/weapon/grenade/chem_grenade/antiweed{
+ pixel_x = -3;
+ pixel_y = -1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aY" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/gun/energy/temperature{
+ pin = /obj/item/device/firing_pin
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"aZ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/shovel,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"ba" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bb" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Bio-Research Station"
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/ruin/unpowered)
+"bc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/ruin/unpowered)
+"bd" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/ruin/unpowered)
+"be" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bf" = (
+/obj/machinery/power/smes/magical{
+ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
+ name = "power storage unit"
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bg" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bh" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bi" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/hypospray/medipen/stimpack,
+/obj/item/weapon/reagent_containers/glass/bottle/mutagen,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bj" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/hemostat,
+/obj/item/weapon/scalpel,
+/obj/item/weapon/surgical_drapes,
+/obj/item/weapon/retractor,
+/obj/item/weapon/cautery,
+/obj/item/weapon/circular_saw,
+/obj/machinery/light,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bk" = (
+/obj/structure/table/optable,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bl" = (
+/obj/machinery/computer/operating,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bm" = (
+/obj/structure/closet/wardrobe/science_white,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bn" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/snacks/carrotfries,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bo" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"bp" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/green,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bq" = (
+/obj/item/stack/cable_coil/cut,
+/obj/item/stack/tile/plasteel{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/weapon/wirecutters,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"br" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/shieldwallgen,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"bt" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/shieldwallgen,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bu" = (
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"bv" = (
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"bw" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/carp,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"bx" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"by" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered)
+"bz" = (
+/obj/machinery/space_heater,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/juicer,
+/turf/open/floor/plasteel{
+ icon_state = "dark"
+ },
+/area/ruin/unpowered)
+"bB" = (
+/obj/structure/alien/weeds,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bC" = (
+/obj/structure/alien/weeds/node,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bD" = (
+/obj/item/clothing/mask/facehugger{
+ icon_state = "facehugger_dead";
+ stat = 2
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bE" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"bF" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered)
+"bG" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plasteel/darkgreen,
+/area/ruin/unpowered)
+"bH" = (
+/obj/structure/alien/resin/wall,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bI" = (
+/obj/structure/flora/ausbushes/reedbush,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"bJ" = (
+/mob/living/simple_animal/crab{
+ faction = list("carp")
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"bK" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/airless,
+/area/space)
+"bL" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/ruin/unpowered)
+"bM" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkgreen,
+/area/ruin/unpowered)
+"bN" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/obj/item/weapon/shard{
+ icon_state = "small"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bO" = (
+/obj/item/weapon/shard,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bP" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bQ" = (
+/obj/machinery/shieldwallgen{
+ active = 2;
+ anchored = 1;
+ power = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bR" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/turf/open/floor/plating/airless,
+/area/space)
+"bS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable,
+/obj/machinery/shieldwallgen,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bT" = (
+/obj/structure/grille,
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bU" = (
+/obj/structure/grille{
+ density = 0;
+ icon_state = "brokengrille"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"bV" = (
+/obj/machinery/shieldwallgen,
+/turf/open/space,
+/area/space)
+"bW" = (
+/obj/item/weapon/shard,
+/turf/open/space,
+/area/space)
+"bX" = (
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-abacacacacadaaaaaaaaaaaaaeacacacacafaaaa
-agahahaiajakaaaaaaaaaaaaakalamanaoakaaaa
-agaiapahaiakaaaaaaaaaaaaakanamaqanakaaaa
-agaraiaiasakatagagagagatakanaoauavakaaaa
-agahaiawarakataxayayazatakaAaBamaCakaaaa
-abacaDacacaEaFaGaHaHaIaFaJacacaDacafaaaa
-aaaKaLatataMataNaOayaPatatatataLaQaaaaaa
-aaaKaRataSaTaUaVayayaWaXaYaZatbaaQaaaaaa
-aaaKaLbbaybcayayayayayayayaybbaLaQaaaaaa
-aaaKaLbbaybdayayayayayayayaybbaLaQaaaaaa
-aaaKaRatbebfbgbhayaybibjbkblatbaaQaaaaaa
-aaaKaLatataMatbmayaybnatatatataLaQaaaaaa
-abacaDacacboaFbpaHbqbraFbsacacaDacbtaaaa
-agbubvbwbxakbybzayaybAatakbBbCbDbBagaaaa
-agbvbvbvbEakbFatbGbGatatakbBbHbBbBagaaaa
-agbIbJbvbvakbKatbLbMataaakbDbHbvbvbNaaaa
-agbvbvbvbvakbKatbGbGataaakbHbvbObvbPaaaa
-abacacacacbQbRaaaaaaaaaabSacbTbUbPaabVaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaabWaaaaaaaa
+aa
+ab
+ag
+ag
+ag
+ag
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ag
+ag
+ag
+ag
+ab
+aa
+"}
+(2,1,1) = {"
+aa
+ac
+ah
+ai
+ar
+ah
+ac
+aK
+aK
+aK
+aK
+aK
+aK
+ac
+bu
+bv
+bI
+bv
+ac
+aa
+"}
+(3,1,1) = {"
+aa
+ac
+ah
+ap
+ai
+ai
+aD
+aL
+aR
+aL
+aL
+aR
+aL
+aD
+bv
+bv
+bJ
+bv
+ac
+aa
+"}
+(4,1,1) = {"
+aa
+ac
+ai
+ah
+ai
+aw
+ac
+at
+at
+bb
+bb
+at
+at
+ac
+bw
+bv
+bv
+bv
+ac
+aa
+"}
+(5,1,1) = {"
+aa
+ac
+aj
+ai
+as
+ar
+ac
+at
+aS
+ay
+ay
+be
+at
+ac
+bx
+bE
+bv
+bv
+ac
+aa
+"}
+(6,1,1) = {"
+aa
+ad
+ak
+ak
+ak
+ak
+aE
+aM
+aT
+bc
+bd
+bf
+aM
+bo
+ak
+ak
+ak
+ak
+bQ
+aa
+"}
+(7,1,1) = {"
+aa
+aa
+aa
+aa
+at
+at
+aF
+at
+aU
+ay
+ay
+bg
+at
+aF
+by
+bF
+bK
+bK
+bR
+aa
+"}
+(8,1,1) = {"
+aa
+aa
+aa
+aa
+ag
+ax
+aG
+aN
+aV
+ay
+ay
+bh
+bm
+bp
+bz
+at
+at
+at
+aa
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+aa
+aa
+ag
+ay
+aH
+aO
+ay
+ay
+ay
+ay
+ay
+aH
+ay
+bG
+bL
+bG
+aa
+aa
+"}
+(10,1,1) = {"
+aa
+aa
+aa
+aa
+ag
+ay
+aH
+ay
+ay
+ay
+ay
+ay
+ay
+bq
+ay
+bG
+bM
+bG
+aa
+aa
+"}
+(11,1,1) = {"
+aa
+aa
+aa
+aa
+ag
+az
+aI
+aP
+aW
+ay
+ay
+bi
+bn
+br
+bA
+at
+at
+at
+aa
+aa
+"}
+(12,1,1) = {"
+aa
+aa
+aa
+aa
+at
+at
+aF
+at
+aX
+ay
+ay
+bj
+at
+aF
+at
+at
+aa
+aa
+aa
+aa
+"}
+(13,1,1) = {"
+aa
+ae
+ak
+ak
+ak
+ak
+aJ
+at
+aY
+ay
+ay
+bk
+at
+bs
+ak
+ak
+ak
+ak
+bS
+aa
+"}
+(14,1,1) = {"
+aa
+ac
+al
+an
+an
+aA
+ac
+at
+aZ
+ay
+ay
+bl
+at
+ac
+bB
+bB
+bD
+bH
+ac
+aa
+"}
+(15,1,1) = {"
+aa
+ac
+am
+am
+ao
+aB
+ac
+at
+at
+bb
+bb
+at
+at
+ac
+bC
+bH
+bH
+bX
+bT
+aa
+"}
+(16,1,1) = {"
+aa
+ac
+an
+aq
+au
+am
+aD
+aL
+ba
+aL
+aL
+ba
+aL
+aD
+bD
+bB
+bX
+bO
+bU
+bW
+"}
+(17,1,1) = {"
+aa
+ac
+ao
+an
+av
+aC
+ac
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+ac
+bB
+bB
+bX
+bX
+bP
+aa
+"}
+(18,1,1) = {"
+aa
+af
+ak
+ak
+ak
+ak
+af
+aa
+aa
+aa
+aa
+aa
+aa
+bt
+ag
+ag
+bN
+bP
+aa
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+bV
+aa
+"}
+(20,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
"}
diff --git a/_maps/RandomRuins/SpaceRuins/asteroid1.dmm b/_maps/RandomRuins/SpaceRuins/asteroid1.dmm
index aa1bbf3334f..7bc6c92e1b9 100644
--- a/_maps/RandomRuins/SpaceRuins/asteroid1.dmm
+++ b/_maps/RandomRuins/SpaceRuins/asteroid1.dmm
@@ -1,6 +1,6 @@
"a" = (/turf/open/space,/area/space)
-"b" = (/turf/open/floor/plating/asteroid/airless,/area/space)
-"c" = (/turf/closed/mineral/random/high_chance,/area/space)
+"b" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"c" = (/turf/closed/mineral/random/high_chance,/area/ruin/unpowered/no_grav)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaaa
diff --git a/_maps/RandomRuins/SpaceRuins/asteroid2.dmm b/_maps/RandomRuins/SpaceRuins/asteroid2.dmm
index c6fafdd759a..c39e9f5896a 100644
--- a/_maps/RandomRuins/SpaceRuins/asteroid2.dmm
+++ b/_maps/RandomRuins/SpaceRuins/asteroid2.dmm
@@ -1,7 +1,7 @@
"a" = (/turf/open/space,/area/space)
-"b" = (/turf/open/floor/plating/asteroid/airless,/area/space)
-"c" = (/turf/closed/mineral,/area/space)
-"d" = (/turf/closed/mineral/random/high_chance,/area/space)
+"b" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"c" = (/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"d" = (/turf/closed/mineral/random/high_chance,/area/ruin/unpowered/no_grav)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaaa
diff --git a/_maps/RandomRuins/SpaceRuins/asteroid3.dmm b/_maps/RandomRuins/SpaceRuins/asteroid3.dmm
index 408231bc71b..982008462c5 100644
--- a/_maps/RandomRuins/SpaceRuins/asteroid3.dmm
+++ b/_maps/RandomRuins/SpaceRuins/asteroid3.dmm
@@ -1,9 +1,9 @@
"a" = (/turf/open/space,/area/space)
-"b" = (/turf/open/floor/plating/asteroid/airless,/area/space)
-"c" = (/turf/closed/mineral,/area/space)
-"d" = (/turf/closed/mineral/random/high_chance,/area/space)
-"e" = (/obj/effect/decal/remains/human,/turf/open/floor/plating/asteroid/airless,/area/space)
-"f" = (/obj/item/weapon/pickaxe/diamond,/turf/open/floor/plating/asteroid/airless,/area/space)
+"b" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"c" = (/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"d" = (/turf/closed/mineral/random/high_chance,/area/ruin/unpowered/no_grav)
+"e" = (/obj/effect/decal/remains/human,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"f" = (/obj/item/weapon/pickaxe/diamond,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaaa
diff --git a/_maps/RandomRuins/SpaceRuins/asteroid4.dmm b/_maps/RandomRuins/SpaceRuins/asteroid4.dmm
index 82ba7a65ee1..41de908cc49 100644
--- a/_maps/RandomRuins/SpaceRuins/asteroid4.dmm
+++ b/_maps/RandomRuins/SpaceRuins/asteroid4.dmm
@@ -1,38 +1,39 @@
"a" = (/turf/open/space,/area/space)
-"b" = (/turf/closed/mineral,/area/space)
-"c" = (/turf/closed/mineral/random/high_chance,/area/space)
-"d" = (/turf/open/floor/plating/asteroid/airless,/area/space)
-"e" = (/turf/closed/mineral/clown,/area/space)
-"f" = (/turf/open/floor/plating/asteroid,/area/space)
-"g" = (/obj/item/weapon/shard,/obj/item/weapon/paper{info = "Extraction was successful! The disguise was perfect, the clowns never knew what hit 'em! Once I get back to base with the bananium samples I'll be rich, I tell you! RICH!"},/turf/open/floor/plating/asteroid,/area/space)
-"h" = (/obj/item/stack/sheet/mineral/bananium{amount = 15},/turf/open/floor/plating,/area/space)
-"i" = (/turf/open/floor/plating/asteroid,/turf/closed/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/space)
-"j" = (/turf/closed/wall/shuttle{icon_state = "swall3"; dir = 2},/area/space)
-"k" = (/obj/structure/chair{dir = 1},/obj/item/weapon/shard,/obj/effect/mob_spawn/human/clown{brute_damage = 120; oxy_damage = 75},/turf/open/floor/plasteel/shuttle,/area/space)
-"l" = (/obj/structure/chair{dir = 1},/obj/item/weapon/storage/pod{pixel_x = -26},/turf/open/floor/plasteel/shuttle,/area/space)
-"m" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/space)
-"n" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/turf/open/floor/plasteel/shuttle,/area/space)
-"o" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/space)
+"b" = (/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"c" = (/turf/closed/mineral/random/high_chance,/area/ruin/unpowered/no_grav)
+"d" = (/turf/closed/mineral,/area/ruin/unpowered)
+"e" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"f" = (/turf/closed/mineral/random/high_chance,/area/ruin/unpowered)
+"g" = (/turf/closed/mineral/clown,/area/ruin/unpowered)
+"h" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered)
+"i" = (/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
+"j" = (/turf/open/floor/plating/asteroid,/turf/closed/wall/mineral/titanium,/area/ruin/unpowered)
+"k" = (/turf/open/floor/plating,/obj/item/stack/sheet/mineral/bananium{amount = 15},/turf/closed/wall/mineral/titanium,/area/ruin/unpowered)
+"l" = (/turf/closed/wall/mineral/titanium,/area/ruin/unpowered)
+"m" = (/obj/structure/chair{dir = 1},/obj/item/weapon/shard,/obj/effect/mob_spawn/human/clown{brute_damage = 120; oxy_damage = 75},/obj/item/weapon/paper{info = "Extraction was successful! The disguise was perfect, the clowns never knew what hit 'em! Once I get back to base with the bananium samples I'll be rich, I tell you! RICH!"},/obj/item/stack/sheet/mineral/bananium{amount = 15},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"n" = (/obj/structure/chair{dir = 1},/obj/item/weapon/storage/pod{pixel_x = -26},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"o" = (/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/mineral/titanium/overspace,/area/ruin/unpowered)
+"p" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaa
aabbbaaaaaaaaaaaaaaa
acccbbbbaaaaaaaaaaaa
-acccbbcbbbaaaaaabaaa
-abbbbbbbbbbaaaabbaaa
-abddbbbbbbcaaaabbbaa
-aadddbbbbbcaaaabbaaa
-aaadddddbaaaaabbbaaa
-aaaaadddbaaaaabbaaaa
-aaaaaaaaaaaaaabbaaaa
-aaaaaaaaaaaaccbbaaaa
-aaabaaaaaabbccbaaaaa
-aaabaaaaabbbebbaaaaa
-aabbbaaadbbeefbcaaaa
-aabbbaaaddbghibcaaaa
-abbbbaaaddbjkjbbaaaa
-abbaaaaaaabjljbaaaaa
-aaaaabaaaaamnoaaaaaa
+acccbbcbbbaaaaaadaaa
+abbbbbbbbbbaaaaddaaa
+abeebbbbbbcaaaadddaa
+aaeeebbbbbcaaaaddaaa
+aaaeeeeebaaaaadddaaa
+aaaaaeeebaaaaaddaaaa
+aaaaaaaaaaaaaaddaaaa
+aaaaaaaaaaaaffddaaaa
+aaabaaaaaaddffdaaaaa
+aaabaaaaadddgddaaaaa
+aabbbaaahddggidfaaaa
+aabbbaaahhdjkjdfaaaa
+abbbbaaahhdlmlddaaaa
+abbaaaaaaadlnldaaaaa
+aaaaabaaaaaopoaaaaaa
aaabaaaaaaaaaaaaaaaa
"}
diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
new file mode 100644
index 00000000000..d150e59155e
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm
@@ -0,0 +1,289 @@
+"aa" = (/turf/open/space,/area/space)
+"ab" = (/turf/closed/wall,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ac" = (/obj/machinery/door/poddoor{id = "bigderelictshipdock"},/turf/open/floor/plating/airless,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ad" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"ae" = (/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"af" = (/obj/structure/sign/vacuum{pixel_y = 32},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ag" = (/obj/machinery/door/poddoor{id = "bigderelictshipdock"},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ah" = (/obj/structure/sign/vacuum{pixel_y = 32},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ai" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"aj" = (/obj/machinery/button/door{name = "tradepost entry doors"; pixel_y = 24},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ak" = (/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"al" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"am" = (/turf/open/floor/engine,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"an" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ao" = (/obj/machinery/power/apc{cell_type = 0; dir = 4; name = "Cargo Bay APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ap" = (/obj/structure/table,/obj/machinery/light{dir = 8},/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"aq" = (/turf/open/floor/engine,/turf/closed/wall/mineral/titanium/interior,/area/ruin/powered{name = "Derelict Docked Ship"})
+"ar" = (/obj/structure/shuttle/engine/propulsion/burst/right{dir = 1; icon_state = "burst_r"; name = "shuttle engine"; tag = "icon-burst_r (NORTH)"},/turf/open/floor/plating,/area/ruin/powered{name = "Derelict Docked Ship"})
+"as" = (/obj/structure/shuttle/engine/propulsion/burst/left{dir = 1; icon_state = "burst_l"; name = "shuttle engine"; tag = "icon-burst_l (NORTH)"},/turf/open/floor/plating,/area/ruin/powered{name = "Derelict Docked Ship"})
+"at" = (/turf/closed/wall/mineral/titanium,/area/ruin/powered{name = "Derelict Docked Ship"})
+"au" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"av" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"aw" = (/obj/structure/table,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ax" = (/obj/structure/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"ay" = (/obj/structure/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/obj/structure/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/structure/shuttle/engine/heater{tag = "icon-heater (NORTH)"; icon_state = "heater"; dir = 1},/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"az" = (/obj/structure/table,/obj/item/clothing/head/soft,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"aA" = (/turf/closed/wall,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"aB" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"aC" = (/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"aD" = (/obj/machinery/door/poddoor{id = "bigderelictship"},/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aE" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/o2,/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aF" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aG" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/brute,/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aH" = (/obj/structure/closet/crate/engineering,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aI" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/stock_parts/cell/hyper,/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aJ" = (/obj/structure/table,/obj/item/clothing/gloves/fingerless,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"aK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"aL" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"aM" = (/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"aN" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"aO" = (/obj/structure/closet/crate/secure/loot,/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aP" = (/obj/structure/closet/crate/internals,/obj/item/weapon/storage/toolbox/emergency,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath,/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aQ" = (/obj/structure/closet/crate/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger_counter,/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aR" = (/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"aS" = (/turf/closed/wall/r_wall,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"aT" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"aU" = (/obj/structure/closet/crate/critter{name = "critter crate - mr.tiggles"; opened = 1},/obj/item/weapon/paper/crumpled/snowdin{info = "A crumpled piece of manifest paper, out of the barely legible pen writing, you can see something about a warning involving whatever was originally in the crate."},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aV" = (/obj/structure/closet/crate/engineering,/obj/item/weapon/storage/toolbox/mechanical,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aW" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/stock_parts/cell/hyper,/turf/open/floor/mineral/titanium/yellow,/area/ruin/powered{name = "Derelict Docked Ship"})
+"aX" = (/obj/structure/closet/crate,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"aY" = (/obj/structure/lattice,/turf/open/space,/area/space)
+"aZ" = (/turf/closed/wall,/area/ruin/unpowered{name = "Derelict Outpost"})
+"ba" = (/obj/item/clothing/head/helmet,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"bb" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"bc" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/hyper,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"bd" = (/obj/machinery/power/smes,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"be" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/shuttle,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bf" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/mineral/titanium/blue,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bg" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/glowshroom/single,/turf/open/floor/plasteel/shuttle,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bh" = (/obj/machinery/button/door{id = "bigderelictship"; name = "shuttle cargo doors"; pixel_x = 24},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/shuttle,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bi" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bj" = (/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bk" = (/obj/structure/sign/vacuum{pixel_y = 32},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bl" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bm" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHWEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 9},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bn" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bo" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/glowshroom/single,/obj/structure/sign/vacuum{pixel_y = 32},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bp" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 5},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bq" = (/obj/effect/mob_spawn/human/corpse/nanotrasensoldier{helmet = null; id_job = "Tradepost Officer"; name = "Tradeport Officer"; random = 1},/obj/item/weapon/paper/crumpled/snowdin{icon_state = "scrap_bloodied"; info = "If anyone finds this, please, don't let my kids know I died a coward.."},/obj/effect/decal/cleanable/blood/old{name = "dried blood splatter"; pixel_x = -29},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"br" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"bs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"bt" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/mineral/titanium/blue,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bu" = (/turf/open/floor/mineral/titanium/blue,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bv" = (/obj/item/chair,/obj/effect/decal/cleanable/blood/old,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/shuttle,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bw" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 5},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/shuttle,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bx" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"by" = (/obj/machinery/door/airlock/glass_security{id_tag = "innerbrig"; name = "Security Checkpoint"; req_access_txt = "63"},/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bz" = (/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bA" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bB" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bC" = (/turf/closed/wall/r_wall,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bD" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bE" = (/obj/effect/decal/cleanable/blood/old{icon_state = "trails_1"; name = "dried blood trail"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bF" = (/obj/structure/alien/resin/wall{color = "#8EC127"; desc = "Thick material shaped into a wall. Eugh."; icon_state = "smooth"; name = "gelatinous wall"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bG" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTH)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 1},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bH" = (/obj/item/ammo_casing/c45{caliber = null; desc = "A .45 bullet casing. This one is spent."; icon_state = "s-casing"; name = "spent bullet casing"},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"bI" = (/obj/item/weapon/gun/projectile/automatic/pistol/m1911{spawnwithmagazine = 0},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"bJ" = (/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"bK" = (/obj/structure/table,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"bL" = (/obj/structure/table,/turf/open/floor/mineral/titanium/blue,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bM" = (/obj/machinery/computer,/turf/open/floor/mineral/titanium/blue,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bN" = (/obj/structure/table_frame,/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/blood/old{icon_state = "trails_1"; name = "dried blood trail"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/shuttle,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bO" = (/obj/item/weapon/shard,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/shuttle,/area/ruin/powered{name = "Derelict Docked Ship"})
+"bP" = (/obj/effect/gibspawner/human,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"bQ" = (/obj/structure/filingcabinet,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bR" = (/obj/item/weapon/shard,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bS" = (/obj/item/chair,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bT" = (/obj/effect/decal/cleanable/blood/old,/obj/machinery/button/door{id = "bigderelictcheckpoint"; name = "security checkpoint control"; pixel_y = -24},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bU" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/turf/open/floor/plating{icon_plating = "wall_thermite"; icon_state = "wall_thermite"; name = "melted wall"},/area/ruin/unpowered{name = "Derelict Outpost"})
+"bV" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bW" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 6},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bX" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTH)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"bY" = (/obj/item/device/gps{gpstag = "Distress Signal"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"bZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"ca" = (/obj/machinery/power/apc{cell_type = 0; dir = 4; name = "Power Storage APC"; pixel_x = 23; pixel_y = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"cb" = (/obj/structure/closet/wardrobe/cargotech,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cc" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/ruin/powered{name = "Derelict Docked Ship"})
+"cd" = (/obj/structure/grille/broken,/obj/item/weapon/shard,/obj/effect/decal/cleanable/blood/old{icon_state = "trails_1"; name = "dried blood trail"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating,/area/ruin/powered{name = "Derelict Docked Ship"})
+"ce" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cf" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cg" = (/obj/item/weapon/shard,/obj/item/stack/cable_coil{amount = 2; icon_state = "coil_red2"; item_state = "coil_red"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/table_frame,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/plasteel,/turf/open/floor/plasteel/darkred,/area/ruin/unpowered{name = "Derelict Outpost"})
+"ch" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"ci" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/glowshroom/single,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cj" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"ck" = (/obj/machinery/power/apc{cell_type = 0; dir = 2; name = "Tradepost APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cl" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/glowshroom/single,/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTH)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 1},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cm" = (/obj/structure/alien/resin/wall{color = "#8EC127"; desc = "Thick material shaped into a wall. Eugh."; icon_state = "smooth"; name = "gelatinous wall"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cn" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"co" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"cp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"cq" = (/obj/structure/barricade/wooden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"cr" = (/obj/machinery/door/airlock/engineering{name = "Power Storage"; req_access_txt = "10"},/obj/structure/barricade/wooden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Power Storage"})
+"cs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ct" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cu" = (/obj/effect/decal/cleanable/blood/old{icon_state = "trails_1"; name = "dried blood trail"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cv" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cw" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cx" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cy" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/poddoor{id = "bigderelictcheckpoint"; name = "checkpoint security doors"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cA" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cB" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cC" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/mob/living/simple_animal/hostile/creature{desc = "Awh its so sm-OH GOD WHAT THE FUCK."; health = 25; maxHealth = 25; name = "hatchling"; resize = 0.85},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cD" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHWEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 10},/mob/living/simple_animal/hostile/creature{desc = "Awh its so sm-OH GOD WHAT THE FUCK."; health = 25; maxHealth = 25; name = "hatchling"; resize = 0.85},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cE" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cF" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 5},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cG" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cH" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/janitorialcart,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cJ" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/item/weapon/mop,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cK" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHWEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 10},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cL" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 5},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cM" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/glowshroom/single,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cN" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cO" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cP" = (/obj/item/weapon/shard,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cQ" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cR" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cS" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTH)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 1},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cT" = (/obj/item/ammo_casing/c45{caliber = null; desc = "A .45 bullet casing. This one is spent."; icon_state = "s-casing"; name = "spent bullet casing"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cU" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cV" = (/obj/effect/decal/cleanable/xenoblood/xsplatter,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cW" = (/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cX" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTH)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 1},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"cY" = (/obj/structure/grille/broken,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"cZ" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTH)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 1},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"da" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/glowshroom/single,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"db" = (/obj/item/ammo_casing/c45{caliber = null; desc = "A .45 bullet casing. This one is spent."; icon_state = "s-casing"; name = "spent bullet casing"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"dc" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/machinery/light,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"dd" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHWEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 10},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"de" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"df" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/machinery/light,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"dg" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"dh" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/door_assembly/door_assembly_mai{density = 0; desc = "A pried-open airlock. Scratch marks mark the sidings of the door."; name = "pried-open airlock"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"di" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dj" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/item/weapon/shard,/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dk" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dl" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/mob/living/simple_animal/hostile/creature{name = "Miss Tiggles"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dm" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old,/obj/structure/alien/gelpod,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dn" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (WEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 8},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"do" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 6},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dp" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"dq" = (/obj/effect/decal/cleanable/xenoblood/xsplatter,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"dr" = (/obj/effect/decal/cleanable/blood/old{icon_state = "trails_1"; name = "dried blood trail"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"ds" = (/turf/closed/mineral,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dt" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/glowshroom/single,/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"du" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/item/weapon/gun/projectile/automatic/pistol/m1911{spawnwithmagazine = 0},/obj/item/ammo_box/magazine/m45,/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dv" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHWEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 9},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dw" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dx" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dy" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/glowshroom/single,/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dz" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dA" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dB" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 6},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dC" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{icon_state = "trails_1"; name = "dried blood trail"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dD" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dE" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dF" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHWEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 10},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dG" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (WEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 8},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dH" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 6},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dI" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dJ" = (/obj/item/weapon/gun/projectile/automatic/pistol/m1911{spawnwithmagazine = 0},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"dK" = (/obj/item/ammo_casing/c45{caliber = null; desc = "A .45 bullet casing. This one is spent."; icon_state = "s-casing"; name = "spent bullet casing"},/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 5},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"dL" = (/turf/closed/wall,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"dM" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHWEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dN" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (WEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 8},/turf/open/floor/plating{icon_plating = "wall_thermite"; icon_state = "wall_thermite"; name = "melted wall"},/area/ruin/unpowered{name = "Derelict Outpost"})
+"dO" = (/obj/structure/alien/resin/membrane{color = "#4BAE56"; desc = "A strange combination of thin, gelatinous material."; icon_state = "smooth"; name = "gelatinous membrane"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (WEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 8},/turf/open/floor/plating{icon_plating = "wall_thermite"; icon_state = "wall_thermite"; name = "melted wall"},/area/ruin/unpowered{name = "Derelict Outpost"})
+"dP" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/glowshroom/single,/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (WEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 8},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dQ" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 6},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dR" = (/obj/structure/alien/resin/membrane{color = "#4BAE56"; desc = "A strange combination of thin, gelatinous material."; icon_state = "smooth"; name = "gelatinous membrane"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"dS" = (/obj/item/ammo_box/magazine/m45,/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/effect/decal/cleanable/blood/old{icon_state = "trails_1"; name = "dried blood trail"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"dT" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"dU" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"dV" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"dW" = (/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"dX" = (/obj/structure/closet/crate/secure/loot,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"dY" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/plasteel/twenty,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"dZ" = (/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ea" = (/obj/structure/closet/crate,/obj/item/weapon/storage/pill_bottle/stimulant,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eb" = (/obj/structure/closet/crate,/obj/item/target/syndicate,/obj/item/target/clown,/obj/item/target/clown,/obj/item/target/alien,/obj/item/target,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ec" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ed" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/o2,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ee" = (/obj/effect/decal/cleanable/blood/old{icon_state = "trails_1"; name = "dried blood trail"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"ef" = (/obj/structure/alien/resin/membrane{color = "#4BAE56"; desc = "A strange combination of thin, gelatinous material."; icon_state = "smooth"; name = "gelatinous membrane"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered{name = "Derelict Outpost"})
+"eg" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/mob/living/simple_animal/hostile/creature{desc = "Awh its so sm-OH GOD WHAT THE FUCK."; health = 25; maxHealth = 25; name = "hatchling"; resize = 0.85},/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"eh" = (/obj/effect/decal/cleanable/blood/old{icon_state = "trails_1"; name = "dried blood trail"},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+"ei" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ej" = (/obj/structure/closet/crate,/obj/item/stack/sheet/cloth/ten,/obj/item/stack/sheet/cloth/ten,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ek" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/cardboard/fifty,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"el" = (/obj/machinery/power/apc{cell_type = 0; dir = 4; name = "Cargo Storage APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"em" = (/turf/closed/wall,/area/ruin/unpowered/no_grav)
+"en" = (/obj/structure/alien/resin/wall{color = "#8EC127"; desc = "Thick material shaped into a wall. Eugh."; icon_state = "smooth"; name = "gelatinous wall"},/turf/open/floor/plating/asteroid,/area/ruin/unpowered/no_grav)
+"eo" = (/obj/structure/closet/crate/internals,/obj/item/weapon/storage/toolbox/emergency,/obj/item/clothing/mask/breath,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ep" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/weapon/storage/toolbox/electrical,/obj/item/stack/cable_coil,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eq" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/crowbar,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"er" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"es" = (/obj/structure/closet/crate/engineering,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"et" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/fire,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ev" = (/obj/structure/alien/weeds{color = "#4BAE56"; desc = "A thick gelatinous surface covers the floor. Someone get the golashes."; name = "gelatinous floor"},/obj/structure/alien/gelpod,/turf/open/floor/plating/asteroid,/area/ruin/unpowered{name = "Derelict Outpost"})
+"ew" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (WEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ex" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (WEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 8},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ey" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (WEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 8},/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"ez" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (NORTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eA" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eB" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/device/paicard,/obj/machinery/light,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eC" = (/obj/structure/closet/crate,/obj/item/device/pda/clear,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eD" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eE" = (/obj/structure/closet/crate/internals,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/storage/firstaid/toxin,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eF" = (/obj/structure/closet/crate,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eG" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eH" = (/obj/structure/closet/crate/engineering,/obj/item/device/multitool,/turf/open/floor/plasteel/delivery,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eI" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHWEST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 10},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eJ" = (/obj/structure/door_assembly/door_assembly_mai{density = 0; desc = "A pried-open airlock. Scratch marks mark the sidings of the door."; name = "pried-open airlock"},/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (EAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Cargo Storage"})
+"eK" = (/obj/effect/decal/cleanable/blood/old{tag = "icon-trails_1 (SOUTHEAST)"; name = "dried blood trail"; icon_state = "trails_1"; dir = 6},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Outpost"})
+"eL" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/ruin/unpowered{name = "Derelict Cargo Bay"})
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaabacacacacacacacacacabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaadabababaeaeaeaeaeaeaeaeaeabababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaadabafabagagagagagagagagagabahabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaadadabaiajaeaeaeaeaeaeaeaeaeajakabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaadadabalakaeamamamamamamamaeanaoabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaadadabapakaeaqarasatarasaqaeauavabadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaadadabawakaeataxayataxayataeauazabadadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaAaBaAaCaCabawakaeaDaEaFaGaHaIaDaeauaJabadadaaaaaaaaaaaKaLaKadadadaKaLaKaaaaaa
+aaaAaMaAaCaCabaNakaeaDaOaPaQaHaIaDaeauaNabadaaaaaaaaaaadaKaRaKadadadaKaRaKadadaa
+aaaAaBaAaAaAaSaTakaeaDaOaPaUaVaWaDaeauaXabadaYaYaYaYaYaZaZaLaZaZaZaZaZaLaZaZadad
+aaaAbabbbcbdaSaJakaeatbebfbebgbhataeauavabaZaKaKaKaKaZaZbibjbkblbmbnbobnbpaZaCad
+aaaAbqbrbsbraSazakaebtbubebvbwbebtaeaubxbxbybzbzbAbBbCbDbjblblblbEbFbFbFbGaZaCad
+aaaAbHbIbsbJaSbKakaeatbebLbMbNbOataeaubPbxbCbQbRbSbTbUbnbnbnbnbVbWaZblblbXaZaCaC
+aaaAbJbYbZcaaScbakaeaqatcccccdataqaecebxakbCbCcfcgbCbCchbjcicjckbjbFbFbFclaZcmcm
+aaaAcncocpcqcrcsctaeaeaeaeaecucvaecvcwcxcscyczczcAczcycAczcAcBaZbFbFcCbFcDcEcFcm
+aaaAaAaSaSaSaScGcHcscIcJcxcxcKcLcMcxcNakakbCcOcPblcQbCbFbFbFbFbFbFblblbFcRcRcScm
+aaadadabcTcTcUakcVbxbxbxaXcWcWcXbxbxceakabaZaZaKcYaKaZblciblblbFciblbFbFcmcmcZcm
+adadaCabakbxdadbdcbxcVakcWaNcWdddededfdgdhdiaZcRdjcRaZdkblbldlbFbldkbFcidmdndocm
+adaCaCabdpdqabababababababababababababababdraZdsdtcRaZbldmbFbFbFbFcCbFbFcmducRcm
+adadaCabcTbxabdvdwdxdydzdsdsdvdxdAdAdAdxbUdBaZcRcRdsaZbldCbFblcCbFblblbldDcRcmcm
+adaCaCabbxbxabdmdEcmdsdFdGdGdHdsdscmcRcRaZdIaZcRcRdsaZbldCbFciblbFbFbFbFcmdtcmaa
+aaadaCabdJdKdLdLdLdLdLdLdLdLdLdLdLdLdLdLdLdMdNdndndndOdPdQbFblcCblbldkblcmcRdRad
+aaadaCabbxdSdLdTdUdVdWdXdXdYdZeadWebeceddLeeaZefefefaZcRegcRcRdDcRblcRcmcmcRdRad
+aaadaCabbxeheidWdWejdWdWdWdWdWekdWdWdWeldLeeemaCaCadencRcRcRdDcmcmcmcmcmcRcRdRaa
+aaadadabdpeheidWdWeodWdWepeqdWerdWeseteudLeeemaCaCadencRcRevblcmcRdtcRegblevcmaa
+aaadadabakddewexexexexexeyexexexexexeyezdLeeemaCaCadencmcRdDcRcmcRcmcmdRdRcmcmaa
+aaadadabakakdLeAeBeCdWeDeEdWdXdXeFeGeHeIeJeKemaCaCadadcmcmcRegcmcRcmaaaaaaaaaaaa
+aaadadabeLabdLdLdLdLdLdLdLdLdLdLdLdLdLdLdLaRemadadadadaacmcRcRcRcRcmaaaaaaaaaaaa
+aaadadaZaRaRaRaRaRaRaRaRaRaRaRaRaRaRaRaRaRaRemadadaaaaaacmcmdRdRcmcmaaaaaaaaaaaa
+aaaaadaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZemadadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaadadadadadadadadaCaCaCaCaCaCaCaCaCaCaCaCadadadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaadadaaaaadadadadadaCaCaCaCaCaCaCadadadadadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaadadadadadadadadadadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadadadadadadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/bus.dmm b/_maps/RandomRuins/SpaceRuins/bus.dmm
new file mode 100644
index 00000000000..b33fa9b2433
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/bus.dmm
@@ -0,0 +1,75 @@
+"aa" = (/turf/open/space,/area/space)
+"ab" = (/turf/closed/mineral/ash_rock,/area/ruin/unpowered/no_grav)
+"ac" = (/obj/item/trash/sosjerky,/turf/open/space,/area/space)
+"ad" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"ae" = (/mob/living/simple_animal/hostile/lizard,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"af" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"ag" = (/obj/item/stack/rods{amount = 50},/obj/item/weapon/stock_parts/manipulator/femto,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"ah" = (/obj/item/stack/cable_coil{amount = 5},/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"ai" = (/obj/item/weapon/book/random,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aj" = (/obj/structure/fluff/bus/dense,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"ak" = (/obj/structure/fluff/bus/passable{tag = "icon-wheredahoodat"; icon_state = "wheredahoodat"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"al" = (/obj/effect/decal/cleanable/salt,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"am" = (/obj/structure/fluff/bus/passable/seat{tag = "icon-backseat"; icon_state = "backseat"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"an" = (/obj/structure/fluff/bus/passable/seat{tag = "icon-backseat"; icon_state = "backseat"},/obj/item/weapon/reagent_containers/food/snacks/faggot,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"ao" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"ap" = (/obj/structure/fluff/bus/passable/seat{icon_state = "backseat"; pixel_y = 15; tag = "icon-backseat"},/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aq" = (/obj/structure/fluff/bus/passable/seat{tag = "icon-backseat"; icon_state = "backseat"},/obj/item/weapon/reagent_containers/food/snacks/faggot,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"ar" = (/obj/structure/fluff/bus/passable/seat{tag = "icon-backseat"; icon_state = "backseat"},/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"as" = (/obj/structure/fluff/bus/passable/seat/driver{icon_state = "driverseat"; pixel_y = 17; tag = "icon-driverseat"},/obj/item/weapon/reagent_containers/food/snacks/grown/cherry_bomb,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"at" = (/obj/structure/fluff/bus/dense{tag = "icon-hoodtop"; icon_state = "hoodtop"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"au" = (/obj/item/clothing/head/cone,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"av" = (/obj/structure/table,/obj/item/device/paicard,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aw" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"ax" = (/obj/structure/fluff/bus/passable,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"ay" = (/obj/structure/fluff/bus/passable,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"az" = (/obj/structure/fluff/bus/passable,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aA" = (/obj/structure/fluff/bus/passable,/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/faggot,/obj/item/weapon/reagent_containers/food/snacks/faggot,/obj/item/weapon/reagent_containers/food/snacks/faggot,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aB" = (/obj/structure/fluff/bus/passable,/obj/effect/mine/sound/bwoink,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aC" = (/obj/structure/fluff/bus/passable,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aD" = (/obj/structure/fluff/bus/passable,/obj/item/weapon/reagent_containers/food/snacks/faggot,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aE" = (/obj/structure/fluff/bus/passable{tag = "icon-topdoor"; icon_state = "topdoor"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aF" = (/obj/structure/fluff/bus/dense{tag = "icon-hoodbottom"; icon_state = "hoodbottom"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aG" = (/obj/structure/fluff/bus/passable/seat{tag = "icon-backseat"; icon_state = "backseat"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aH" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/coffee,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aI" = (/obj/structure/fluff/bus/dense{tag = "icon-frontwallbottomrear"; icon_state = "frontwallbottomrear"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aJ" = (/obj/structure/fluff/bus/dense{tag = "icon-frontwallbottom"; icon_state = "frontwallbottom"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aK" = (/obj/structure/fluff/bus/dense{tag = "icon-reartire"; icon_state = "reartire"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aL" = (/obj/structure/fluff/bus/dense{tag = "icon-frontwallbottom"; icon_state = "frontwallbottom"},/obj/effect/decal/cleanable/oil,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aM" = (/obj/structure/fluff/bus/passable{icon_state = "bottomdoor"; layer = 3; tag = "icon-bottomdoor"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aN" = (/obj/structure/fluff/bus/dense{tag = "icon-fronttire"; icon_state = "fronttire"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aO" = (/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aP" = (/obj/item/weapon/reagent_containers/food/snacks/faggot,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aQ" = (/obj/item/weapon/reagent_containers/glass/rag,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aR" = (/obj/item/weapon/storage/toolbox/mechanical,/obj/effect/decal/cleanable/oil,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aS" = (/obj/item/clothing/head/helmet/space,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aT" = (/obj/effect/decal/remains/human,/obj/item/clothing/head/helmet/space,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aU" = (/obj/structure/fluff/bus/passable/seat{tag = "icon-backseat"; icon_state = "backseat"},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/reagent_containers/food/snacks/faggot,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aV" = (/obj/structure/fluff/bus/passable/seat{tag = "icon-backseat"; icon_state = "backseat"},/obj/effect/decal/remains/human,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aW" = (/obj/structure/fluff/bus/passable/seat/driver{icon_state = "driverseat"; pixel_y = 17; tag = "icon-driverseat"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"aX" = (/obj/effect/decal/cleanable/shreds,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aY" = (/obj/effect/decal/remains/human,/obj/item/clothing/suit/space,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aZ" = (/obj/structure/fluff/bus/passable,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/reagent_containers/food/snacks/faggot,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"ba" = (/obj/structure/fluff/bus/passable,/obj/item/weapon/banhammer,/turf/open/floor/plasteel/black{tag = "icon-bus"; icon_state = "bus"},/area/ruin/unpowered/no_grav)
+"bb" = (/obj/item/stack/sheet/metal{amount = 50},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaabababaaabababaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaababababababababababaaaaaaaaacaa
+aaaaaaaaaaabababababababababababababaaaaaaaaaa
+aaaaaaababababababababababababababababaaaaaaaa
+aaaaababababababababababababababababababaaaaaa
+aaabababababadadaeabababafagahababababababaaaa
+aaababababadadadadadadadadadadaiabababababaaaa
+aaabababadadajajajajajajajajajakadababababadaa
+aaadadadaladamanamaoapaqaramasatauadababadavaa
+aaadadawadadaxayazaAaBaCaxaDaEaFadadadabaGaHaa
+aaadawadadawaIaJaKaJaJaLaJaJaMaNadaOadadadadaa
+aaauadaPadadadadadaQadadadadadadauadadadadadaa
+aaaaadajajajajajakadaRadaSaOadadadadaTadadaaaa
+aaadadaUamaVaUaWataXadaYadadaPadadadadadadaaaa
+aaadadazaZbaazaEaFadadadbbadadadadadadaaaaaaaa
+aaadadaIaKaLaJaMaNadauadadadaaaaaaaaaaaaaaaaaa
+aaaaadadadadadadadadadaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaadadadadadadaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
new file mode 100644
index 00000000000..664806db2d7
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
@@ -0,0 +1,230 @@
+"aa" = (/turf/open/space,/area/space)
+"ab" = (/turf/closed/wall/mineral/plastitanium,/area/ruin/powered)
+"ac" = (/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1},/turf/open/floor/plasteel,/area/ruin/powered)
+"ad" = (/turf/closed/wall,/area/ruin/powered)
+"ae" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 1; icon_state = "diagonalWall3"},/area/ruin/powered)
+"af" = (/obj/machinery/suit_storage_unit,/turf/open/floor/plasteel,/area/ruin/powered)
+"ag" = (/turf/open/floor/plasteel,/area/ruin/powered)
+"ah" = (/turf/open/floor/plating/airless,/area/ruin/powered)
+"ai" = (/obj/machinery/door/airlock/external,/turf/open/floor/plasteel,/area/ruin/powered)
+"aj" = (/obj/structure/statue/silver/medborg,/turf/open/floor/plasteel,/area/ruin/powered)
+"ak" = (/mob/living/simple_animal/hostile/pirate/ranged{environment_smash = 0},/turf/open/floor/plasteel,/area/ruin/powered)
+"al" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/ruin/powered)
+"am" = (/obj/structure/closet{name = "pirate outfits"},/obj/item/clothing/head/collectable/pirate,/obj/item/clothing/suit/pirate,/obj/item/clothing/under/pirate,/obj/item/clothing/shoes/jackboots,/obj/item/clothing/head/bandana,/turf/open/floor/plasteel,/area/ruin/powered)
+"an" = (/obj/structure/table,/obj/item/stack/sheet/mineral/gold{amount = 25},/obj/item/weapon/coin/plasma,/turf/open/floor/plasteel,/area/ruin/powered)
+"ao" = (/obj/structure/table,/obj/item/stack/sheet/mineral/gold{amount = 25},/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/mythril,/obj/item/weapon/coin/plasma,/turf/open/floor/plasteel,/area/ruin/powered)
+"ap" = (/obj/structure/table,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/mythril,/obj/item/weapon/coin/plasma,/turf/open/floor/plasteel,/area/ruin/powered)
+"aq" = (/obj/structure/table,/mob/living/simple_animal/parrot{faction = list("pirate"); name = "Pegwing"},/turf/open/floor/plasteel,/area/ruin/powered)
+"ar" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/open/floor/plating/airless,/area/ruin/powered)
+"as" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/turf/closed/wall/mineral/plastitanium,/area/ruin/powered)
+"at" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/open/floor/plasteel,/area/ruin/powered)
+"au" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/ruin/powered)
+"av" = (/obj/structure/rack,/obj/item/weapon/storage/bag/money/vault,/turf/open/floor/plasteel,/area/ruin/powered)
+"aw" = (/obj/structure/closet/crate/secure/loot,/turf/open/floor/plasteel,/area/ruin/powered)
+"ax" = (/obj/structure/table,/turf/open/floor/plasteel,/area/ruin/powered)
+"ay" = (/obj/machinery/computer,/turf/open/floor/plasteel,/area/ruin/powered)
+"az" = (/obj/structure/table,/obj/item/weapon/storage/bag/money/vault,/turf/open/floor/plasteel,/area/ruin/powered)
+"aA" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/mineral/gold{amount = 25},/obj/item/stack/sheet/mineral/bananium{amount = 5},/obj/item/stack/sheet/mineral/silver{amount = 25},/obj/item/stack/sheet/mineral/uranium{amount = 10},/obj/item/stack/sheet/mineral/diamond{amount = 5},/turf/open/floor/plasteel,/area/ruin/powered)
+"aB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered)
+"aC" = (/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"aD" = (/obj/item/stack/rods,/turf/open/space,/area/space)
+"aE" = (/obj/structure/fluff/broken_flooring{tag = "icon-pile (EAST)"; icon_state = "pile"; dir = 4},/turf/open/space,/area/space)
+"aF" = (/mob/living/simple_animal/hostile/pirate,/turf/open/floor/plasteel,/area/ruin/powered)
+"aG" = (/obj/structure/chair{dir = 1},/mob/living/simple_animal/hostile/pirate,/turf/open/floor/plasteel,/area/ruin/powered)
+"aH" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"aI" = (/turf/closed/wall/mineral/plastitanium,/area/ruin/unpowered/no_grav)
+"aJ" = (/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1},/turf/open/floor/plating,/area/ruin/unpowered/no_grav)
+"aK" = (/turf/closed/wall/mineral/iron,/area/ruin/unpowered/no_grav)
+"aL" = (/obj/item/weapon/coin/mythril,/turf/open/floor/plasteel,/area/ruin/powered)
+"aM" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/ruin/powered)
+"aN" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"aO" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/turf/closed/wall/mineral/plastitanium,/area/ruin/unpowered/no_grav)
+"aP" = (/obj/structure/chair,/obj/item/weapon/shard,/obj/item/stack/sheet/metal,/turf/open/floor/plasteel/airless/shuttle/red,/area/ruin/unpowered/no_grav)
+"aQ" = (/obj/structure/chair,/obj/effect/decal/cleanable/shreds,/turf/open/floor/plasteel/airless/shuttle/red,/area/ruin/unpowered/no_grav)
+"aR" = (/obj/item/weapon/shard,/turf/open/floor/plasteel/airless/shuttle/red,/area/ruin/unpowered/no_grav)
+"aS" = (/turf/open/floor/plating/airless{icon_plating = "platingdmg1"; icon_state = "platingdmg1"},/area/ruin/unpowered/no_grav)
+"aT" = (/obj/structure/fluff/broken_flooring{tag = "icon-singular"; icon_state = "singular"},/turf/open/space,/area/space)
+"aU" = (/obj/structure/rack,/obj/item/weapon/tank/internals/plasma/full,/obj/item/weapon/tank/internals/plasma/full,/obj/item/weapon/tank/internals/plasma/full,/turf/open/floor/plasteel,/area/ruin/powered)
+"aV" = (/obj/structure/fluff/broken_flooring{tag = "icon-singular"; icon_state = "singular"},/obj/effect/decal/cleanable/shreds,/turf/open/floor/plasteel/airless/shuttle/red,/area/ruin/unpowered/no_grav)
+"aW" = (/obj/effect/gibspawner/human,/turf/open/floor/plasteel/airless/shuttle/red,/area/ruin/unpowered/no_grav)
+"aX" = (/turf/open/space,/turf/open/floor/plating/airless{icon = 'icons/obj/smooth_structures/lattice.dmi'; icon_plating = "lattice"; icon_state = "lattice"; name = "anchor chain"},/area/space)
+"aY" = (/obj/structure/statue/gold/cmo,/turf/open/floor/plasteel,/area/ruin/powered)
+"aZ" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/ruin/powered)
+"ba" = (/obj/structure/table,/obj/item/stack/sheet/mineral/gold{amount = 25},/turf/open/floor/plasteel,/area/ruin/powered)
+"bb" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 4; icon_state = "diagonalWall3"},/area/ruin/powered)
+"bc" = (/obj/structure/chair{dir = 1},/obj/item/stack/rods,/obj/effect/gibspawner/human,/turf/open/floor/plasteel/airless/shuttle/red,/area/ruin/unpowered/no_grav)
+"bd" = (/obj/structure/chair{dir = 1},/obj/item/weapon/shard,/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/shreds,/turf/open/floor/plasteel/airless/shuttle/red,/area/ruin/unpowered/no_grav)
+"be" = (/turf/open/floor/plasteel/airless/shuttle/red,/area/ruin/unpowered/no_grav)
+"bf" = (/obj/item/stack/sheet/metal,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"bg" = (/turf/open/floor/wood/airless,/area/ruin/unpowered/no_grav)
+"bh" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/automatic/pistol/APS,/turf/open/floor/wood/airless,/area/ruin/unpowered/no_grav)
+"bi" = (/mob/living/simple_animal/hostile/pirate/space{environment_smash = 0},/turf/open/floor/wood/airless,/area/ruin/unpowered/no_grav)
+"bj" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/automatic/dual_tube,/turf/open/floor/wood/airless,/area/ruin/unpowered/no_grav)
+"bk" = (/obj/structure/girder,/turf/open/space,/area/space)
+"bl" = (/turf/closed/wall/mineral/titanium,/area/ruin/unpowered)
+"bm" = (/turf/open/floor/plating,/obj/machinery/door/poddoor{id = "caravantrade1"; name = "cargo blastdoor"},/turf/open/floor/plating/airless{icon_plating = "platingdmg2"; icon_state = "platingdmg2"},/area/ruin/unpowered)
+"bn" = (/turf/open/floor/plating/airless{icon_plating = "platingdmg1"; icon_state = "platingdmg1"},/area/ruin/unpowered)
+"bo" = (/turf/open/floor/mineral/titanium/yellow,/obj/structure/door_assembly/door_assembly_shuttle{density = 0; name = "broken airlock"},/turf/open/floor/plating/airless{icon_plating = "platingdmg2"; icon_state = "platingdmg2"},/area/ruin/unpowered)
+"bp" = (/turf/closed/wall/mineral/titanium/overspace,/area/ruin/unpowered)
+"bq" = (/obj/structure/fluff/broken_flooring{tag = "icon-pile (WEST)"; icon_state = "pile"; dir = 8},/turf/open/space,/area/space)
+"br" = (/obj/item/stack/sheet/metal,/turf/open/space,/area/space)
+"bs" = (/obj/structure/lattice,/turf/open/space,/area/space)
+"bt" = (/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg2"; icon_state = "platingdmg2"},/area/ruin/unpowered)
+"bu" = (/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"bv" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"bw" = (/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"bx" = (/obj/machinery/button/door{pixel_x = 24},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"by" = (/obj/structure/bed,/obj/item/weapon/bedsheet/black,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"bz" = (/turf/open/floor/mineral/titanium/blue,/turf/closed/wall/mineral/titanium/interior,/area/ruin/unpowered)
+"bA" = (/obj/structure/fluff/broken_flooring{tag = "icon-pile"; icon_state = "pile"},/turf/open/space,/area/space)
+"bB" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg1"; icon_state = "platingdmg1"},/area/ruin/unpowered)
+"bC" = (/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"bD" = (/obj/structure/closet/crate/secure/gear,/obj/item/ammo_casing/shotgun/techshell,/obj/item/ammo_casing/shotgun/techshell,/obj/item/ammo_casing/shotgun/techshell,/obj/item/ammo_casing/shotgun/pulseslug,/obj/item/weapon/storage/box/lethalshot,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"bE" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"bF" = (/mob/living/simple_animal/hostile/pirate/space/ranged{environment_smash = 0},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"bG" = (/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"bH" = (/mob/living/simple_animal/hostile/pirate/space{environment_smash = 0},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"bI" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"bJ" = (/turf/open/floor/plating,/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating/airless{icon_plating = "platingdmg2"; icon_state = "platingdmg2"},/area/ruin/unpowered)
+"bK" = (/obj/structure/fluff/broken_flooring{tag = "icon-plating (NORTH)"; icon_state = "plating"; dir = 1},/turf/open/space,/area/space)
+"bL" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"bM" = (/obj/effect/decal/cleanable/blood,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"bN" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"bO" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"bP" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 8; icon_state = "diagonalWall3"},/area/ruin/powered)
+"bQ" = (/obj/structure/fluff/broken_flooring{tag = "icon-plating (NORTH)"; icon_state = "plating"; dir = 1},/obj/structure/lattice,/turf/open/space,/area/space)
+"bR" = (/obj/structure/girder,/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"bS" = (/obj/structure/girder,/turf/open/floor/plating/airless{icon_plating = "platingdmg2"; icon_state = "platingdmg2"},/area/ruin/unpowered)
+"bT" = (/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg1"; icon_state = "platingdmg1"},/area/ruin/unpowered)
+"bU" = (/obj/item/stack/rods,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"bV" = (/obj/structure/closet/crate/secure/gear,/obj/item/ammo_casing/shotgun/frag12,/obj/item/ammo_casing/shotgun/frag12,/obj/item/ammo_casing/shotgun/frag12,/obj/item/ammo_casing/shotgun/frag12,/obj/item/weapon/storage/box/beanbag,/obj/item/weapon/storage/box/rubbershot,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"bW" = (/obj/structure/closet/crate/secure/gear,/obj/item/ammo_box/c10mm,/obj/item/ammo_casing/shotgun/meteorshot,/obj/item/ammo_casing/shotgun/meteorshot,/obj/item/ammo_casing/shotgun/meteorshot,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"bX" = (/obj/structure/closet/crate/secure/gear,/obj/item/ammo_box/a40mm,/obj/item/ammo_box/a40mm,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"bY" = (/obj/structure/chair{dir = 4},/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,/obj/effect/decal/cleanable/blood,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"bZ" = (/obj/machinery/computer,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"ca" = (/obj/structure/shuttle/engine/propulsion/burst/left{tag = "icon-burst_l (EAST)"; icon_state = "burst_l"; dir = 4},/turf/open/floor/plating/airless,/area/ruin/unpowered)
+"cb" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/turf/closed/wall/mineral/titanium,/area/ruin/unpowered)
+"cc" = (/obj/structure/table,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"cd" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed,/obj/item/weapon/bedsheet/black,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"ce" = (/obj/structure/table,/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"cf" = (/obj/machinery/computer,/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"cg" = (/obj/structure/fluff/broken_flooring{tag = "icon-plating (EAST)"; icon_state = "plating"; dir = 4},/obj/structure/lattice,/turf/open/space,/area/space)
+"ch" = (/turf/open/space,/obj/item/stack/rods,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg2"; icon_state = "platingdmg2"},/area/ruin/unpowered)
+"ci" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"cj" = (/turf/open/floor/plating/airless,/area/ruin/unpowered)
+"ck" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/revolver/grenadelauncher/unrestricted,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cl" = (/mob/living/simple_animal/hostile/pirate/space{environment_smash = 0},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cm" = (/obj/structure/door_assembly/door_assembly_shuttle{density = 0; name = "broken airlock"},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cn" = (/obj/structure/table,/obj/item/device/gps{gpstag = "Distress Signal"},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"co" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/open/floor/plating/airless,/area/ruin/unpowered)
+"cp" = (/obj/structure/closet/crate/secure/engineering,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cq" = (/obj/item/weapon/shard,/obj/effect/decal/cleanable/dirt,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"cr" = (/obj/structure/table_frame,/obj/effect/decal/cleanable/dirt,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"cs" = (/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"ct" = (/obj/structure/chair{dir = 1},/mob/living/simple_animal/hostile/syndicate{environment_smash = 0; name = "Syndicate Salvage Pilot"},/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"cu" = (/obj/structure/closet/crate/secure/engineering,/obj/item/weapon/wrench{color = "#ff0000"; desc = "A prototype of a new wrench design, allegedly the red color scheme makes it go faster."; name = "experimental wrench"; toolspeed = 3},/obj/item/weapon/screwdriver{color = "#ff0000"; desc = "A prototype of a new screwdriver design, allegedly the red color scheme makes it go faster."; name = "experimental screwdriver"; toolspeed = 3},/obj/item/weapon/wirecutters{color = "#ff0000"; desc = "A prototype of a new wirecutter design, allegedly the red color scheme makes it go faster."; name = "experimental wirecutters"; toolspeed = 3},/obj/item/weapon/crowbar/red{color = "#ff0000"; desc = "A prototype of a new crowbar design, allegedly the red color scheme makes it go faster."; name = "experimental crowbar"; toolspeed = 3},/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"cv" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/hostile/syndicate/ranged/space{environment_smash = 0; name = "Syndicate Salvage Worker"},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"cw" = (/obj/item/stack/rods,/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"cx" = (/turf/open/space,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg2"; icon_state = "platingdmg2"},/area/ruin/unpowered)
+"cy" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/girder,/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"cz" = (/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"cA" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/riot,/obj/item/weapon/gun/projectile/shotgun/riot,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cB" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/syringe/syndicate,/obj/item/weapon/gun/syringe/rapidsyringe,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cC" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/automatic/c20r/toy/unrestricted,/obj/item/weapon/gun/projectile/automatic/c20r/toy/unrestricted,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cD" = (/mob/living/simple_animal/hostile/pirate/space/ranged{environment_smash = 0},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"cE" = (/obj/structure/table,/obj/item/weapon/clipboard,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"cF" = (/obj/structure/shuttle/engine/propulsion/burst/right{tag = "icon-burst_r (EAST)"; icon_state = "burst_r"; dir = 4},/turf/open/floor/plating/airless,/area/ruin/unpowered)
+"cG" = (/mob/living/simple_animal/hostile/syndicate/melee/space{environment_smash = 0; name = "Syndicate Salvage Worker"},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cH" = (/obj/item/stack/rods,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg1"; icon_state = "platingdmg1"},/area/ruin/unpowered)
+"cI" = (/obj/structure/grille/broken,/obj/item/weapon/shard,/turf/open/floor/plating/airless{icon_plating = "platingdmg1"; icon_state = "platingdmg1"},/area/ruin/unpowered)
+"cJ" = (/obj/structure/closet/crate/secure/engineering,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"cK" = (/obj/structure/closet/crate,/obj/item/stack/sheet/plasteel/twenty,/obj/item/stack/sheet/plasteel/twenty,/obj/effect/decal/cleanable/dirt,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cL" = (/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/dirt,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cM" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless{icon_plating = "platingdmg3"; icon_state = "platingdmg3"},/area/ruin/unpowered)
+"cN" = (/obj/structure/closet/crate/secure/plasma,/obj/item/weapon/tank/internals/plasma/full,/obj/item/weapon/tank/internals/plasma/full,/obj/item/stack/sheet/mineral/plasma{amount = 25},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cO" = (/obj/item/weapon/shard,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"cP" = (/obj/item/chair,/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,/obj/effect/decal/cleanable/blood,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"cQ" = (/obj/item/stack/rods,/obj/item/stack/sheet/metal,/turf/open/floor/plating/airless{icon_plating = "platingdmg1"; icon_state = "platingdmg1"},/area/ruin/unpowered)
+"cR" = (/obj/structure/fluff/broken_flooring{tag = "icon-plating (WEST)"; icon_state = "plating"; dir = 8},/obj/structure/lattice,/turf/open/space,/area/space)
+"cS" = (/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1},/turf/open/floor/plating,/area/ruin/powered)
+"cT" = (/obj/machinery/porta_turret/syndicate/pod,/turf/open/floor/plating/airless,/area/ruin/powered)
+"cU" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/hostile/syndicate/melee/space/stormtrooper{environment_smash = 0; name = "Syndicate Salvage Leader"},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cV" = (/obj/structure/chair{dir = 4},/obj/effect/decal/cleanable/blood,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"cW" = (/obj/structure/closet/crate/secure/plasma,/obj/item/weapon/tank/internals/plasma/full,/obj/item/stack/sheet/mineral/plasma{amount = 25},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cX" = (/obj/structure/closet/crate/secure/engineering,/obj/item/organ/cyberimp/arm/toolset,/obj/item/organ/cyberimp/arm/toolset,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cY" = (/obj/structure/closet/crate/secure/plasma,/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"cZ" = (/mob/living/simple_animal/hostile/syndicate/ranged/space/stormtrooper{environment_smash = 0; name = "Syndicate Salvage Leader"},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"da" = (/obj/item/stack/rods,/obj/item/weapon/shard,/mob/living/simple_animal/hostile/syndicate/melee/space{environment_smash = 0; name = "Syndicate Salvage Worker"},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"db" = (/obj/item/weapon/shard,/turf/open/floor/plating/airless{icon_plating = "platingdmg1"; icon_state = "platingdmg1"},/area/ruin/unpowered)
+"dc" = (/obj/item/weapon/shard,/turf/open/space,/area/space)
+"dd" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"de" = (/obj/structure/closet/crate/secure/plasma,/obj/item/stack/sheet/mineral/plasma{amount = 25},/obj/item/stack/sheet/mineral/plasma{amount = 25},/obj/item/weapon/tank/internals/plasma/full,/obj/item/weapon/tank/internals/plasma/full,/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"df" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"dg" = (/obj/structure/closet/crate,/obj/item/stack/sheet/rglass{amount = 20},/obj/item/stack/sheet/rglass{amount = 20},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"dh" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/mineral/gold{amount = 25},/obj/item/stack/sheet/mineral/bananium{amount = 5},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"di" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/mineral/silver{amount = 25},/obj/item/stack/sheet/mineral/uranium{amount = 10},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"dj" = (/obj/effect/mob_spawn/human/corpse/nanotrasensoldier,/obj/effect/decal/cleanable/blood,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"dk" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"dl" = (/obj/structure/closet/crate/secure/plasma,/obj/item/stack/sheet/mineral/plasma{amount = 25},/obj/item/weapon/tank/internals/plasma/full,/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"dm" = (/obj/structure/chair,/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"dn" = (/obj/structure/closet/crate,/obj/item/stack/sheet/mineral/gold{amount = 25},/obj/item/stack/sheet/mineral/silver{amount = 25},/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"do" = (/obj/structure/closet/crate,/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/effect/decal/cleanable/dirt,/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"dp" = (/obj/structure/closet/crate,/obj/item/stack/sheet/mineral/silver{amount = 25},/turf/open/floor/mineral/titanium/yellow,/area/ruin/unpowered)
+"dq" = (/mob/living/simple_animal/hostile/syndicate/ranged/space{environment_smash = 0; name = "Syndicate Salvage Worker"},/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"dr" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/clipboard,/turf/open/floor/mineral/titanium/blue,/area/ruin/unpowered)
+"ds" = (/obj/structure/shuttle/engine/heater,/turf/closed/wall/mineral/plastitanium,/area/ruin/powered)
+"dt" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/stack/sheet/mineral/diamond{amount = 5},/obj/item/stack/sheet/mineral/gold{amount = 25},/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"du" = (/obj/structure/chair{dir = 4},/mob/living/simple_animal/hostile/syndicate{environment_smash = 0; name = "Syndicate Salvage Pilot"},/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"dv" = (/obj/structure/shuttle/engine/propulsion/burst,/turf/open/floor/plating/airless,/area/ruin/powered)
+"dw" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"dx" = (/obj/structure/closet/crate,/obj/item/stack/sheet/mineral/diamond{amount = 5},/obj/item/stack/sheet/mineral/uranium{amount = 10},/obj/item/stack/sheet/mineral/silver{amount = 25},/turf/open/floor/mineral/plastitanium,/area/ruin/powered)
+"dy" = (/mob/living/simple_animal/hostile/syndicate/ranged/space/stormtrooper{environment_smash = 0; name = "Syndicate Salvage Leader"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"dz" = (/mob/living/simple_animal/hostile/syndicate/ranged/space{environment_smash = 0; name = "Syndicate Salvage Worker"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababacacadaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadafagagafabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabafagagafabahadahadaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabababaiaiadadadababababaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadadajagakagalamanaoapaqabadababababadaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarasatatagatatagatatagauabavawaxayazaAaBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDaaaEaaaaaaaaaaaaaaaaaaaaaaarasawaFagagagagagagakagagagagagaGagagaBaaaaaaaaaaaaaaaCaCaCaCaCaCaHaHaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaHaHaHaHaHaCaCaCaCaCaaaaaaaaaaaaaIaIaIaIaJaIaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaarasawaLagagagagagagagagagagagagaMagagaBaaaaaaaaaaaaaaaCaCaCaCaCaCaHaHaHaHaHaHaHaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaCaCaHaHaHaHaHaHaCaCaCaCaCaCaaaaaaaaaNaOaPaQaRaKaSaTaDaaaaaaaaaaaaaaaaaaaaaaaaarasatatakatatagatataFaMabaUawaxayaxagaBaaaaaaaaaaaaaCaCaCaCaCaCaCaCaHaHaHaHaHaHaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaHaHaHaCaCaCaCaaaaaaaaaIaIaVaWaKaKaKaKaKaXaXaXaXaXaaaaaaaaaaaaabadadaYagagagalamazaZbaazabadadabababadbbaaaaaaaaaCaCaCaCaCaCaCaCaCaCaCaCaHaHaHaHaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaCaHaHaHaCaCaCaCaCaCaaaNaObcbdbeaKbeaSaaaDaaaaaaaXaXaXaXaXaXaXaXaXadadabaiaiabadadababababbbaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaCaCaCaCaCaHaHaCaCaCaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaCaHaHaHaHaCaCaCaaaIaIaIaIaJaIaKaIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabafagagafabahadahadbbaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaCaCaCaCaCaHaCaCaCaCaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaCaCaCaCaHaHaCaCaaaaaaaaaaaaaaaDaaaaaTaaaaaaaaaaaaaaaaaaaaaaaaaaabafagagafabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaCaCaCaCaHaCaCaCaCaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaCaHaHaHaHaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadacacadbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHaHaHaCaCaCaCaCaCaCaHaHaCaCaCaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHaHaHaHaHbfaHaHaHaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgbgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHaHaHaHaHaHaHaHaHaHaHaHaCaCaCaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHaHaHaHaHaHaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgbhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHaHaHaHaHaHaHaCaCaCaCaCaCaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgbiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHaHaHaHaHaHaHaHaCaCaCaCaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabjbgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgbgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTbkblblblbmbmbnbnblboblbpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTbraabsbtbubvbwbwbxblbwbybzbpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEaDbBbCbDbEbFbGblbwbHbIbJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDaaaabraabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabsaabKbBbCbEbGbGbGbLbMbwbNbJaaaaaaaaaaaaaaaaaablblblblblblbmbmbmbmblbOblbpaaaaaabPaBaBaBaeaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablblblblbsaaaTaaaaaaaaaabQbRaaaaaaaaaaaaaaaaaaaaaaaaaablbSblbTbUbVbGbFbWbXblbwbYbZbJaaaaaaaaaaaaaaaaaaaacacbbwbwccbwbwbwbxblbwcdbzbpaaaaabcecfceabaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacbbvbCcgbraabsbschbBcibzbpaaaaaaaaaaaaaaaaaaaaaaaaaacjcbcibEbGckbGclbGcmbwbwcnbJaaaaaaaaaaaaaaaaaaaacocbbwbwbGbGbGcpbGblbwcqcrbnaaaaabcsctcuabaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacocbbwcvcicicwcxcicyczciccbJaaaaaaaaaaaaaaaaaaaaaaaaaacocbbwbwcAcBbGbGcCblbwcDcEbJaaaaaaaaaaaaaaaaaaaacFcbbwbGbGbGcGbGbGcmbwbvcHcIaaaaabcscJcsabaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacFcbbwcKbEcLcicMcLbEbGbwbNbJaaaaaaaaaaaaaaaaaaaaaaaaaacFcbbwbHccbwbwbwbxblbwbwbzbpaaaaaaaaaaaaaaaaaablblblbwbGcNbGbGcGbGblcOcPcQcRaaaacScscscscSaaaaaaaaaa
+aaaaaaaaaaaaaaaacTaaaaaaaaaaaaaaaaaablblblbwbGbGbGbEcUbGblbGcVbZbJaaaaaaaaaaaaaaaaaaaaaaaablblblblblblbmbmbmbmblbOblbpaaaaaaaaaaaaaaaaaaaaaacacbbwcWbGcXbGcYcZcmbMdadbbsaadcabdddedfabaaaaaaaaaa
+aaaaaaaaaaaaaaababababcSabababaeaaaaaacacbbwbGdgdhbGbGdicmdjbwccbJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacocbbwbwbGbGbGbGbGblbwbvdkbnaaaaabdddldfabaaaaaaaaaa
+aaaaaaaaaaaaaaarasdmdmcsdncsceaBaaaaaacocbbwbwbGcGdobGdpbldqbwcEbJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacFcbbwbwccbwbwbwbxbldrbwbzbpaacTabdsabdsabcTaaaaaaaa
+aaaaaaaaaaaaaaababdtcscscsducfaBaaaaaacFcbbwbwccbwbwbwbxblbwbwbzbpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaHaHaHaCaCaCaaaaaaaaaaaaaaaaaaaaaablblblblblblbmbmbmbmblbOblbpaaaaaaabdvabdvabaaaaaaaaaa
+aaaaaaaaaaaaaaarasdwdwcsdxcsceaBaaaablblblblblblbmbmbmbmblbOblbpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaHaHaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaababababcSabababbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaHdyaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaacTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaCaCaHaHaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaCaHdzaCaCaCaCaaaaaaaacTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaCaCaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaHaHaCaCaCaCaCaaaaaaababababcSabababaeaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaCaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaaaaaaaCaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaHaHaCaCaCaHaHaaaaaaarasdmdmcscscsceaBaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaCaCaCaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCdzaHaHaHaHaHaCaaaaaaababcscscscsducfaBaaaaaaaaaaaaaaaaaCaCaCaCaCaCaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaCaCaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaaaCaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaHaHdzaHaCaCaCaaaaaaarasdwdwcscscsceaBaaaaaaaaaaaaaaaaaCaCaCaCaCaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaCaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaaaaaaaCaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCaCaCaCaCaCaCaaaaaaaaaaababababcSabababbbaaaaaaaaaaaaaaaaaCaCaCaCaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm b/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm
new file mode 100644
index 00000000000..f571785a4dd
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm
@@ -0,0 +1,46 @@
+"a" = (/turf/open/space,/area/space)
+"b" = (/turf/closed/mineral/random,/area/ruin/unpowered/no_grav)
+"c" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"d" = (/turf/closed/wall/mineral/clown,/area/ruin/unpowered)
+"e" = (/obj/machinery/door/airlock/clown,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"f" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered)
+"g" = (/obj/effect/mob_spawn/human/clown,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"h" = (/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"i" = (/obj/structure/closet/crate,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"j" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/item/weapon/ore/bananium,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"k" = (/obj/structure/closet/secure_closet{name = "clown locker"; req_access_txt = "46"},/obj/item/clothing/shoes/clown_shoes/banana_shoes,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"l" = (/obj/structure/shuttle/engine/heater{color = "#FFFF00"; dir = 4; icon_state = "heater"},/obj/structure/window/reinforced{color = "#FFFF00"; dir = 8},/turf/open/floor/plating/airless{color = "#FFFF00"},/area/ruin/unpowered)
+"m" = (/obj/structure/shuttle/engine/propulsion{color = "#FFFF00"; dir = 8; icon_state = "propulsion_l"},/turf/open/space,/area/ruin/unpowered)
+"n" = (/turf/closed/mineral/random,/area/ruin/unpowered)
+"o" = (/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered)
+"p" = (/obj/item/weapon/ore/bananium,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"q" = (/obj/item/weapon/shard{icon_state = "medium"},/obj/structure/chair{dir = 8},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered)
+"r" = (/obj/effect/mob_spawn/human/clown{name = "Clown Pilot"},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"s" = (/obj/item/weapon/paper{info = "The call has gone out! Our ancestral home has been rediscovered! Not a small patch of land, but a true clown nation, a true Clown Planet! We're on our way home at last!"},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"t" = (/obj/structure/grille{color = "#FFFF00"},/obj/structure/window/reinforced{color = "#FFFF00"},/obj/structure/window/reinforced{color = "#FFFF00"; dir = 4},/obj/structure/window/reinforced{color = "#FFFF00"; dir = 8},/turf/open/floor/plating/airless{color = "#FFFF00"},/area/ruin/unpowered)
+"u" = (/obj/item/weapon/shard,/obj/structure/chair{dir = 8},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"v" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"w" = (/obj/item/weapon/storage/bag/ore,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"x" = (/obj/item/weapon/pickaxe,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"y" = (/obj/structure/closet/crate,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+"z" = (/obj/item/weapon/shovel,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+
+(1,1,1) = {"
+abbaaaaccccccaaaaaaaaaaaaaaa
+bbbbaabbbbbccbbbaaaaaaaaaaaa
+bbbbbbbbbbbccbbaaaaaaaaaaaaa
+abbbbbbbbbbbbbbaaaaaaaaaaaaa
+abbbbbbbbbbbbccaadddeeddddda
+aabbbbbbbbbbbbcdddfghhiijklm
+aaabbbbbbbbbbbbnnnohhhhhphlm
+aabbbbbbbbbbbbbnnqrhsphphplm
+aabbbbbbbbbbbbbthuhvhghhhplm
+aabbbbbbbbbbbbbdddwxhhyyizlm
+aabbbbbbbbbbbbbbbdddeeddddda
+abbbbbbbbbbbbbbbbbbbbbbbbaaa
+abbabbbbbccbbbbbbbbbbbaaaaaa
+aaaabbbbcccbbbbbbbbbaaaaaaaa
+aaaabbaaaaccbcbbcccaaaaaaaaa
+aaaabaaaaaacbbbbbbcaaaaaaaaa
+aaaaaaaaaaaaaabbbbcaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
new file mode 100644
index 00000000000..cbcc6691acd
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
@@ -0,0 +1,438 @@
+"aa" = (/turf/open/space,/area/space)
+"ab" = (/obj/item/weapon/circular_saw,/obj/structure/lattice,/turf/open/space,/area/space)
+"ac" = (/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship/Aft)
+"ad" = (/turf/closed/wall/mineral/titanium/overspace,/area/awaymission/BMPship/Aft)
+"ae" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"af" = (/obj/machinery/porta_turret{dir = 8; emagged = 1; installation = /obj/item/weapon/gun/energy/lasercannon},/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"ag" = (/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"ah" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"ai" = (/turf/open/floor/plating,/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Aft)
+"aj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"ak" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"al" = (/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"am" = (/obj/structure/lattice,/turf/open/space,/area/space)
+"an" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"ao" = (/obj/machinery/light/small,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"ap" = (/turf/closed/wall/mineral/titanium/overspace,/area/awaymission/BMPship/Midship)
+"aq" = (/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship/Midship)
+"ar" = (/obj/machinery/door/airlock/silver{locked = 1},/turf/open/floor/plating{icon_state = "panelscorched"},/area/awaymission/BMPship/Aft)
+"as" = (/obj/structure/bed/roller,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"at" = (/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"au" = (/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/structure/closet/crate,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"av" = (/obj/item/weapon/scalpel,/obj/structure/closet/crate,/obj/item/weapon/tank/internals/anesthetic,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"aw" = (/obj/item/bodybag,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"ax" = (/obj/item/weapon/storage/box/syringes,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"ay" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"az" = (/obj/structure/table/optable,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"aA" = (/obj/machinery/computer/operating,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"aB" = (/turf/open/floor/plating/warnplate{dir = 9},/area/awaymission/BMPship/Aft)
+"aC" = (/obj/structure/closet/crate/freezer,/obj/item/organ/appendix,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem,/turf/open/floor/plating/warnplate{dir = 1},/area/awaymission/BMPship/Aft)
+"aD" = (/obj/structure/closet/crate/freezer,/obj/item/organ/brain,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/slime,/turf/open/floor/plating/warnplate{dir = 1},/area/awaymission/BMPship/Aft)
+"aE" = (/obj/structure/table,/obj/item/stack/packageWrap,/turf/open/floor/plating/warnplate{dir = 1},/area/awaymission/BMPship/Aft)
+"aF" = (/obj/structure/table,/obj/item/weapon/storage/box,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/warnplate{dir = 1},/area/awaymission/BMPship/Aft)
+"aG" = (/turf/open/floor/plating/warnplate{dir = 1},/area/awaymission/BMPship/Aft)
+"aH" = (/turf/open/floor/plating/warnplate{dir = 5},/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Aft)
+"aI" = (/turf/closed/wall/mineral/titanium/nodiagonal,/area/awaymission/BMPship/Fore)
+"aJ" = (/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship/Fore)
+"aK" = (/turf/closed/wall/mineral/titanium/overspace,/area/awaymission/BMPship/Fore)
+"aL" = (/turf/open/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission/BMPship/Midship)
+"aM" = (/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Midship)
+"aN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"aO" = (/turf/open/floor/plating/warnplate{dir = 8},/area/awaymission/BMPship/Aft)
+"aP" = (/obj/item/weapon/storage/box,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"aQ" = (/obj/item/weapon/hand_labeler,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"aR" = (/obj/structure/closet/crate/large,/turf/open/floor/plating/warnplate{dir = 4},/area/awaymission/BMPship/Aft)
+"aS" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"aT" = (/obj/structure/table/wood,/obj/item/stack/spacecash/c500,/obj/item/stack/spacecash/c100,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/wood,/area/awaymission/BMPship/Fore)
+"aU" = (/obj/structure/bed,/obj/item/weapon/bedsheet/yellow,/turf/open/floor/wood,/area/awaymission/BMPship/Fore)
+"aV" = (/turf/open/floor/plating/warnplate{dir = 9},/area/awaymission/BMPship/Fore)
+"aW" = (/obj/structure/rack,/turf/open/floor/plating/warnplate{dir = 1},/area/awaymission/BMPship/Fore)
+"aX" = (/turf/open/floor/plating/warnplate{dir = 1},/area/awaymission/BMPship/Fore)
+"aY" = (/turf/open/floor/plating/warnplate{dir = 5},/area/awaymission/BMPship/Fore)
+"aZ" = (/obj/structure/sign/vacuum,/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship/Fore)
+"ba" = (/turf/open/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Midship)
+"bb" = (/turf/open/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission/BMPship/Midship)
+"bc" = (/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/gibspawner/human,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"bd" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/clothing/glasses/regular/hipster,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"be" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"bf" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf,/area/awaymission/BMPship/Midship)
+"bg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating/warnplate{dir = 8},/area/awaymission/BMPship/Aft)
+"bh" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bi" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bj" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bk" = (/obj/machinery/teleport/station,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bl" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bm" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"bn" = (/turf/open/floor/wood,/area/awaymission/BMPship/Fore)
+"bo" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/awaymission/BMPship/Fore)
+"bp" = (/turf/open/floor/plating/warnplate{dir = 8},/area/awaymission/BMPship/Fore)
+"bq" = (/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
+"br" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
+"bs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bt" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c50,/turf/open/floor/plating/warnplate{dir = 4},/area/awaymission/BMPship/Aft)
+"bu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"bv" = (/turf/open/floor/plasteel{icon_state = "wood-broken"},/area/awaymission/BMPship/Fore)
+"bw" = (/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Fore)
+"bx" = (/obj/machinery/light/small,/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Fore)
+"by" = (/turf/open/floor/plating/warnplate{dir = 6},/area/awaymission/BMPship/Fore)
+"bz" = (/obj/machinery/light,/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"bA" = (/obj/machinery/button/door{id = "packerMed"; pixel_y = -24},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"bB" = (/obj/machinery/sleeper{dir = 1},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"bC" = (/obj/machinery/sleep_console,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"bD" = (/obj/machinery/light,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"bE" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/item/weapon/hand_labeler,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/item/weapon/storage/box,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"bI" = (/turf/open/floor/plating/warnplate{dir = 4},/area/awaymission/BMPship/Aft)
+"bJ" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/plasteel{icon_state = "carpetside"; dir = 1},/area/awaymission/BMPship/Fore)
+"bK" = (/obj/machinery/door/airlock/silver,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"bL" = (/obj/machinery/door/poddoor/shutters{id = "packerMed"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"bM" = (/obj/structure/closet/crate/large,/turf/open/floor/plating/warnplate{dir = 10},/area/awaymission/BMPship/Aft)
+"bN" = (/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Aft)
+"bO" = (/obj/machinery/light/small,/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Aft)
+"bP" = (/obj/structure/kitchenspike,/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Aft)
+"bQ" = (/obj/structure/closet/crate,/obj/item/device/analyzer,/obj/item/stack/spacecash/c10,/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Aft)
+"bR" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c200,/obj/item/stack/spacecash/c500,/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Aft)
+"bS" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/obj/item/organ/appendix,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine,/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Aft)
+"bT" = (/obj/machinery/button/door{id = "packerCargo"; pixel_y = -24},/obj/machinery/light/small,/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Aft)
+"bU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/warnplate{dir = 2},/area/awaymission/BMPship/Aft)
+"bV" = (/turf/open/floor/plating/warnplate{dir = 6},/area/awaymission/BMPship/Aft)
+"bW" = (/turf/open/floor/carpet,/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Fore)
+"bX" = (/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"bY" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; environ = 0; equipment = 3; locked = 0; pixel_y = 32; req_access = ""},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"bZ" = (/obj/structure/table,/obj/item/weapon/screwdriver,/obj/item/weapon/screwdriver,/obj/item/weapon/paper{info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen"; name = "scribbled note"},/obj/item/weapon/screwdriver,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"ca" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"cb" = (/obj/machinery/hydroponics,/turf/open/floor/plasteel/green/side{dir = 8},/area/awaymission/BMPship/Midship)
+"cc" = (/obj/structure/sink{dir = 2},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/awaymission/BMPship/Midship)
+"cd" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/awaymission/BMPship/Midship)
+"ce" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/awaymission/BMPship/Midship)
+"cf" = (/obj/machinery/hydroponics,/turf/open/floor/plasteel/green/side{dir = 4},/area/awaymission/BMPship/Midship)
+"cg" = (/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"ch" = (/obj/structure/table,/obj/item/weapon/kitchen/knife/butcher,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"ci" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"cj" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"ck" = (/obj/machinery/processor,/obj/machinery/light{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"cl" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"cm" = (/obj/structure/table,/obj/item/weapon/kitchen/knife,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"cn" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"co" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"cp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor/shutters{id = "packerCargo"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"cq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"cr" = (/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"cs" = (/turf/open/floor/plasteel,/area/awaymission/BMPship/Midship)
+"ct" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel,/area/awaymission/BMPship/Midship)
+"cu" = (/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"cv" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"cw" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"cx" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"cy" = (/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"cz" = (/obj/machinery/door/airlock/silver,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"cA" = (/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
+"cB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
+"cC" = (/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
+"cD" = (/obj/machinery/gibber,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
+"cE" = (/turf/open/floor/plasteel/hydrofloor,/area/awaymission/BMPship/Aft)
+"cF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"cG" = (/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"cH" = (/turf/closed/wall/mineral/titanium/nodiagonal,/area/awaymission/BMPship/Aft)
+"cI" = (/turf/closed/wall/mineral/titanium/overspace,/area/space)
+"cJ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"cK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"cL" = (/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/turf/open/floor/plasteel,/area/awaymission/BMPship/Midship)
+"cM" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"cN" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"cO" = (/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"cP" = (/obj/machinery/door/window,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"cQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
+"cR" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"cS" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"cT" = (/obj/structure/closet/secure_closet/freezer/meat{opened = 1},/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
+"cU" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
+"cV" = (/obj/effect/decal/cleanable/blood/splatter,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
+"cW" = (/obj/item/weapon/crowbar,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
+"cX" = (/turf/open/floor/plasteel/warning{dir = 8},/area/awaymission/BMPship/Aft)
+"cY" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{dir = 1; environ = 0; equipment = 3; locked = 0; pixel_y = 32; req_access = ""},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"cZ" = (/turf/open/floor/plasteel/warning{dir = 4},/area/awaymission/BMPship/Aft)
+"da" = (/obj/structure/table,/obj/item/weapon/paper{info = "I'm no scientist, but judging from the design and components, it seems to be some kind of teleporter. This thing is gonna be worth a lot of cash to the right man. The boys are excited, as they have every right to be, and I've let them crack into that case of beer we got. I normally wouldn't allow such a thing, but this is a time for celebration! It's not like a couple drinks will hurt anything."; name = "Captain's log entry"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"db" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"dc" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"dd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"de" = (/obj/machinery/hydroponics,/turf/open/floor/plasteel/green/side{dir = 10},/area/awaymission/BMPship/Midship)
+"df" = (/turf/open/floor/plasteel/green/side,/area/awaymission/BMPship/Midship)
+"dg" = (/obj/machinery/seed_extractor,/obj/item/seeds/plump/walkingmushroom,/turf/open/floor/plasteel/green/side,/area/awaymission/BMPship/Midship)
+"dh" = (/obj/machinery/hydroponics,/turf/open/floor/plasteel/green/side{dir = 6},/area/awaymission/BMPship/Midship)
+"di" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"dm" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"dn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"do" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"dp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"dq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/warning{dir = 4},/area/awaymission/BMPship/Aft)
+"dr" = (/obj/item/device/multitool,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"ds" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine/airless,/area/awaymission/BMPship/Aft)
+"dt" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/open/space,/area/awaymission/BMPship/Aft)
+"du" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"dv" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"dw" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"dx" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dy" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dB" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dC" = (/turf/closed/wall/r_wall,/area/awaymission/BMPship/Midship)
+"dD" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"dE" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/warning{dir = 8},/area/awaymission/BMPship/Aft)
+"dF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"dG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 4},/area/awaymission/BMPship/Aft)
+"dH" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
+"dI" = (/obj/item/weapon/shard,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"dJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"dK" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"dL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dM" = (/obj/machinery/shieldwallgen,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"dN" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dO" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; locked = 0; pixel_y = 28; req_access = ""},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dP" = (/turf/open/floor/plasteel/loadingarea/dirtydirty{dir = 4},/area/awaymission/BMPship/Midship)
+"dQ" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey1"},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"dR" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey1"},/obj/structure/plasticflaps,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"dS" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"dT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/awaymission/BMPship/Midship)
+"dU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dV" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"dW" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"dX" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"dY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"dZ" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights,/turf/open/floor/plasteel/warning{dir = 8},/area/awaymission/BMPship/Aft)
+"ea" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/awaymission/BMPship/Aft)
+"eb" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"ec" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"ed" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/warning{dir = 4},/area/awaymission/BMPship/Aft)
+"ee" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
+"ef" = (/obj/structure/table,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"eg" = (/obj/structure/chair/office{dir = 8},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"eh" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"ei" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"ej" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"ek" = (/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"el" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"em" = (/obj/machinery/conveyor_switch/oneway{id = "meatConvey1"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"en" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"ep" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"eq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"er" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"es" = (/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"et" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"eu" = (/obj/structure/rack,/obj/item/weapon/storage/belt/utility/full,/turf/open/floor/plasteel/warning{dir = 8},/area/awaymission/BMPship/Aft)
+"ev" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/warning{dir = 4},/area/awaymission/BMPship/Aft)
+"ew" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"ex" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"ey" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"ez" = (/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/xeno,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"eA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eD" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eE" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"eF" = (/obj/effect/gibspawner/human,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"eG" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"eH" = (/obj/structure/rack,/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plasteel/warning{dir = 8},/area/awaymission/BMPship/Aft)
+"eI" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
+"eJ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"eK" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"eL" = (/obj/machinery/light,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eM" = (/obj/effect/gibspawner/generic,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"eP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"eQ" = (/obj/structure/rack,/turf/open/floor/plasteel/warning{dir = 8},/area/awaymission/BMPship/Aft)
+"eR" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/obj/structure/cable,/obj/structure/cable,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"eS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/warning{dir = 4},/area/awaymission/BMPship/Aft)
+"eT" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/power/port_gen/pacman/super,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"eU" = (/obj/structure/closet,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"eV" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/closet,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"eW" = (/obj/item/weapon/wrench,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"eX" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"eZ" = (/obj/structure/mopbucket,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"fa" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/kitchen/knife,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"fb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"fc" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"fd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/unpowered/shuttle,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
+"fe" = (/obj/effect/gibspawner/xeno,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"ff" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{icon_state = "panelscorched"},/area/awaymission/BMPship/Midship)
+"fg" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"fh" = (/turf/open/floor/plasteel/loadingarea/dirty{dir = 4},/area/awaymission/BMPship/Midship)
+"fi" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey2"},/obj/item/weapon/kitchen/knife,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"fj" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey2"},/obj/structure/plasticflaps,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"fk" = (/obj/machinery/conveyor{dir = 4; id = "meatConvey2"},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"fl" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"fm" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"fn" = (/obj/structure/window/reinforced,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"fo" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"fp" = (/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"fq" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/warning{dir = 4},/area/awaymission/BMPship/Aft)
+"fr" = (/obj/item/stack/sheet/mineral/uranium{amount = 50},/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"fs" = (/turf/open/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore)
+"ft" = (/obj/structure/lattice,/turf/open/space,/area/awaymission/BMPship/Fore)
+"fu" = (/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore)
+"fv" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"fw" = (/obj/item/weapon/shard{icon_state = "small"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"fx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission/BMPship/Fore)
+"fy" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore)
+"fz" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/weapon/kitchen/knife,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"fA" = (/obj/machinery/conveyor_switch/oneway{id = "meatConvey2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"fB" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"fC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"fD" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"fE" = (/obj/item/weapon/mop,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"fF" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"fG" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/warning{dir = 4},/area/awaymission/BMPship/Aft)
+"fH" = (/turf/open/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission/BMPship/Fore)
+"fI" = (/obj/item/weapon/shard,/turf/open/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore)
+"fJ" = (/obj/structure/chair/stool,/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore)
+"fK" = (/obj/item/stack/cable_coil{amount = 5},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"fL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"fM" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"fN" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"fO" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"fP" = (/obj/structure/reagent_dispensers,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
+"fQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"fR" = (/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship)
+"fS" = (/turf/open/floor/plating/airless{icon_state = "platingdmg2"},/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Fore)
+"fT" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission/BMPship/Fore)
+"fU" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore)
+"fV" = (/obj/machinery/light/small,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
+"fW" = (/turf/open/floor/plasteel{icon_state = "platingdmg3"},/area/awaymission/BMPship/Midship)
+"fX" = (/turf/open/floor/plasteel{icon_state = "platingdmg1"},/area/awaymission/BMPship/Midship)
+"fY" = (/obj/machinery/door/airlock/silver{locked = 1},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"fZ" = (/obj/machinery/door/airlock/silver{locked = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"ga" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gb" = (/turf/closed/mineral/random,/area/awaymission/BMPship)
+"gc" = (/obj/item/device/multitool,/turf/open/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission/BMPship)
+"gd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/silver,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"ge" = (/turf/closed/mineral/random,/area/awaymission/BMPship/Midship)
+"gf" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gg" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gh" = (/obj/structure/table,/obj/item/weapon/paper{info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies."; name = "Old Diary"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gi" = (/obj/structure/table,/obj/item/weapon/pen/red,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gj" = (/obj/structure/closet,/obj/item/clothing/under/overalls,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gk" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"gl" = (/obj/machinery/porta_turret{dir = 8; emagged = 1; installation = /obj/item/weapon/gun/energy/lasercannon},/turf/open/floor/engine,/area/awaymission/BMPship/Fore)
+"gm" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/engine,/area/awaymission/BMPship/Fore)
+"gn" = (/obj/structure/cable,/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore)
+"go" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"gp" = (/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship/Fore)
+"gq" = (/obj/structure/rack,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"gr" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship/Fore)
+"gs" = (/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship/Midship)
+"gt" = (/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg1"},/area/awaymission/BMPship/Midship)
+"gu" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"gv" = (/obj/item/wallframe/apc,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"gw" = (/obj/structure/ore_box,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"gx" = (/obj/item/stack/cable_coil{amount = 5},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"gy" = (/obj/structure/ore_box,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"gz" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gA" = (/obj/effect/decal/remains/human,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gC" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gD" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/item/wallframe/apc,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gE" = (/obj/effect/decal/remains/human,/obj/item/clothing/head/helmet/space/syndicate/green/dark,/obj/effect/gibspawner/generic,/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship)
+"gF" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"gG" = (/turf/open/floor/engine,/area/awaymission/BMPship/Fore)
+"gH" = (/obj/machinery/door/unpowered/shuttle,/turf,/area/awaymission/BMPship/Fore)
+"gI" = (/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"gJ" = (/obj/effect/gibspawner/robot,/turf/open/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/BMPship/Fore)
+"gK" = (/turf/closed/mineral/random,/area/awaymission/BMPship/Fore)
+"gL" = (/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/awaymission/BMPship/Midship)
+"gM" = (/obj/structure/mecha_wreckage/ripley,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"gN" = (/obj/structure/bed,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gO" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/item/weapon/storage/wallet/random,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gP" = (/obj/structure/closet,/obj/item/clothing/under/lawyer/bluesuit,/obj/item/clothing/suit/apron,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gQ" = (/obj/item/clothing/suit/space/syndicate/green/dark,/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship)
+"gR" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
+"gS" = (/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship)
+"gT" = (/obj/effect/gibspawner/robot,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"gU" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"gV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"gW" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
+"gX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gY" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"gZ" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/space,/area/space)
+"ha" = (/turf/open/floor/plating/airless{broken = 1; icon_state = "panelscorched"},/area/awaymission/BMPship/Midship)
+"hb" = (/obj/effect/decal/remains/human,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"hc" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"hd" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/plasteel/cafeteria{dir = 2},/area/awaymission/BMPship/Aft)
+"he" = (/obj/structure/mirror{pixel_y = 28},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/awaymission/BMPship/Aft)
+"hf" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/awaymission/BMPship/Aft)
+"hg" = (/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg3"},/area/awaymission/BMPship/Midship)
+"hh" = (/obj/item/weapon/caution,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"hi" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
+"hj" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c200,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"hk" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c10,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
+"hl" = (/obj/structure/sink{dir = 2},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/awaymission/BMPship/Aft)
+"hm" = (/turf/open/floor/plasteel/cafeteria{dir = 2},/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Aft)
+"hn" = (/obj/item/clothing/gloves/color/fyellow,/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship)
+"ho" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"hp" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"hq" = (/obj/item/weapon/storage/box/matches,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"hr" = (/obj/item/weapon/poster/contraband,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"hs" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
+"ht" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
+"hu" = (/turf/closed/mineral/diamond,/area/awaymission/BMPship)
+"hv" = (/turf/closed/mineral/clown,/area/awaymission/BMPship)
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacadaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafagacahaiadaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajagagakalalaiadaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaanafaoacalalalacadaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamapaqaqaqaqaqaqaqaqaqaqacacacacacaracacacacacadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaamaqasatauavawaxayazaAaqaBaCaDaEaFaGaGaGaGaGaGaHadaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaIaJaJaJaJaJaJaJaJaJaJaKaaaaaaaaaaaaamaLaMatatatatatataNatataqaOalalaPalalalalalalaQaRacaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaSaTaUaJaVaWaXaWaXaWaYaZaaaaaaaaaaambaaMatbbbcatatasatbdbebebfbgbhalbialalbjbkblalalaRacaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaabmbnboaJbpbqbqbqbqbqbqbraaaaaaamapaqatbbaMatbbatatatatatatataqaObsalalalalalalalalalbtacaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaabubvbnaJbqbwbwbxbwbwbyaJaaaaaaapaqbabbatbzbAatatatbBbCbDbBbCaqaObEbFbGbGbHbGbGbGbGbhbIacaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaJaJbJaJbKaJaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqbLbLbLaqaqaqaqaqaqbMbNbObPbNbNbQbRbSbTbUbVacaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaKbWbXbXbYbXaJbZcacbcccdcecccfcacgaqchcicjckcgcgcgcgclcmcnclcoaqacacacacacacacacacaccpacacadaaaaaaaaaa
+aaaaaaaaaaaaaaaaaKbWbXbXbXcqbXaJcgcrcbcscscsctcfcgcgaqcucucucvcgcgcgcgcwcwcgcwcgaqcxcxcyczcAcBcCcDaccEcFcGcHacacacadaaaa
+aaaaaaaaaaaaaacIbWbXbXbXbXcJcKaJcgcgcbcscLcscscfcgcgcMcNcOcPcQcgcgcgcgcgcgcRcgcgaqcycScyaccTcUcVcWaccXcFcEcEcYcZacacacad
+aaaaaaaaaaaaaKbWbXbXdadbdcbXddaJcgcgdedfdfdgdfdhcgcgaqcgdidjdjdjdjdjdjdjdjdjdkcgaqcydlcycHacacacacaccXdmdndodpdqacdrdsdt
+aaaaaaaaaaaaaJbXbXbXdudvbXbXdwaJdxdydzdzdzdzdzdzdkcgaqcgdAcgdBdCdCdCdCdCdCdCdAcgaqcydlcycycycycydDacdEdFalbsaldGakagdsdt
+aaaaaaaaaaaadHdcdIbXbXbXbXbXdJdKdzdLdCdCdCdCdCdMdNcgdOcgdAdPdQdRdQdQdQdQdSdTdUdVaqcydldWdXdXdYcycyacdZeaalebecedacagdsdt
+aaaaaaaaaaaaeeefegbXehbXbXbXddaJcgcgdCeieieiejekdAeldAcgdAcgemdCdCdCdCdCdCdCdAeneoepeqeresesetcycyaceueaalbsalevacacacad
+aaaaaaaaaaaaeeefegbXbXewexexeyaJcgcgdCeiezekejekeAdzeBdzeCcgcgcgcgcgeDcgcgcgdAcgcgcydleEaleFeGcycyaceHdFalbsaldGacacacad
+aaaaaaaaaaaaeIbXbXbXbXcqbXbXbXbKcgcgdCeJeiekeKekdAcgeLcgdAcgcgeMcgcgcgcgcgcgeNdjdjeOePeEesaleGcycyaceQdFaleReceSaceTdsdt
+aaaaaaaaaaaaaJbXbXbXbXcqbXeUeVaJdxcgdCeiekekejeWdAcgaqcgdAcgdBdCdCdCdCdCdCdCdAeXeYepeqereZalfacydDacdEfbalalalcZakagdsdt
+aaaaaaaaaaaaaKaJaJaJfcfdaJaJaJaJcgcgdCekekfeffekdAfgaqcgdAfhfifjfkfkfkfkdSdTdUflaqcydlfmfnfnfocycyaccXeaalfpalfqacfrdsdt
+aaaaaaaaaaaaaaaKfsftfufvfwfxfyaJcgcgdCdCdCdCdCdMfzcgcMcgdAcgfAdCdCdCdCdCdCdCdAcgaqcyfBfCfCfCfDcyfEaccXdFcGcEfFfGacacacad
+aaaaaaaaaaaaaaaaftfHfIftfJfKfLaJcgcgcgcgcgcgcgcgekcgaqcgfMdzdzdzdzdzdzdjdjdjdLcgaqfNcycycycydlfOfPaccXfQalcHacacacadaaaa
+aafRfRaaaaamaaaaaaaafSfTfUfufLaJcgfVcgcgcgcgfWcgfXfWaqcgfVcgcgcgfVcgcgcgcgfVcgcgaqacacfYacacfZacacacacgaacacadaaaaaaaaaa
+gbgbgbfRaaamaagcamaaaJaJaJaJgdaJaqaqaqaqaqaqaqaqgeaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqcGcGcGcGgfcFggghgigfdFgjacaaaaaaaaaaaa
+gbgbgbgbfRaaaaaaaaaagkglgmaJgngogpgqfsgrfuaJgbgbgbgbaqgsgsatgtgsguatgsgtgvgwgxgyaqgzcGalcGcGgAgBgBgBgBgCgDacaaaaaaaaaaaa
+gbgbgbgbgEaaaaaaaaaagFgGgGgHgIfHgIgpgJgIgpgKgbgbgbgbgbaqgsgLgMatgsgtatatatatatataqggcGcGgNcGgOcGgNcGcGcGgPacaaaaaaaaaaaa
+aaaagbfRgQaaaaaaaaaagRglgGaJfufugpfsgpfugpaJgbgbgbgSgbgbgbgsgTgsatatatatatatgUgVgWgXgXgXgXgXgYcGcGcGcHacacacaaaaaaaaaaaa
+aaaaaafRaaaaaaaagZfRaIaJaJaJaJaJgKgpaJgbgbgbgbgbgbgbgbgbgbgbgtgLatatgsatathaatataqcGcGhbhccGgNcGgNcGhdhehfacaaaaaaaaaaaa
+aaaaaaaaaaaaaaaafRfRfRgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbaqgsgLatathghhhhhhhiaqhjhkcGalcGcGcGcGcGachlhmadaaaaaaaaaaaa
+aaaaaaaaaaaaaahnfRfRfRgbgbgbgbgbgbgbgbgbgbgbgSgbgbgbgbgbgbgbgbaqaqaqaqaqaqaqaqaqaqacacacacacfYacacacacacadaaaaaaaaaaaaaa
+aaaaaaaaaaaafRfRfRfRgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfRfRaaaaaaaaaahoafhpachqalhracadaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaafRfRfRfRfRgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfRfRaaaaaaaaaaajagagakalhsaiadaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaafRfRfRfRfRgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfRfRaaaaaaaaaahtafagacahaiadaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaafRgbgbfRfRgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfRfRaaaaaaaaaacHacacacacadaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaagbgbgbfRfRfRgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaagbgbgbgbgbfRfRgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfRfRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaagbgbgbgbgbfRfRfRgbgbhugbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfRfRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaagbgbgbgbgbfRfRfRgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfRfRfRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaagbgbgbgbgbfRfRfRgbgbgbgbgbgbhvgbgbgbgbgbgbgbgbgbgbgbfRfRfRfRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaagbgbgbgbgbfRfRfRgbgbgbhvgbgbhvgbgbgbgbgbgbgbgbgbfRfRfRfRgbgbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaagbgbgbgbfRfRfRfRgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfRfRgbgbgbgbgbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaagbgbfRfRfRfRfRfRgbgbgbgbgbgbgbgbgbgbgbgbfRfRfRfRgbgbgbgbgbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaafRfRfRfRfRfRgbgbgbgbgbgbgbgbfRfRfRfRaaaaaagbgbgbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafRfRfRfRfRfRfRfRfRfRfRfRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
index 51daaeb0132..bbb347b642b 100644
--- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
+++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm
@@ -5,14 +5,14 @@
"ae" = (/obj/structure/closet/cardboard,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/toolbox/drone,/obj/item/weapon/storage/toolbox/drone,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"af" = (/obj/structure/closet/cardboard,/obj/item/stack/sheet/cardboard,/obj/item/stack/cable_coil,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/packageWrap,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"ag" = (/obj/structure/closet/cardboard,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/drinkingglasses,/obj/item/weapon/storage/box/zipties,/obj/item/weapon/switchblade,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
-"ah" = (/obj/structure/closet/cardboard,/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"ah" = (/obj/structure/closet/cardboard,/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"ai" = (/obj/structure/closet/cardboard,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/clothing/shoes/combat,/obj/item/clothing/shoes/combat,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
-"aj" = (/obj/structure/closet/cardboard,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/shovel,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"aj" = (/obj/structure/closet/cardboard,/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/shovel,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"ak" = (/obj/structure/closet/cardboard,/obj/item/device/flashlight/lantern,/obj/item/device/flashlight/lantern,/obj/item/device/flashlight/lantern,/obj/item/device/tape/random,/obj/item/device/tape/random,/obj/item/device/tape/random,/obj/item/weapon/storage/box/rxglasses,/obj/item/weapon/extinguisher,/obj/item/weapon/extinguisher,/obj/item/clothing/glasses/night,/obj/item/clothing/glasses/night,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"al" = (/obj/structure/closet/cardboard,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/matches,/obj/item/weapon/storage/box/bodybags,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"am" = (/obj/structure/closet/cardboard,/obj/item/weapon/kitchen/knife,/obj/item/weapon/kitchen/knife,/obj/item/weapon/cultivator,/obj/item/weapon/hatchet,/obj/item/weapon/kitchen/rollingpin,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"an" = (/obj/structure/closet/cardboard,/obj/item/weapon/defibrillator,/obj/item/weapon/storage/box/medipens,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
-"ao" = (/obj/structure/closet/cardboard,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"ao" = (/obj/structure/closet/cardboard,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/obj/item/ammo_box/c9mm,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"ap" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"aq" = (/obj/machinery/iv_drip,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"ar" = (/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
@@ -20,27 +20,27 @@
"at" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"au" = (/obj/machinery/door/airlock/highsecurity{name = "Bunker"},/turf/open/floor/plasteel,/area/ruin/unpowered)
"av" = (/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer,/area/ruin/unpowered)
-"aw" = (/obj/structure/mirror{pixel_x = 30},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/ruin/unpowered)
+"aw" = (/obj/structure/mirror{pixel_x = 30},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/ruin/unpowered)
"ax" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/drone,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"ay" = (/obj/structure/table,/obj/item/weapon/gun/projectile/automatic/wt550{pixel_x = -3; pixel_y = 6},/obj/item/weapon/gun/projectile/automatic/wt550{pixel_x = 2; pixel_y = 0},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
-"az" = (/obj/structure/table,/obj/item/weapon/storage/backpack/dufflebag/sec{contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgical_drapes,/obj/item/clothing/mask/surgical); desc = "A large dufflebag for holding extra supplies - this one has a material inlay with space for various sharp-looking tools."; name = "dufflebag"; pixel_y = 5},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"ay" = (/obj/structure/table,/obj/item/weapon/gun/projectile/automatic/wt550{pixel_x = -3;pixel_y = 6},/obj/item/weapon/gun/projectile/automatic/wt550{pixel_x = 2;pixel_y = 0},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"az" = (/obj/structure/table,/obj/item/weapon/storage/backpack/dufflebag/sec{contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgical_drapes,/obj/item/clothing/mask/surgical);desc = "A large dufflebag for holding extra supplies - this one has a material inlay with space for various sharp-looking tools.";name = "dufflebag";pixel_y = 5},/turf/open/floor/plasteel,/area/ruin/unpowered)
"aA" = (/obj/structure/table,/obj/item/device/radio{pixel_x = -4},/obj/item/device/radio,/obj/item/device/radio{pixel_x = 4},/turf/open/floor/plasteel,/area/ruin/unpowered)
-"aB" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/item/stack/rods{amount = 50},/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"aC" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/firstaid/brute,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"aD" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/firstaid/regular,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"aB" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/obj/item/stack/rods{amount = 50},/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/ruin/unpowered)
+"aC" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 4;pixel_y = 4},/obj/item/weapon/storage/firstaid/brute,/turf/open/floor/plasteel,/area/ruin/unpowered)
+"aD" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 4;pixel_y = 4},/obj/item/weapon/storage/firstaid/regular,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered)
"aE" = (/obj/structure/closet/crate/radiation,/turf/open/floor/plasteel,/area/ruin/unpowered)
"aF" = (/obj/structure/closet/cardboard,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
-"aG" = (/obj/structure/closet/cardboard,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"aG" = (/obj/structure/closet/cardboard,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"aH" = (/obj/structure/closet/cardboard,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/turf/open/floor/plasteel,/area/ruin/unpowered)
"aI" = (/obj/machinery/vending/clothing,/turf/open/floor/wood,/area/ruin/unpowered)
"aJ" = (/turf/open/floor/wood{icon_state = "wood-broken3"},/area/ruin/unpowered)
"aK" = (/obj/structure/bed,/turf/open/floor/wood,/area/ruin/unpowered)
"aL" = (/turf/open/floor/plasteel/freezer,/area/ruin/unpowered)
"aM" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/ruin/unpowered)
-"aN" = (/obj/structure/table,/obj/item/clothing/gloves/combat{pixel_x = -3; pixel_y = 4},/obj/item/clothing/gloves/combat{pixel_x = 3; pixel_y = -2},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"aN" = (/obj/structure/table,/obj/item/clothing/gloves/combat{pixel_x = -3;pixel_y = 4},/obj/item/clothing/gloves/combat{pixel_x = 3;pixel_y = -2},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"aO" = (/turf/open/floor/plasteel,/area/ruin/unpowered)
"aP" = (/obj/structure/table,/obj/item/device/mass_spectrometer/adv,/obj/item/device/mass_spectrometer/adv,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/stack/medical/gauze,/obj/item/stack/medical/gauze,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
-"aQ" = (/obj/structure/closet/radiation,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"aQ" = (/obj/structure/closet/radiation,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/ruin/unpowered)
"aR" = (/obj/structure/closet/cardboard,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/obj/item/weapon/reagent_containers/food/snacks/beans,/turf/open/floor/plasteel,/area/ruin/unpowered)
"aS" = (/obj/structure/closet/cardboard,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"aT" = (/obj/structure/closet/wardrobe/pink,/turf/open/floor/wood{icon_state = "wood-broken"},/area/ruin/unpowered)
@@ -48,7 +48,7 @@
"aV" = (/obj/structure/bed,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/ruin/unpowered)
"aW" = (/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel/freezer,/area/ruin/unpowered)
"aX" = (/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/unpowered)
-"aY" = (/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/pill_bottle/charcoal,/turf/open/floor/plasteel,/area/ruin/unpowered)
+"aY" = (/obj/machinery/light/small{dir = 8},/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 4;pixel_y = 4},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/pill_bottle/charcoal,/turf/open/floor/plasteel,/area/ruin/unpowered)
"aZ" = (/obj/structure/table,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare{pixel_y = 6},/obj/item/device/flashlight/flare,/obj/item/weapon/crowbar/red,/turf/open/floor/plasteel,/area/ruin/unpowered)
"ba" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel,/area/ruin/unpowered)
"bb" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/ruin/unpowered)
@@ -61,10 +61,10 @@
"bi" = (/obj/machinery/door/airlock/highsecurity{name = "Bunker"},/turf/open/floor/wood,/area/ruin/unpowered)
"bj" = (/obj/machinery/door/airlock/highsecurity{name = "Bunker"},/turf/open/floor/plasteel/freezer,/area/ruin/unpowered)
"bk" = (/obj/structure/fireaxecabinet{pixel_y = 30},/turf/open/floor/plasteel,/area/ruin/unpowered)
-"bl" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"bl" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"bm" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"bn" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
-"bo" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 4},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"bo" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 4},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"bp" = (/obj/machinery/door/airlock/highsecurity{name = "Bunker"},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"bq" = (/obj/machinery/processor{name = "processor"},/turf/open/floor/plasteel,/area/ruin/unpowered)
"br" = (/obj/structure/table,/obj/item/weapon/storage/box/matches,/turf/open/floor/plasteel,/area/ruin/unpowered)
@@ -73,14 +73,14 @@
"bu" = (/obj/machinery/light{dir = 1},/obj/machinery/hydroponics/constructable,/turf/open/floor/light,/area/ruin/unpowered)
"bv" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/light,/area/ruin/unpowered)
"bw" = (/obj/machinery/blackbox_recorder,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"bx" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/port_gen/pacman,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"by" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"bx" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/port_gen/pacman,/turf/open/floor/plasteel,/area/ruin/unpowered)
+"by" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";name = "power storage unit"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"bz" = (/obj/machinery/telecomms/relay/preset/telecomms,/turf/open/floor/plasteel,/area/ruin/unpowered)
"bA" = (/obj/machinery/light/small{dir = 1},/obj/structure/tank_dispenser/oxygen,/turf/open/floor/plasteel,/area/ruin/unpowered)
"bB" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/ruin/unpowered)
"bC" = (/obj/machinery/light,/obj/machinery/hydroponics/constructable,/turf/open/floor/light,/area/ruin/unpowered)
"bD" = (/obj/machinery/autolathe,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"bE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"bE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/power/terminal{icon_state = "term";dir = 1},/turf/open/floor/plasteel,/area/ruin/unpowered)
"bF" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"bG" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plasteel/bar,/area/ruin/unpowered)
"bH" = (/turf/open/floor/plasteel/bar,/area/ruin/unpowered)
@@ -88,9 +88,9 @@
"bJ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/beans,/turf/open/floor/plasteel/bar,/area/ruin/unpowered)
"bK" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/bar,/area/ruin/unpowered)
"bL" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"bM" = (/obj/machinery/power/apc{dir = 8; name = "Bunker APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
-"bN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered)
-"bO" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"bM" = (/obj/machinery/power/apc{dir = 8;name = "Bunker APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"bN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0;tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"bO" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8";tag = ""},/turf/open/floor/plasteel,/area/ruin/unpowered)
"bP" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"bQ" = (/obj/structure/table,/obj/item/weapon/kitchen/knife,/turf/open/floor/plasteel/bar,/area/ruin/unpowered)
"bR" = (/obj/structure/table,/turf/open/floor/plasteel/bar,/area/ruin/unpowered)
@@ -105,14 +105,14 @@
"ca" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"cb" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
"cc" = (/obj/structure/frame/computer,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"cd" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen{dir = 1; name = "Bunker Entrance"; network = list("Bunker1"); pixel_x = 0; pixel_y = 2},/turf/open/floor/plasteel,/area/ruin/unpowered)
-"ce" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "bunker1"; name = "Inner Doors"; pixel_y = 6},/obj/machinery/button/door{id = "bunker2"; name = "Outer Doors"; pixel_y = -4},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
-"cf" = (/obj/machinery/door/poddoor{id = "bunker1"; name = "Bunker Door"; tag = "inner"},/turf/open/floor/plating,/area/ruin/unpowered)
+"cd" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen{dir = 1;name = "Bunker Entrance";network = list("Bunker1");pixel_x = 0;pixel_y = 2},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"ce" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "bunker1";name = "Inner Doors";pixel_y = 6},/obj/machinery/button/door{id = "bunker2";name = "Outer Doors";pixel_y = -4},/turf/open/floor/plasteel/floorgrime,/area/ruin/unpowered)
+"cf" = (/obj/machinery/door/poddoor{id = "bunker1";name = "Bunker Door";tag = "inner"},/turf/open/floor/plating,/area/ruin/unpowered)
"cg" = (/turf/open/floor/plating,/area/ruin/unpowered)
"ch" = (/obj/machinery/camera{network = list("Bunker1")},/turf/open/floor/plating,/area/ruin/unpowered)
"ci" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/ruin/unpowered)
-"cj" = (/obj/machinery/door/poddoor{id = "bunker2"; name = "Bunker Door"; tag = "outer"},/turf/open/floor/plating,/area/ruin/unpowered)
-"ck" = (/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
+"cj" = (/obj/machinery/door/poddoor{id = "bunker2";name = "Bunker Door";tag = "outer"},/turf/open/floor/plating,/area/ruin/unpowered)
+"ck" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
diff --git a/_maps/RandomRuins/SpaceRuins/derelict2.dmm b/_maps/RandomRuins/SpaceRuins/derelict2.dmm
index bba3f61da0a..dd90813044e 100644
--- a/_maps/RandomRuins/SpaceRuins/derelict2.dmm
+++ b/_maps/RandomRuins/SpaceRuins/derelict2.dmm
@@ -1,21 +1,21 @@
"a" = (/turf/open/space,/area/space)
-"b" = (/obj/structure/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/turf/open/space,/area/space)
-"c" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/ruin/powered)
-"d" = (/obj/structure/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/open/space,/area/space)
-"e" = (/obj/structure/window/reinforced{tag = "icon-rwindow (EAST)"; icon_state = "rwindow"; dir = 4},/obj/structure/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/open/floor/plating,/area/ruin/powered)
-"f" = (/turf/closed/wall,/area/ruin/powered)
-"g" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered)
-"h" = (/obj/machinery/light/small{tag = "icon-bulb1 (NORTH)"; icon_state = "bulb1"; dir = 1},/turf/open/floor/plasteel,/area/ruin/powered)
-"i" = (/turf/open/floor/plasteel,/area/ruin/powered)
-"j" = (/obj/machinery/light/small{tag = "icon-bulb1 (EAST)"; icon_state = "bulb1"; dir = 4},/turf/open/floor/plasteel,/area/ruin/powered)
+"b" = (/obj/structure/window/reinforced{tag = "icon-rwindow (EAST)";icon_state = "rwindow";dir = 4},/turf/open/space,/area/space)
+"c" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/ruin/powered/dinner_for_two)
+"d" = (/obj/structure/window/reinforced{tag = "icon-rwindow (WEST)";icon_state = "rwindow";dir = 8},/turf/open/space,/area/space)
+"e" = (/obj/structure/window/reinforced{tag = "icon-rwindow (EAST)";icon_state = "rwindow";dir = 4},/obj/structure/window/reinforced{tag = "icon-rwindow (WEST)";icon_state = "rwindow";dir = 8},/turf/open/floor/plating,/area/ruin/powered/dinner_for_two)
+"f" = (/turf/closed/wall,/area/ruin/powered/dinner_for_two)
+"g" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered/dinner_for_two)
+"h" = (/obj/machinery/light/small{tag = "icon-bulb1 (NORTH)";icon_state = "bulb1";dir = 1},/turf/open/floor/plasteel,/area/ruin/powered/dinner_for_two)
+"i" = (/turf/open/floor/plasteel,/area/ruin/powered/dinner_for_two)
+"j" = (/obj/machinery/light/small{tag = "icon-bulb1 (EAST)";icon_state = "bulb1";dir = 4},/turf/open/floor/plasteel,/area/ruin/powered/dinner_for_two)
"k" = (/obj/structure/window/reinforced,/turf/open/space,/area/space)
-"l" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/open/floor/plating,/area/ruin/powered)
-"m" = (/obj/structure/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/obj/effect/decal/remains/human,/turf/open/floor/plasteel,/area/ruin/powered)
-"n" = (/obj/structure/table,/obj/item/candle{pixel_y = 5},/obj/item/trash/plate{pixel_x = 10},/obj/item/trash/plate{pixel_x = -10},/turf/open/floor/plasteel,/area/ruin/powered)
-"o" = (/obj/structure/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/obj/effect/decal/remains/human,/turf/open/floor/plasteel,/area/ruin/powered)
-"p" = (/obj/structure/window/reinforced{tag = "icon-rwindow (NORTH)"; icon_state = "rwindow"; dir = 1},/turf/open/space,/area/space)
-"q" = (/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/turf/open/floor/plasteel,/area/ruin/powered)
-"r" = (/obj/machinery/light/small,/turf/open/floor/plasteel,/area/ruin/powered)
+"l" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{tag = "icon-rwindow (NORTH)";icon_state = "rwindow";dir = 1},/turf/open/floor/plating,/area/ruin/powered/dinner_for_two)
+"m" = (/obj/structure/chair{tag = "icon-chair (EAST)";icon_state = "chair";dir = 4},/obj/effect/decal/remains/human,/turf/open/floor/plasteel,/area/ruin/powered/dinner_for_two)
+"n" = (/obj/structure/table,/obj/item/candle{pixel_y = 5},/obj/item/trash/plate{pixel_x = 10},/obj/item/trash/plate{pixel_x = -10},/turf/open/floor/plasteel,/area/ruin/powered/dinner_for_two)
+"o" = (/obj/structure/chair{tag = "icon-chair (WEST)";icon_state = "chair";dir = 8},/obj/effect/decal/remains/human,/turf/open/floor/plasteel,/area/ruin/powered/dinner_for_two)
+"p" = (/obj/structure/window/reinforced{tag = "icon-rwindow (NORTH)";icon_state = "rwindow";dir = 1},/turf/open/space,/area/space)
+"q" = (/obj/machinery/light/small{tag = "icon-bulb1 (WEST)";icon_state = "bulb1";dir = 8},/turf/open/floor/plasteel,/area/ruin/powered/dinner_for_two)
+"r" = (/obj/machinery/light/small,/turf/open/floor/plasteel,/area/ruin/powered/dinner_for_two)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
diff --git a/_maps/RandomRuins/SpaceRuins/derelict3.dmm b/_maps/RandomRuins/SpaceRuins/derelict3.dmm
index bdb55687bee..5e85e5a3b69 100644
--- a/_maps/RandomRuins/SpaceRuins/derelict3.dmm
+++ b/_maps/RandomRuins/SpaceRuins/derelict3.dmm
@@ -1,6 +1,6 @@
"a" = (/turf/open/space,/area/space)
-"b" = (/turf/open/floor/plating/airless,/area/space)
-"c" = (/turf/closed/wall,/area/space)
+"b" = (/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"c" = (/turf/closed/wall,/area/ruin/unpowered/no_grav)
"d" = (/obj/structure/lattice,/turf/open/space,/area/space)
"e" = (/obj/structure/lattice,/obj/structure/lattice,/turf/open/space,/area/space)
diff --git a/_maps/RandomRuins/SpaceRuins/derelict4.dmm b/_maps/RandomRuins/SpaceRuins/derelict4.dmm
index 8d538f40be7..8707019c847 100644
--- a/_maps/RandomRuins/SpaceRuins/derelict4.dmm
+++ b/_maps/RandomRuins/SpaceRuins/derelict4.dmm
@@ -1,63 +1,1782 @@
-"a" = (/turf/open/space,/area/space)
-"b" = (/turf/closed/mineral,/area/ruin/unpowered)
-"c" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered)
-"d" = (/turf/closed/mineral/random/high_chance,/area/ruin/unpowered)
-"e" = (/turf/closed/wall/shuttle/smooth,/area/ruin/unpowered)
-"f" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/plating/airless,/area/ruin/unpowered)
-"g" = (/turf/open/floor/plating/airless,/area/ruin/unpowered)
-"h" = (/turf/open/floor/plasteel/airless{icon_plating = "plating"; icon_regular_floor = "shuttlefloor"; icon_state = "shuttlefloor"},/area/ruin/unpowered)
-"i" = (/obj/structure/chair,/obj/structure/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/open/floor/plasteel/airless{icon_plating = "plating"; icon_regular_floor = "shuttlefloor"; icon_state = "shuttlefloor"},/area/ruin/unpowered)
-"j" = (/obj/structure/chair,/turf/open/floor/plasteel/airless{icon_plating = "plating"; icon_regular_floor = "shuttlefloor"; icon_state = "shuttlefloor"},/area/ruin/unpowered)
-"k" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/open/floor/plasteel/airless{icon_plating = "plating"; icon_regular_floor = "shuttlefloor"; icon_state = "shuttlefloor"},/area/ruin/unpowered)
-"l" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/open/floor/plating/airless,/area/ruin/unpowered)
-"m" = (/obj/item/weapon/shard,/turf/open/floor/plating/airless,/area/ruin/unpowered)
-"n" = (/obj/structure/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/open/floor/plating/airless,/area/ruin/unpowered)
-"o" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/ruin/unpowered)
-"p" = (/obj/structure/table,/turf/open/floor/plasteel/airless{icon_plating = "plating"; icon_regular_floor = "shuttlefloor"; icon_state = "shuttlefloor"},/area/ruin/unpowered)
-"q" = (/obj/item/weapon/shard,/obj/structure/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/open/floor/plasteel/airless{icon_plating = "plating"; icon_regular_floor = "shuttlefloor"; icon_state = "shuttlefloor"},/area/ruin/unpowered)
-"r" = (/obj/structure/chair{dir = 1},/obj/structure/window/reinforced{tag = "icon-rwindow (WEST)"; icon_state = "rwindow"; dir = 8},/turf/open/floor/plasteel/airless{icon_plating = "plating"; icon_regular_floor = "shuttlefloor"; icon_state = "shuttlefloor"},/area/ruin/unpowered)
-"s" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/airless,/area/ruin/unpowered)
-"t" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/ruin/unpowered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/space,
+/area/space)
+"b" = (
+/turf/closed/mineral,
+/area/ruin/unpowered)
+"c" = (
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered)
+"d" = (
+/turf/closed/mineral/random/high_chance,
+/area/ruin/unpowered)
+"e" = (
+/turf/closed/wall/mineral/titanium,
+/area/ruin/unpowered)
+"f" = (
+/obj/machinery/door/airlock/shuttle,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"g" = (
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"h" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/unpowered)
+"i" = (
+/obj/structure/chair,
+/obj/structure/window/reinforced{
+ tag = "icon-rwindow (WEST)";
+ icon_state = "rwindow";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/unpowered)
+"j" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/unpowered)
+"k" = (
+/obj/effect/spawner/lootdrop/crate_spawner,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/unpowered)
+"l" = (
+/obj/structure/shuttle/engine/propulsion{
+ tag = "icon-propulsion (WEST)";
+ icon_state = "propulsion";
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"m" = (
+/obj/item/weapon/shard,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"n" = (
+/obj/structure/chair{
+ tag = "icon-chair (WEST)";
+ icon_state = "chair";
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"o" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"p" = (
+/obj/structure/table,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/unpowered)
+"q" = (
+/obj/item/weapon/shard,
+/obj/structure/chair{
+ tag = "icon-chair (WEST)";
+ icon_state = "chair";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/unpowered)
+"r" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ tag = "icon-rwindow (WEST)";
+ icon_state = "rwindow";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/unpowered)
+"s" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"t" = (
+/obj/structure/girder,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaabbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaabbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaacccbbbbaaaaaaaaaaaaaaabaaaaaaaaaaaa
-aaaaacccbbbbaaaaaaaaaaaaaabbbaaaaaaaaaaa
-aaaaaaccbbaaaaaaaaaaaaaaaabbbaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaabbdddddbbaaabbbbaaaaaaaaaaa
-aaaaaaaaaaabbbbddddbbbbbbbbbbbaaaaaaaaaa
-aaaaaaaaaaacbbbbbdbbbbbbbbbbbbbaaaaaaaaa
-aaaaaaaaccccbbbbbbbbbccbbdddbbbaaaaaaaaa
-aaaaaaaacccccbddbbccccccccccbccaaaaaaaaa
-aaaaaaaaaccccbddbbeeeefeeeeecccaaaaaaaaa
-aaaaaaaaacccccbbbgggghhijkelcccaaaaaaaaa
-aaaaaaaaacccccbbbgmnhhhhhhelcccaaaaaaaaa
-aaaaaaaaaccccbbbbopqhhhhhgelcccaaaaaaaaa
-aaaaaaaaaccccbbdbbghhhhrsgelcaaaaaaaaaaa
-aaaaaaaaaabccbbbbbeeeefetgeecaaaaaaaaaaa
-aaaaaabaaabbbbbbbccccccccccccaaaaaaaaaaa
-aaaaaaaaaabbbbbbbbbbcccccccccaaaaaaaaaaa
-aaabaaaaaaaabbbbbbbbbccccaaaaaaaaaaaaaaa
-aaaaaaaaaaaaabdbbdddbccccaaaaaaaaaaaaaaa
-aaaaabbaaaaaaaaabdddbbbaaaaaaaaaaaaabaaa
-aaaabbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaabbaaaaaaaaaaaaaaaabbbaaaaaaaaaccbbaa
-aaaaaaaaaaaaaaaaaaaaadbbbbaaaaaaacccdbaa
-aaaaaaaaaaaaaaaaaaadbbbbccaaaaaaacbdbaaa
-aaaaaaaaaaaaaaaaaadbbbbcaaaaaaaaacbbbaaa
-aaaaaaaaaaaaaaaaaddbbcccaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaababbbbbcccaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaabbbbbccccaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaabbbbdcccaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaabbcccccaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaabccaaaaaaaaaaaaaaaaaaaaa
+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
+"}
+(2,1,1) = {"
+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
+"}
+(3,1,1) = {"
+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
+"}
+(4,1,1) = {"
+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
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+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
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+a
+a
+a
+b
+c
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+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
+"}
+(9,1,1) = {"
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+c
+c
+c
+c
+c
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+c
+c
+c
+c
+c
+c
+c
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+c
+c
+c
+c
+c
+c
+c
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+b
+c
+c
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+d
+d
+b
+b
+b
+b
+b
+b
+b
+b
+d
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+d
+d
+b
+b
+d
+d
+b
+b
+b
+d
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+d
+d
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+b
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+d
+d
+d
+b
+b
+b
+g
+g
+o
+b
+b
+c
+b
+b
+d
+d
+a
+a
+a
+a
+a
+d
+b
+b
+b
+c
+c
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+d
+d
+b
+b
+c
+e
+g
+m
+p
+g
+e
+c
+b
+b
+d
+d
+a
+a
+a
+a
+d
+d
+b
+b
+d
+c
+c
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+d
+b
+b
+b
+c
+e
+g
+n
+q
+h
+e
+c
+b
+b
+d
+d
+a
+a
+a
+d
+b
+b
+b
+c
+c
+c
+a
+"}
+(21,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+b
+c
+e
+g
+h
+h
+h
+e
+c
+c
+b
+b
+b
+a
+a
+a
+b
+b
+b
+b
+c
+c
+c
+a
+"}
+(22,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+c
+c
+e
+h
+h
+h
+h
+e
+c
+c
+c
+c
+b
+a
+a
+d
+b
+b
+c
+c
+c
+c
+c
+a
+"}
+(23,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+f
+h
+h
+h
+h
+f
+c
+c
+c
+c
+b
+a
+b
+b
+b
+b
+c
+c
+c
+a
+a
+a
+"}
+(24,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+c
+e
+i
+h
+h
+r
+e
+c
+c
+c
+c
+a
+a
+b
+b
+b
+c
+c
+c
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+a
+a
+b
+b
+b
+c
+e
+j
+h
+h
+s
+t
+c
+c
+c
+c
+a
+a
+b
+b
+c
+a
+a
+a
+a
+a
+a
+a
+"}
+(26,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+d
+c
+e
+k
+h
+g
+g
+g
+c
+c
+a
+a
+a
+a
+a
+b
+c
+a
+a
+a
+a
+a
+a
+a
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+b
+b
+b
+d
+c
+e
+e
+e
+e
+e
+e
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+a
+a
+a
+b
+b
+b
+d
+c
+e
+l
+l
+l
+l
+e
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(29,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+b
+b
+b
+b
+b
+c
+c
+c
+c
+c
+c
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(30,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+b
+c
+c
+c
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(31,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+b
+c
+c
+c
+c
+c
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(32,1,1) = {"
+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
+"}
+(33,1,1) = {"
+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
+"}
+(34,1,1) = {"
+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
+c
+c
+c
+a
+a
+a
+a
+a
+a
+"}
+(35,1,1) = {"
+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
+c
+c
+b
+b
+a
+a
+a
+a
+a
+a
+"}
+(36,1,1) = {"
+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
+c
+c
+d
+b
+a
+a
+a
+a
+a
+a
+"}
+(37,1,1) = {"
+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
+b
+a
+b
+d
+b
+b
+a
+a
+a
+a
+a
+a
+"}
+(38,1,1) = {"
+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
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(39,1,1) = {"
+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
+"}
+(40,1,1) = {"
+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/RandomRuins/SpaceRuins/derelict5.dmm b/_maps/RandomRuins/SpaceRuins/derelict5.dmm
index 00d3158f929..c64c449536e 100644
--- a/_maps/RandomRuins/SpaceRuins/derelict5.dmm
+++ b/_maps/RandomRuins/SpaceRuins/derelict5.dmm
@@ -1,6 +1,6 @@
"a" = (/turf/open/space,/area/space)
-"b" = (/turf/closed/mineral,/area/space)
-"c" = (/turf/open/floor/plating/asteroid/airless,/area/space)
+"b" = (/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"c" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
"d" = (/turf/closed/mineral,/area/ruin/unpowered)
"e" = (/turf/closed/wall,/area/ruin/unpowered)
"f" = (/turf/closed/wall/rust,/area/ruin/unpowered)
diff --git a/_maps/RandomRuins/SpaceRuins/derelict6.dmm b/_maps/RandomRuins/SpaceRuins/derelict6.dmm
new file mode 100644
index 00000000000..7942c5c92e9
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/derelict6.dmm
@@ -0,0 +1,1249 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/open/space,
+/area/space)
+"ab" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"ac" = (
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"ad" = (
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/obj/structure/girder,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"ae" = (
+/obj/item/stack/sheet/metal,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"af" = (
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"ag" = (
+/turf/open/floor/plasteel/airless,
+/area/ruin/unpowered)
+"ah" = (
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg1";
+ icon_state = "platingdmg1"
+ },
+/area/ruin/unpowered)
+"ai" = (
+/turf/closed/wall,
+/area/ruin/unpowered)
+"aj" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-pile (EAST)";
+ icon_state = "pile";
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"ak" = (
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/obj/item/stack/rods,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"al" = (
+/turf/open/floor/plating/airless,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"am" = (
+/obj/item/stack/rods,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"an" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube-broken";
+ status = 2
+ },
+/turf/open/floor/plasteel/airless,
+/area/ruin/unpowered)
+"ao" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"ap" = (
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"aq" = (
+/obj/structure/girder,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"ar" = (
+/obj/structure/girder,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"as" = (
+/turf/open/floor/plating/airless,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"at" = (
+/obj/item/stack/rods,
+/turf/open/floor/plasteel/airless,
+/area/ruin/unpowered)
+"au" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"av" = (
+/obj/effect/decal/remains/human,
+/turf/open/floor/plasteel/airless,
+/area/ruin/unpowered)
+"aw" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plasteel/airless,
+/area/ruin/unpowered)
+"ax" = (
+/mob/living/simple_animal/hostile/retaliate/ghost,
+/turf/open/floor/plasteel/airless,
+/area/ruin/unpowered)
+"ay" = (
+/turf/open/floor/plating/airless,
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"az" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-plating (WEST)";
+ name = "broken plating";
+ icon_state = "plating";
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/ruin/unpowered)
+"aA" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-pile (NORTH)";
+ icon_state = "pile";
+ dir = 1
+ },
+/turf/open/space,
+/area/space)
+"aB" = (
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg1";
+ icon_state = "platingdmg1"
+ },
+/area/ruin/unpowered)
+"aC" = (
+/obj/machinery/light{
+ icon_state = "tube-broken";
+ status = 2
+ },
+/turf/open/floor/plasteel/airless,
+/area/ruin/unpowered)
+"aD" = (
+/turf/open/space,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"aE" = (
+/obj/structure/door_assembly/door_assembly_mhatch{
+ name = "broken airlock"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"aF" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/airless/bar,
+/area/ruin/unpowered)
+"aG" = (
+/obj/structure/door_assembly/door_assembly_glass{
+ name = "broken airlock"
+ },
+/turf/open/floor/plasteel/airless/bar,
+/area/ruin/unpowered)
+"aH" = (
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"aI" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"aJ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/drinkingglasses,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"aK" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/machinery/light{
+ dir = 1;
+ icon_state = "tube-broken";
+ status = 2
+ },
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"aL" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"aM" = (
+/turf/open/floor/plasteel/airless/bar,
+/area/ruin/unpowered)
+"aN" = (
+/obj/item/trash/plate,
+/turf/open/floor/plasteel/airless/bar,
+/area/ruin/unpowered)
+"aO" = (
+/obj/item/chair,
+/turf/open/floor/plasteel/airless/bar,
+/area/ruin/unpowered)
+"aP" = (
+/obj/machinery/light{
+ dir = 1;
+ icon_state = "tube-broken";
+ status = 2
+ },
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"aQ" = (
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"aR" = (
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"aS" = (
+/obj/structure/table_frame,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"aT" = (
+/obj/item/weapon/kitchen/fork,
+/turf/open/floor/plasteel/airless/bar,
+/area/ruin/unpowered)
+"aU" = (
+/obj/structure/table/wood,
+/obj/item/weapon/shard,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"aV" = (
+/obj/structure/table/wood,
+/obj/item/trash/plate,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"aW" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"aX" = (
+/obj/item/chair/stool/bar,
+/turf/open/floor/plasteel/airless/bar,
+/area/ruin/unpowered)
+"aY" = (
+/turf/open/floor/plasteel/bar{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"aZ" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-pile (WEST)";
+ icon_state = "pile";
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"ba" = (
+/mob/living/simple_animal/hostile/retaliate/ghost,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"bb" = (
+/obj/item/weapon/reagent_containers/food/snacks/donkpocket,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"bc" = (
+/obj/structure/table,
+/obj/item/weapon/shard,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"bd" = (
+/obj/structure/chair/stool/bar,
+/turf/open/floor/plasteel/airless/bar,
+/area/ruin/unpowered)
+"be" = (
+/turf/open/floor/plasteel/bar{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg2";
+ icon_state = "platingdmg2"
+ },
+/area/ruin/unpowered)
+"bf" = (
+/obj/structure/lattice,
+/obj/item/stack/sheet/metal,
+/turf/open/space,
+/area/space)
+"bg" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg1";
+ icon_state = "platingdmg1"
+ },
+/area/ruin/unpowered)
+"bh" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube-broken";
+ status = 2
+ },
+/obj/structure/table_frame,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"bi" = (
+/obj/item/stack/sheet/metal,
+/obj/item/clothing/head/chefhat,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"bj" = (
+/obj/item/trash/plate,
+/obj/effect/decal/remains/human,
+/turf/open/floor/plasteel/airless/cafeteria,
+/area/ruin/unpowered)
+"bk" = (
+/obj/structure/table_frame/wood,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"bl" = (
+/obj/structure/girder,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg1";
+ icon_state = "platingdmg1"
+ },
+/area/ruin/unpowered)
+"bm" = (
+/obj/item/chair,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"bn" = (
+/obj/structure/lattice,
+/obj/item/weapon/shard,
+/turf/open/space,
+/area/space)
+"bo" = (
+/obj/item/stack/rods,
+/turf/open/space,
+/area/space)
+"bp" = (
+/obj/item/stack/sheet/metal,
+/obj/structure/girder,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg1";
+ icon_state = "platingdmg1"
+ },
+/area/ruin/unpowered)
+"bq" = (
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg3";
+ icon_state = "platingdmg3"
+ },
+/area/ruin/unpowered)
+"br" = (
+/obj/structure/girder,
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating/airless{
+ icon_plating = "platingdmg1";
+ icon_state = "platingdmg1"
+ },
+/area/ruin/unpowered)
+"bs" = (
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-singular (NORTH)";
+ icon_state = "singular";
+ dir = 1
+ },
+/turf/open/space,
+/area/space)
+"bt" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-side (NORTH)";
+ icon_state = "side";
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/ruin/unpowered)
+"bu" = (
+/obj/structure/fluff/broken_flooring,
+/turf/open/space,
+/area/ruin/unpowered)
+"bv" = (
+/obj/structure/fluff/broken_flooring{
+ icon_state = "pile"
+ },
+/turf/open/space,
+/area/space)
+"bw" = (
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-plating (NORTH)";
+ name = "broken plating";
+ icon_state = "plating";
+ dir = 1
+ },
+/turf/open/space,
+/area/ruin/unpowered)
+"bx" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-plating (EAST)";
+ name = "broken plating";
+ icon_state = "plating";
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/ruin/unpowered)
+"by" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-pile (EAST)";
+ icon_state = "pile";
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless,
+/area/ruin/unpowered)
+"bz" = (
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-plating (EAST)";
+ name = "broken plating";
+ icon_state = "plating";
+ dir = 4
+ },
+/turf/open/space,
+/area/ruin/unpowered)
+"bA" = (
+/obj/structure/fluff/broken_flooring{
+ icon_state = "singular"
+ },
+/turf/open/space,
+/area/space)
+"bB" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-singular (EAST)";
+ icon_state = "singular";
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bC" = (
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-corner (NORTH)";
+ icon_state = "corner";
+ dir = 1
+ },
+/turf/open/space,
+/area/ruin/unpowered)
+"bD" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-singular (EAST)";
+ icon_state = "singular";
+ dir = 4
+ },
+/turf/open/floor/plasteel/airless,
+/area/ruin/unpowered)
+"bE" = (
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-corner (WEST)";
+ icon_state = "corner";
+ dir = 8
+ },
+/turf/open/space,
+/area/ruin/unpowered)
+"bF" = (
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-side (EAST)";
+ icon_state = "side";
+ dir = 4
+ },
+/turf/open/space,
+/area/ruin/unpowered)
+"bG" = (
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-singular (EAST)";
+ icon_state = "singular";
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"bH" = (
+/obj/structure/fluff/broken_flooring{
+ icon_state = "plating";
+ name = "broken plating"
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/ruin/unpowered)
+"bI" = (
+/obj/structure/lattice,
+/obj/structure/fluff/broken_flooring{
+ tag = "icon-plating (WEST)";
+ name = "broken plating";
+ icon_state = "plating";
+ dir = 8
+ },
+/turf/open/space,
+/area/ruin/unpowered)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+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
+bA
+aa
+ab
+ab
+aa
+aa
+aa
+aj
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aZ
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+aa
+ab
+bC
+bE
+aa
+aa
+aa
+ab
+ab
+aa
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+aw
+ag
+ag
+aD
+bH
+aa
+ab
+ab
+aa
+ab
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+bw
+ad
+ag
+ag
+ag
+ah
+al
+al
+al
+al
+al
+al
+al
+al
+bH
+aa
+aa
+aa
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+ac
+at
+bD
+ag
+ai
+ai
+ai
+aq
+ah
+bg
+bl
+ah
+ay
+al
+ab
+aa
+aa
+aa
+"}
+(7,1,1) = {"
+aa
+aa
+aa
+ab
+ab
+ab
+al
+ai
+aw
+ag
+ag
+aE
+aH
+aQ
+aH
+ap
+ap
+ah
+ah
+al
+al
+aa
+aa
+aa
+aa
+"}
+(8,1,1) = {"
+aa
+aa
+aa
+ab
+ab
+ac
+am
+ai
+ag
+ag
+ag
+ai
+ai
+ai
+ai
+ai
+ai
+aq
+bp
+ah
+as
+ab
+aa
+aa
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+aa
+ab
+ab
+ac
+ah
+ai
+av
+ag
+aC
+ai
+aI
+aR
+aW
+aW
+bh
+ap
+ap
+br
+ab
+ab
+aa
+aa
+aa
+"}
+(10,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ac
+ah
+aq
+ag
+aw
+ag
+ai
+aJ
+aR
+aR
+aR
+bi
+ap
+bq
+bl
+ab
+ab
+aa
+aa
+aa
+"}
+(11,1,1) = {"
+aa
+aa
+aa
+aa
+bw
+af
+ai
+ai
+ag
+ax
+ag
+ai
+aK
+aR
+aR
+ba
+bj
+au
+ap
+aq
+ab
+ab
+bs
+aa
+aa
+"}
+(12,1,1) = {"
+aa
+aa
+bs
+ab
+ag
+ag
+an
+ag
+ag
+ag
+ag
+ai
+aL
+aR
+aR
+bb
+aR
+aR
+aR
+ai
+ab
+ab
+ab
+aa
+aa
+"}
+(13,1,1) = {"
+aa
+aa
+ab
+bt
+ag
+by
+ag
+ag
+ag
+ag
+ag
+ai
+ai
+aS
+aW
+bc
+aR
+aS
+ai
+ai
+ab
+ab
+ab
+aa
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+bu
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ai
+aM
+aM
+aX
+bd
+aM
+aX
+aM
+ai
+ab
+ab
+ab
+aa
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+ad
+ai
+ai
+ai
+ag
+ag
+ag
+aF
+aN
+aT
+ah
+aM
+aT
+au
+be
+ai
+ab
+aa
+aa
+aa
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+ab
+ac
+ap
+ao
+ai
+ag
+ag
+ag
+aG
+aO
+bI
+ab
+be
+ap
+ab
+au
+aq
+aa
+aa
+aa
+aa
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+ab
+bx
+ak
+ap
+ai
+ag
+ag
+ag
+ai
+aM
+aU
+aB
+ap
+bk
+bm
+az
+ab
+bo
+aa
+aa
+aa
+aa
+"}
+(18,1,1) = {"
+aa
+aa
+aa
+aa
+ae
+ac
+ap
+aq
+ag
+ag
+aC
+ai
+aM
+ap
+ap
+ap
+ab
+ac
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+bz
+ac
+ai
+ag
+ag
+ag
+ai
+aP
+ap
+ab
+be
+ac
+bn
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(20,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+ai
+ag
+ag
+ag
+ai
+ap
+aV
+aY
+ac
+ab
+ab
+aa
+aa
+aa
+aA
+aa
+aa
+aa
+"}
+(21,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+af
+ar
+ag
+ag
+ag
+ai
+au
+ap
+ac
+bf
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(22,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ac
+aw
+at
+ag
+ai
+ai
+ai
+aq
+ab
+aa
+bo
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(23,1,1) = {"
+aa
+aa
+aa
+bv
+aa
+aa
+aa
+aa
+bB
+ab
+bF
+ai
+ab
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(24,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ab
+ab
+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
+bG
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/emptyshell.dmm b/_maps/RandomRuins/SpaceRuins/emptyshell.dmm
index 6ca49fd22bc..e6d2316ce5c 100644
--- a/_maps/RandomRuins/SpaceRuins/emptyshell.dmm
+++ b/_maps/RandomRuins/SpaceRuins/emptyshell.dmm
@@ -1,31 +1,345 @@
-"a" = (/turf/open/space,/area/space)
-"b" = (/obj/structure/lattice,/turf/open/space,/area/space)
-"c" = (/turf/closed/wall/r_wall,/area/ruin/unpowered)
-"d" = (/turf/open/floor/plating,/area/ruin/unpowered)
-"e" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/open/floor/plating,/area/ruin/unpowered)
-"f" = (/obj/item/ammo_box/magazine/sniper_rounds,/turf/open/floor/plating,/area/ruin/unpowered)
-"g" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/ruin/unpowered)
-"h" = (/obj/item/stack/rods,/turf/open/floor/plating,/area/ruin/unpowered)
-"i" = (/turf/open/floor/plating/airless,/area/ruin/unpowered)
-"j" = (/obj/machinery/door/airlock,/turf/open/floor/plating,/area/ruin/unpowered)
-"k" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/ruin/unpowered)
-"l" = (/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/ruin/unpowered)
-"m" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/ruin/unpowered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/space,
+/area/space)
+"b" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"c" = (
+/turf/closed/wall/r_wall,
+/area/ruin/unpowered)
+"d" = (
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"e" = (
+/obj/effect/spawner/lootdrop/crate_spawner,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"f" = (
+/obj/item/ammo_box/magazine/sniper_rounds,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"g" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"h" = (
+/obj/item/stack/rods,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"i" = (
+/turf/open/floor/plating/airless,
+/area/ruin/unpowered)
+"j" = (
+/obj/machinery/door/airlock,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"k" = (
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"l" = (
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating,
+/area/ruin/unpowered)
+"m" = (
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 4;
+ name = "4maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/ruin/unpowered)
(1,1,1) = {"
-aaaaaaaaabaaaaaaa
-aaabbaaababaabaaa
-aaabccccccccccaba
-aabccccccccccccaa
-abacccdeddfdcccba
-abaccddddddgdccbb
-bbbdcdhddddddccbb
-aadijddhdgdddccaa
-aadijddkdddddccbb
-abbdcddddddhdccbb
-aaaccldeddmddccbb
-aaacccdddddecccaa
-aaaccccccccccccba
-aabaccccccccccaaa
-aaaabbaaaaaaaaaaa
+a
+a
+a
+a
+a
+a
+b
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+b
+b
+b
+a
+a
+b
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+b
+a
+a
+b
+i
+i
+b
+a
+a
+a
+b
+a
+"}
+(4,1,1) = {"
+a
+b
+b
+c
+c
+c
+i
+i
+i
+i
+c
+c
+c
+a
+a
+"}
+(5,1,1) = {"
+a
+b
+c
+c
+c
+c
+c
+j
+j
+c
+c
+c
+c
+c
+b
+"}
+(6,1,1) = {"
+a
+a
+c
+c
+c
+d
+d
+d
+d
+d
+l
+c
+c
+c
+b
+"}
+(7,1,1) = {"
+a
+a
+c
+c
+d
+d
+h
+d
+d
+d
+d
+d
+c
+c
+a
+"}
+(8,1,1) = {"
+a
+a
+c
+c
+e
+d
+d
+h
+k
+d
+e
+d
+c
+c
+a
+"}
+(9,1,1) = {"
+a
+b
+c
+c
+d
+d
+d
+d
+d
+d
+d
+d
+c
+c
+a
+"}
+(10,1,1) = {"
+b
+a
+c
+c
+d
+d
+d
+g
+d
+d
+d
+d
+c
+c
+a
+"}
+(11,1,1) = {"
+a
+b
+c
+c
+f
+d
+d
+d
+d
+d
+m
+d
+c
+c
+a
+"}
+(12,1,1) = {"
+a
+a
+c
+c
+d
+g
+d
+d
+d
+h
+d
+e
+c
+c
+a
+"}
+(13,1,1) = {"
+a
+a
+c
+c
+c
+d
+d
+d
+d
+d
+d
+c
+c
+c
+a
+"}
+(14,1,1) = {"
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+b
+a
+b
+b
+b
+a
+b
+b
+b
+a
+b
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+b
+b
+a
+b
+b
+b
+a
+a
+a
+a
"}
diff --git a/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm b/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm
index 7e5c0752bdd..290467dcc41 100644
--- a/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm
+++ b/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm
@@ -1,30 +1,30 @@
"a" = (/turf/open/space,/area/space)
"b" = (/obj/structure/lattice,/turf/open/space,/area/space)
"c" = (/turf/closed/wall,/area/ruin/unpowered)
-"d" = (/obj/machinery/light{dir = 1},/obj/structure/bed,/obj/effect/decal/remains/human,/turf/open/floor/plasteel{icon_state = "warndark"; dir = 8},/area/ruin/unpowered)
-"e" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/open/floor/plasteel{icon_state = "warndark"; dir = 4},/area/ruin/unpowered)
-"f" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1},/obj/structure/bed,/obj/effect/decal/remains/human,/turf/open/floor/plasteel{icon_state = "warndark"; dir = 8},/area/ruin/unpowered)
-"g" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1},/obj/structure/bed,/turf/open/floor/plasteel{icon_state = "warndark"; dir = 8},/area/ruin/unpowered)
-"h" = (/turf/open/floor/plasteel{icon_state = "warndark"; dir = 4},/area/ruin/unpowered)
-"i" = (/turf/open/floor/plasteel{icon_state = "warndark"; dir = 8},/area/ruin/unpowered)
-"j" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/machinery/atmospherics/components/unary/outlet_injector,/turf/open/floor/plasteel{icon_state = "warndark"; dir = 4},/area/ruin/unpowered)
-"k" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "warndark"; dir = 8},/area/ruin/unpowered)
-"l" = (/obj/machinery/atmospherics/components/unary/outlet_injector,/turf/open/floor/plasteel{icon_state = "warndark"; dir = 4},/area/ruin/unpowered)
+"d" = (/obj/machinery/light{dir = 1},/obj/structure/bed,/obj/effect/decal/remains/human,/turf/open/floor/plasteel/airless/darkwarning{dir = 8},/area/ruin/unpowered)
+"e" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/airless/darkwarning{dir = 4},/area/ruin/unpowered)
+"f" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1},/obj/structure/bed,/obj/effect/decal/remains/human,/turf/open/floor/plasteel/airless/darkwarning{dir = 8},/area/ruin/unpowered)
+"g" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1},/obj/structure/bed,/turf/open/floor/plasteel/airless/darkwarning{dir = 8},/area/ruin/unpowered)
+"h" = (/turf/open/floor/plasteel/airless/darkwarning{dir = 4},/area/ruin/unpowered)
+"i" = (/turf/open/floor/plasteel/airless/darkwarning{dir = 8},/area/ruin/unpowered)
+"j" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/atmospherics/components/unary/outlet_injector,/turf/open/floor/plasteel/airless/darkwarning{dir = 4},/area/ruin/unpowered)
+"k" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless/darkwarning{dir = 8},/area/ruin/unpowered)
+"l" = (/obj/machinery/atmospherics/components/unary/outlet_injector,/turf/open/floor/plasteel/airless/darkwarning{dir = 4},/area/ruin/unpowered)
"m" = (/obj/structure/closet/crate/freezer,/obj/item/stack/sheet/animalhide/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
"n" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/machinery/light{dir = 1},/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
"o" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/clothing/under/rank/prisoner,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/lizard,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"p" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel{dir = 1; icon_state = "blue"},/area/ruin/unpowered)
-"q" = (/obj/machinery/door/window/brigdoor/northleft,/obj/machinery/atmospherics/components/binary/pump{dir = 1},/turf/open/floor/plasteel{dir = 1; icon_state = "blue"},/area/ruin/unpowered)
+"p" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/ruin/unpowered)
+"q" = (/obj/machinery/door/window/brigdoor/northleft,/obj/machinery/atmospherics/components/binary/pump{dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/ruin/unpowered)
"r" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
"s" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"t" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Worn-out APC"; pixel_x = 1; pixel_y = 26},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"t" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/power/apc{cell_type = 2500;dir = 1;name = "Worn-out APC";pixel_x = 1;pixel_y = 26},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/ruin/unpowered)
"u" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered)
"v" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"w" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"w" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/ruin/unpowered)
"x" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
"y" = (/obj/structure/table/reinforced,/obj/item/weapon/kitchen/knife/butcher,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/reagent_containers/spray/pepper,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
"z" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"A" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/open/floor/plasteel,/area/ruin/unpowered)
+"A" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/ruin/unpowered)
"B" = (/turf/open/floor/plasteel,/area/ruin/unpowered)
"C" = (/obj/machinery/gibber,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
"D" = (/obj/structure/table/reinforced,/obj/item/clothing/suit/straight_jacket,/obj/item/weapon/reagent_containers/syringe/lethal,/obj/item/weapon/reagent_containers/syringe/lethal/choral,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
@@ -32,13 +32,13 @@
"F" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel,/area/ruin/unpowered)
"G" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel,/area/ruin/unpowered)
"H" = (/obj/machinery/door/airlock/security,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
-"I" = (/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = -4; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/bottle/chloralhydrate{name = "chloral hydrate bottle"},/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 6; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = 5; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/bottle/facid{name = "fluorosulfuric acid bottle"; pixel_x = -3; pixel_y = 6},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
+"I" = (/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = -4;pixel_y = 1},/obj/item/weapon/reagent_containers/glass/bottle/chloralhydrate{name = "chloral hydrate bottle"},/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 6;pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = 5;pixel_y = 1},/obj/item/weapon/reagent_containers/glass/bottle/facid{name = "fluorosulfuric acid bottle";pixel_x = -3;pixel_y = 6},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
"J" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/drone,/obj/item/weapon/melee/baton/cattleprod,/turf/open/floor/plasteel,/area/ruin/unpowered)
"K" = (/obj/structure/table,/obj/item/weapon/pen/red,/turf/open/floor/plasteel,/area/ruin/unpowered)
"L" = (/obj/structure/table,/obj/item/weapon/paper_bin,/turf/open/floor/plasteel,/area/ruin/unpowered)
"M" = (/obj/structure/table,/obj/item/weapon/storage/box/prisoner,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"N" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/obj/machinery/light,/obj/structure/table,/turf/open/floor/plasteel,/area/ruin/unpowered)
-"O" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{icon_state = "bot"; dir = 1},/area/ruin/unpowered)
+"N" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/light,/obj/structure/table,/turf/open/floor/plasteel,/area/ruin/unpowered)
+"O" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{icon_state = "bot";dir = 1},/area/ruin/unpowered)
"P" = (/obj/structure/table/reinforced,/obj/item/weapon/surgicaldrill,/obj/item/weapon/hemostat,/obj/item/weapon/scalpel,/obj/item/weapon/surgical_drapes,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
"Q" = (/obj/structure/table/optable,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
"R" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/bottle/mutagen,/obj/item/weapon/reagent_containers/glass/bottle/mutagen,/obj/item/weapon/razor,/turf/open/floor/plasteel{icon_state = "dark"},/area/ruin/unpowered)
diff --git a/_maps/RandomRuins/SpaceRuins/intactemptyship.dmm b/_maps/RandomRuins/SpaceRuins/intactemptyship.dmm
index 4246998d5f9..967ca026814 100644
--- a/_maps/RandomRuins/SpaceRuins/intactemptyship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/intactemptyship.dmm
@@ -1,43 +1,333 @@
-"a" = (/turf/open/space,/area/space)
-"b" = (/turf/closed/wall/shuttle{dir = 8; icon_state = "diagonalWall3"},/area/ruin/powered)
-"c" = (/turf/closed/wall/shuttle{icon_state = "wall3"},/area/ruin/powered)
-"d" = (/turf/closed/wall/shuttle{dir = 1; icon_state = "diagonalWall3"},/area/ruin/powered)
-"e" = (/obj/structure/shuttle/engine/propulsion{tag = "icon-propulsion (EAST)"; icon_state = "propulsion"; dir = 4},/turf/open/space,/area/ruin/powered)
-"f" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/shuttle/engine/heater{tag = "icon-heater (WEST)"; icon_state = "heater"; dir = 8},/turf/open/floor/plating,/area/ruin/powered)
-"g" = (/obj/structure/table/wood,/obj/item/clothing/under/shorts/black,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"h" = (/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"i" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"j" = (/obj/structure/closet,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"k" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"l" = (/obj/structure/table/wood,/obj/item/clothing/shoes/sandal,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"m" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"n" = (/obj/structure/table/wood,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"o" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"p" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/ruin/powered)
-"q" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered)
-"r" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"s" = (/obj/machinery/door/poddoor{id = "goonwizship1"},/obj/machinery/button/door{id = "goonwizship1"; name = "Strange Ship Door Button"; pixel_y = 32},/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"t" = (/obj/machinery/door/airlock/external,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"u" = (/obj/machinery/door/airlock/glass,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"v" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"w" = (/obj/structure/table/wood,/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"x" = (/obj/machinery/light,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"y" = (/mob/living/simple_animal/bot/medbot,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"z" = (/turf/closed/wall/shuttle{dir = 2; icon_state = "diagonalWall3"},/area/ruin/powered)
-"A" = (/obj/structure/chair,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
-"B" = (/turf/closed/wall/shuttle{dir = 4; icon_state = "diagonalWall3"},/area/ruin/powered)
-"C" = (/obj/machinery/light,/obj/structure/bed,/turf/open/floor/plasteel/shuttle/purple,/area/ruin/powered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/space,
+/area/space)
+"b" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/ruin/powered/authorship)
+"c" = (
+/turf/closed/wall/shuttle{
+ icon_state = "wall3"
+ },
+/area/ruin/powered/authorship)
+"d" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/ruin/powered/authorship)
+"e" = (
+/obj/structure/shuttle/engine/propulsion{
+ tag = "icon-propulsion (EAST)";
+ icon_state = "propulsion";
+ dir = 4
+ },
+/turf/open/space,
+/area/ruin/powered/authorship)
+"f" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/shuttle/engine/heater{
+ tag = "icon-heater (WEST)";
+ icon_state = "heater";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/ruin/powered/authorship)
+"g" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/shorts/black,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"h" = (
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"i" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"j" = (
+/obj/structure/closet,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"k" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"l" = (
+/obj/structure/table/wood,
+/obj/item/clothing/shoes/sandal,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"m" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"n" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"o" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"p" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/ruin/powered/authorship)
+"q" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/ruin/powered/authorship)
+"r" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"s" = (
+/obj/machinery/door/poddoor{
+ id = "goonwizship1"
+ },
+/obj/machinery/button/door{
+ id = "goonwizship1";
+ name = "Strange Ship Door Button";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"t" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"u" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"v" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"w" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"x" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"y" = (
+/mob/living/simple_animal/bot/medbot,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"z" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/ruin/powered/authorship)
+"A" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
+"B" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/ruin/powered/authorship)
+"C" = (
+/obj/machinery/light,
+/obj/structure/bed,
+/turf/open/floor/plasteel/shuttle/purple,
+/area/ruin/powered/authorship)
(1,1,1) = {"
-aabcccccdaaaa
-aefghijkcaaaa
-aeflhhhhccccd
-bccccmhhcmhjc
-cnophhhhqhhrc
-shhthhhhuhvwc
-chxpyhhhqhhnc
-zccccmhhcmhjc
-aefAhhhhccccB
-aefnnChjcaaaa
-aazcccccBaaaa
+a
+a
+a
+b
+c
+s
+c
+z
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+e
+e
+c
+n
+h
+h
+c
+e
+e
+a
+"}
+(3,1,1) = {"
+b
+f
+f
+c
+o
+h
+x
+c
+f
+f
+z
+"}
+(4,1,1) = {"
+c
+g
+l
+c
+p
+t
+p
+c
+A
+n
+c
+"}
+(5,1,1) = {"
+c
+h
+h
+c
+h
+h
+y
+c
+h
+n
+c
+"}
+(6,1,1) = {"
+c
+i
+h
+m
+h
+h
+h
+m
+h
+C
+c
+"}
+(7,1,1) = {"
+c
+j
+h
+h
+h
+h
+h
+h
+h
+h
+c
+"}
+(8,1,1) = {"
+c
+k
+h
+h
+h
+h
+h
+h
+h
+j
+c
+"}
+(9,1,1) = {"
+d
+c
+c
+c
+q
+u
+q
+c
+c
+c
+B
+"}
+(10,1,1) = {"
+a
+a
+c
+m
+h
+h
+h
+m
+c
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+c
+h
+h
+v
+h
+h
+c
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+c
+j
+r
+w
+n
+j
+c
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+d
+c
+c
+c
+c
+c
+B
+a
+a
"}
diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
new file mode 100644
index 00000000000..efbcfee9a2c
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm
@@ -0,0 +1,127 @@
+"a" = (/turf/open/space,/area/space)
+"b" = (/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"c" = (/turf/closed/wall/r_wall,/area/awaymission/listeningpost)
+"d" = (/turf/open/floor/plating,/area/awaymission/listeningpost)
+"e" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";name = "power storage unit"},/turf/open/floor/plating,/area/awaymission/listeningpost)
+"f" = (/obj/machinery/door/airlock,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"g" = (/turf/closed/wall,/area/awaymission/listeningpost)
+"h" = (/obj/structure/table,/obj/item/weapon/paper/monitorkey,/obj/item/device/radio/intercom{desc = "Talk through this. Evilly";freerange = 1;frequency = 1213;name = "Syndicate Intercom";pixel_x = 32;subspace_transmission = 1;syndie = 1},/obj/item/clothing/glasses/regular,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"i" = (/obj/structure/table,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"j" = (/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"k" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/awaymission/listeningpost)
+"l" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"m" = (/obj/machinery/computer/message_monitor,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"n" = (/obj/structure/chair{dir = 4},/mob/living/simple_animal/hostile/syndicate{desc = "A weary looking syndicate operative."},/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"o" = (/obj/structure/table,/obj/item/weapon/paper{info = "Nothing of interest to report.";name = "november report"},/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"p" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly";freerange = 1;frequency = 1213;name = "Syndicate Intercom";pixel_x = 32;subspace_transmission = 1;syndie = 1},/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"q" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/mask/gas,/obj/item/clothing/head/helmet/space/syndicate,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"r" = (/obj/machinery/door/airlock,/obj/structure/safe/floor,/obj/item/weapon/paper{info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451";name = "odd report"},/obj/item/weapon/gun/projectile/automatic/pistol,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"s" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"t" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"u" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"v" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"w" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"x" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/awaymission/listeningpost)
+"y" = (/obj/structure/disposalpipe/segment,/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"z" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel,/area/ruin/unpowered/no_grav)
+"A" = (/obj/structure/closet,/obj/item/clothing/gloves/boxing,/turf/open/floor/plasteel,/area/ruin/unpowered/no_grav)
+"B" = (/obj/structure/filingcabinet,/obj/item/weapon/paper{info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it.";name = "april report"},/obj/item/weapon/paper{info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment.";name = "may report"},/obj/item/weapon/paper{info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it.";name = "june report"},/obj/item/weapon/paper{info = "Nothing of interest to report.";name = "july report"},/obj/item/weapon/paper{info = "Nothing of interest to report.";name = "august report"},/obj/item/weapon/paper{info = "Nothing of interest to report.";name = "september report"},/obj/item/weapon/paper{info = "Nothing of interest to report.";name = "october report"},/obj/item/weapon/paper{info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160";name = "receipt"},/turf/open/floor/plasteel,/area/ruin/unpowered/no_grav)
+"C" = (/obj/structure/table,/obj/item/weapon/paper{info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us.";name = "mission briefing"},/turf/open/floor/plasteel,/area/ruin/unpowered/no_grav)
+"D" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/ruin/unpowered/no_grav)
+"E" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/ruin/unpowered/no_grav)
+"F" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"G" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/open/floor/plasteel,/area/ruin/unpowered/no_grav)
+"H" = (/turf/open/floor/plasteel/freezer,/area/ruin/unpowered/no_grav)
+"I" = (/obj/machinery/shower{icon_state = "shower";dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/unpowered/no_grav)
+"J" = (/obj/structure/toilet{icon_state = "toilet00";dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/unpowered/no_grav)
+"K" = (/turf/closed/mineral/clown,/area/ruin/unpowered/no_grav)
+"L" = (/turf/closed/wall/shuttle{icon_state = "wall3"},/area/ruin/unpowered/no_grav)
+"M" = (/turf/open/floor/plasteel/airless/circuit/gcircuit,/area/ruin/unpowered/no_grav)
+"N" = (/turf/closed/wall/r_wall,/area/ruin/unpowered/no_grav)
+"O" = (/turf/open/space,/area/ruin/unpowered/no_grav)
+"P" = (/turf/open/floor/plasteel,/area/ruin/unpowered/no_grav)
+"Q" = (/obj/machinery/door/airlock,/turf/open/floor/plasteel,/area/ruin/unpowered/no_grav)
+"R" = (/turf/closed/wall,/area/ruin/unpowered/no_grav)
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbaaaaaaaaaaaaabbbbbbbbbbaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbaaaaaabbbbbbbbbbbbbbbbaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbccccbbbbbaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbcdecbbbbbaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbNccfgccccaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbcchijjkddkaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbbbbbbbbbbbbbbbbbbcmnojjkddkaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbOlbbbbbbbbbbbbbbbbbbccpijjccccaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbllbbbbbbbbbbbbbbbbbbbcjjjqcbbbbaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbblbbbbbbbbbbbbbbbbccccrgggcbsttuaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbcvwgjjjxcbybbbbbbaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbNPPQPPPzNbybbbbbbba
+aaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbNABRCPDEEtFbbbbbaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbNNNNNGRNbbbbbbbbbaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbNHINbbbbbbbbbaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbNHJNbbbbbbbbbba
+aaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbNNNNbbbbbbbbbbb
+aaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
+aaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
+aaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
+aaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbba
+aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbba
+aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaa
+aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaa
+aaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbblllbbbbbbbbbbbbbbbbbbbbaaaaaa
+aaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbKKbbbbbbbllaaabbbbbbbbbbbbbbbbbaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbKbbKbbblllaaaabbbbbbbbbbbbbbaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbKbbbbbbbbbbbblaaaaabbbbbbbbbbbbbbaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbKKbbbbbbbbbbblaaaabbbbbbbbbbbbbaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbKKbbbbbbbbbbblaabbbbbbbbbbbbbbaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbKbbbbbbaabbbbbbbbbbbbbaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbabbbbbbbbbbbbaaaaaaaaaaaaaaaa
+aaaaaabbbbaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaa
+aaaaabbbbbbbaaaaaabbbbbbbbbbbbbbbbbbbbKKbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaa
+aaaabbbbbbbbbbbaaabbbbbbbbbbbbbbbbKbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaa
+aaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbKbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaa
+aaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaa
+aaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbKKbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaa
+aabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbblllllbbbbaaaaaaaaaaaaaaaaaa
+aabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbblaaaabbaaaaaaaaaaaaaaaaaaa
+aabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbllbaaaaaaaaaaaaaaaaaaaaaa
+aabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaa
+abbbbbbbbbbbbbbbbbbbbbbbbbbbbbLLLLLLLbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaa
+abbbbbbbbbbbbbbbbbbbbbbbbbbbbblMMMMMLbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaa
+abbbbbbbbbbbbbbbbbbbbbbbbbbbbbbMMMMMLbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaa
+bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbMMMMLbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaa
+bbbbbbbbbbbbbbbblbbbbbbbbbbbbbbMMMMMLbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaa
+bbbbbbbbbbbbbbbbllbbbbbbbbbbbbblMMMMLbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaa
+bbbbbbbbbbbbbbbaalbbbbbbbbbbbbllLLLLLbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaa
+bbbbbbbbbbbbbaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaa
+abbbbbbbbbbbaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaa
+aaaaabbbbbbaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaabbbbbbbbbblbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaabbbbbbbbllbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaabbbbbbbbalbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaabbbbbbbaalbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaabbbbaaabbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm
index b0c1f95d53f..893af75cac3 100644
--- a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm
+++ b/_maps/RandomRuins/SpaceRuins/mechtransport.dmm
@@ -1,68 +1,382 @@
-"a" = (/turf/open/space,/area/space)
-"b" = (/turf/closed/wall/shuttle{icon_state = "swall_s6"; dir = 2},/area/ruin/powered)
-"c" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered)
-"d" = (/turf/closed/wall/shuttle{icon_state = "swall_s10"; dir = 2},/area/ruin/powered)
-"e" = (/turf/closed/wall/shuttle{icon_state = "swall3"; dir = 2},/area/ruin/powered)
-"f" = (/obj/structure/closet/crate/secure/loot,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/shuttle,/area/ruin/powered)
-"g" = (/obj/structure/closet/crate/secure/loot,/turf/open/floor/plasteel/shuttle,/area/ruin/powered)
-"h" = (/obj/structure/table,/obj/machinery/button/door{id = "mechaship1"; name = "Mecha Cargo Ship Doors"},/turf/open/floor/plasteel/shuttle,/area/ruin/powered)
-"i" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/shuttle,/area/ruin/powered)
-"j" = (/obj/structure/frame/computer,/turf/open/floor/plasteel/shuttle,/area/ruin/powered)
-"k" = (/obj/effect/decal/cleanable/vomit/old,/turf/open/floor/plasteel/shuttle,/area/ruin/powered)
-"l" = (/obj/effect/decal/remains/human,/turf/open/floor/plasteel/shuttle,/area/ruin/powered)
-"m" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/shuttle,/area/ruin/powered)
-"n" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/shuttle,/area/ruin/powered)
-"o" = (/turf/closed/wall/shuttle{icon_state = "swall13"; dir = 2},/area/ruin/powered)
-"p" = (/obj/machinery/door/airlock/hatch{name = "Cockpit"; req_access_txt = "101"},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/ruin/powered)
-"q" = (/turf/closed/wall/shuttle{icon_state = "swall12"; dir = 2},/area/ruin/powered)
-"r" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/ruin/powered)
-"s" = (/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/ruin/powered)
-"t" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/ruin/powered)
-"u" = (/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/ruin/powered)
-"v" = (/obj/structure/mecha_wreckage/phazon,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"w" = (/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"x" = (/obj/structure/mecha_wreckage/ripley/firefighter,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"y" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"z" = (/obj/structure/mecha_wreckage/ripley,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"A" = (/obj/mecha/working/ripley,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"B" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"C" = (/obj/effect/decal/cleanable/robot_debris/up,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"D" = (/obj/machinery/door/poddoor{id = "mechaship1"; name = "Cargo Bay Door"},/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"E" = (/obj/effect/decal/cleanable/robot_debris,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"F" = (/obj/structure/mecha_wreckage/durand,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"G" = (/obj/item/stack/tile/plasteel,/turf/open/floor/plating/airless,/area/ruin/powered)
-"H" = (/turf/open/floor/plating/airless,/area/ruin/powered)
-"I" = (/obj/structure/lattice,/turf/open/space,/area/space)
-"J" = (/obj/item/stack/rods,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/ruin/powered)
-"K" = (/obj/effect/decal/cleanable/robot_debris/gib,/turf/open/floor/plating/airless,/area/ruin/powered)
-"L" = (/obj/effect/decal/cleanable/robot_debris,/obj/item/stack/tile/plasteel,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"M" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/ruin/powered)
-"N" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/ruin/powered)
-"O" = (/obj/structure/mecha_wreckage/odysseus,/turf/open/floor/plasteel/shuttle/yellow,/area/ruin/powered)
-"P" = (/obj/item/stack/sheet/metal,/turf/open/space,/area/space)
-"Q" = (/obj/structure/mecha_wreckage/gygax,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor3"},/area/ruin/powered)
-"R" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/space)
-"S" = (/obj/item/stack/rods,/turf/open/floor/plating/airless,/area/ruin/powered)
-"T" = (/turf/closed/wall/shuttle{icon_state = "swall14"; dir = 2},/area/ruin/powered)
-"U" = (/turf/closed/wall/shuttle{icon_state = "swall_s9"; dir = 2},/area/ruin/powered)
-"V" = (/obj/item/stack/rods,/turf/open/space,/area/space)
-"W" = (/turf/closed/wall/shuttle{icon_state = "swall15"; dir = 2},/area/ruin/powered)
-"X" = (/obj/structure/shuttle/engine/propulsion,/turf/open/space,/area/ruin/powered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/space,
+/area/space)
+"b" = (
+/turf/closed/wall/mineral/titanium/overspace,
+/area/ruin/powered)
+"c" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/ruin/powered)
+"d" = (
+/turf/closed/wall/shuttle{
+ icon_state = "swall_s10";
+ dir = 2
+ },
+/area/ruin/powered)
+"e" = (
+/turf/closed/wall/mineral/titanium,
+/area/ruin/powered)
+"f" = (
+/obj/structure/closet/crate/secure/loot,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"g" = (
+/obj/structure/closet/crate/secure/loot,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"h" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "mechaship1";
+ name = "Mecha Cargo Ship Doors"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"i" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"j" = (
+/obj/machinery/computer/shuttle,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"k" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"l" = (
+/obj/effect/decal/remains/human,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"m" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"n" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"o" = (
+/turf/closed/wall/shuttle{
+ icon_state = "swall13";
+ dir = 2
+ },
+/area/ruin/powered)
+"p" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Cockpit";
+ req_access_txt = "101"
+ },
+/turf/open/floor/mineral/titanium,
+/area/ruin/powered)
+"q" = (
+/turf/closed/wall/shuttle{
+ icon_state = "swall12";
+ dir = 2
+ },
+/area/ruin/powered)
+"r" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/mineral/titanium,
+/area/ruin/powered)
+"s" = (
+/turf/open/floor/mineral/titanium,
+/area/ruin/powered)
+"t" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/titanium,
+/area/ruin/powered)
+"u" = (
+/obj/effect/decal/cleanable/cobweb2,
+/turf/open/floor/mineral/titanium,
+/area/ruin/powered)
+"v" = (
+/obj/structure/mecha_wreckage/phazon,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"w" = (
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"x" = (
+/obj/structure/mecha_wreckage/ripley/firefighter,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"y" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"z" = (
+/obj/structure/mecha_wreckage/ripley,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"A" = (
+/obj/mecha/working/ripley,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"B" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"C" = (
+/obj/effect/decal/cleanable/robot_debris/up,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"D" = (
+/obj/machinery/door/poddoor{
+ id = "mechaship1";
+ name = "Cargo Bay Door"
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"E" = (
+/obj/effect/decal/cleanable/robot_debris,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"F" = (
+/obj/structure/mecha_wreckage/durand,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"G" = (
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/plating/airless,
+/area/ruin/powered)
+"H" = (
+/turf/open/floor/plating/airless,
+/area/ruin/powered)
+"I" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"J" = (
+/obj/machinery/computer/mecha,
+/turf/open/floor/mineral/titanium/blue,
+/area/ruin/powered)
+"K" = (
+/obj/effect/decal/cleanable/robot_debris/gib,
+/turf/open/floor/plating/airless,
+/area/ruin/powered)
+"L" = (
+/obj/effect/decal/cleanable/robot_debris,
+/obj/item/stack/tile/plasteel,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"M" = (
+/turf/open/floor/plating/airless{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/ruin/powered)
+"N" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg2"
+ },
+/area/ruin/powered)
+"O" = (
+/obj/structure/mecha_wreckage/odysseus,
+/turf/open/floor/mineral/titanium/yellow,
+/area/ruin/powered)
+"P" = (
+/obj/item/stack/sheet/metal,
+/turf/open/space,
+/area/space)
+"Q" = (
+/obj/structure/mecha_wreckage/gygax,
+/turf/open/floor/mineral/titanium,
+/area/ruin/powered)
+"R" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/space)
+"S" = (
+/obj/item/stack/rods,
+/turf/open/floor/plating/airless,
+/area/ruin/powered)
+"T" = (
+/turf/closed/wall/shuttle{
+ icon_state = "swall14";
+ dir = 2
+ },
+/area/ruin/powered)
+"U" = (
+/turf/closed/wall/shuttle{
+ icon_state = "swall_s9";
+ dir = 2
+ },
+/area/ruin/powered)
+"V" = (
+/obj/item/stack/rods,
+/turf/open/space,
+/area/space)
+"W" = (
+/turf/closed/wall/shuttle{
+ icon_state = "swall15";
+ dir = 2
+ },
+/area/ruin/powered)
+"X" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/space,
+/area/ruin/powered)
(1,1,1) = {"
-abcccccda
-aefghijea
-aeklmnjea
-bopqqqqod
-erststtue
-evwwxyzAe
-eBwCwzwyD
-eEFGwwwwD
-GHwFyHywD
-IJHwKLwBD
-MHNGOOwyD
-PIIHsHQse
-aRIPSHqTU
-aVaaIabWd
-aaaaaaXXX
+a
+a
+a
+b
+e
+e
+e
+e
+G
+I
+M
+P
+a
+a
+a
+"}
+(2,1,1) = {"
+b
+e
+e
+e
+r
+v
+B
+E
+H
+S
+H
+I
+R
+V
+a
+"}
+(3,1,1) = {"
+c
+f
+k
+p
+s
+w
+w
+F
+w
+H
+N
+I
+I
+a
+a
+"}
+(4,1,1) = {"
+c
+g
+l
+e
+t
+w
+C
+G
+F
+w
+G
+H
+P
+a
+a
+"}
+(5,1,1) = {"
+c
+h
+m
+e
+s
+x
+w
+w
+y
+K
+O
+s
+S
+I
+a
+"}
+(6,1,1) = {"
+c
+i
+n
+e
+t
+y
+z
+w
+H
+L
+O
+H
+H
+a
+a
+"}
+(7,1,1) = {"
+c
+j
+J
+e
+t
+z
+w
+w
+y
+w
+w
+Q
+e
+b
+X
+"}
+(8,1,1) = {"
+b
+e
+e
+e
+u
+A
+y
+w
+w
+B
+y
+s
+e
+e
+X
+"}
+(9,1,1) = {"
+a
+a
+a
+b
+e
+e
+D
+D
+D
+D
+D
+e
+b
+b
+X
"}
diff --git a/_maps/RandomRuins/SpaceRuins/miracle.dmm b/_maps/RandomRuins/SpaceRuins/miracle.dmm
new file mode 100644
index 00000000000..40a4e2b6ae0
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/miracle.dmm
@@ -0,0 +1,5 @@
+"a" = (/obj/item/weapon/storage/backpack/satchel/flat/secret{reward_all_of_these = list(/obj/item/weapon/gun/energy/pulse/prize)},/turf/open/floor/fakespace,/area/ruin/fakespace)
+
+(1,1,1) = {"
+a
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm
new file mode 100644
index 00000000000..de102b742ef
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm
@@ -0,0 +1,217 @@
+"aa" = (/turf/open/space,/area/space)
+"ab" = (/obj/structure/lattice,/turf/open/space,/area/space)
+"ac" = (/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"ad" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/space)
+"ae" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space)
+"af" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/space)
+"ag" = (/turf/closed/wall/r_wall,/area/tcommsat/chamber)
+"ah" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"ai" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space)
+"aj" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"ak" = (/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Worn-out APC"; pixel_x = 1; pixel_y = 26},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"al" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"am" = (/obj/item/weapon/stock_parts/cell,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"an" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"ao" = (/obj/item/weapon/coin/clown,/turf/open/floor/engine,/area/tcommsat/chamber)
+"ap" = (/obj/structure/bed,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aq" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"ar" = (/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/tcommsat/chamber)
+"as" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/tcommsat/chamber)
+"at" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space)
+"au" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"av" = (/obj/item/weapon/wrench,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"aw" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"ax" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space)
+"ay" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"az" = (/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aA" = (/obj/structure/table,/obj/item/weapon/paper,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aB" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blue,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aC" = (/obj/structure/frame/computer,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aD" = (/obj/structure/table,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aE" = (/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat{name = "Cuban Pete-Meat"},/turf/open/floor/engine,/area/tcommsat/chamber)
+"aF" = (/obj/structure/grille,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aG" = (/obj/structure/grille/broken,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aH" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"aI" = (/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"aJ" = (/obj/item/stack/cable_coil/cut{amount = 1},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"aK" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/closet,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"aL" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space)
+"aM" = (/obj/item/weapon/folder/yellow,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aN" = (/obj/structure/bed,/obj/effect/decal/remains/human,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aO" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/turf/open/space,/area/space)
+"aP" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/turf/open/space,/area/space)
+"aQ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"aR" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space)
+"aS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space)
+"aT" = (/obj/structure/window/reinforced,/turf/open/space,/area/space)
+"aU" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/tcommsat/chamber)
+"aV" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aW" = (/obj/item/weapon/paper/crumpled,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aX" = (/obj/item/weapon/reagent_containers/food/snacks/meat/slab/synthmeat{name = "Cuban Pete-Meat"},/obj/item/stack/spacecash,/turf/open/floor/engine,/area/tcommsat/chamber)
+"aY" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"aZ" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"ba" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bb" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bc" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bd" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"be" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bf" = (/obj/structure/door_assembly/door_assembly_hatch,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bg" = (/obj/item/weapon/cigbutt,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bh" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bi" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bj" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bk" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/chamber)
+"bm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille/broken,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bo" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bp" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bq" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space)
+"br" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/turf/open/space,/area/space)
+"bs" = (/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space)
+"bt" = (/obj/structure/table,/obj/item/device/radio/off,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bu" = (/obj/structure/chair,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bv" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bw" = (/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bx" = (/obj/machinery/door/airlock/hatch,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"by" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space)
+"bz" = (/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bA" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bC" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bD" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bE" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space)
+"bG" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/item/stack/rods,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bH" = (/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bI" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bJ" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/tcommsat/chamber)
+"bL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/chamber)
+"bM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/chamber)
+"bN" = (/obj/effect/decal/cleanable/blood,/obj/item/weapon/scalpel{pixel_y = 12},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bO" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/tcommsat/chamber)
+"bQ" = (/obj/structure/rack,/obj/item/weapon/circuitboard/computer/teleporter,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bR" = (/obj/item/device/radio/off,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/chamber)
+"bT" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bU" = (/obj/effect/decal/cleanable/blood,/obj/structure/chair,/obj/item/clothing/under/rank/centcom_officer,/obj/item/weapon/restraints/handcuffs,/obj/effect/decal/remains/human,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bV" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"bW" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bX" = (/obj/structure/door_assembly/door_assembly_mhatch,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"bY" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"bZ" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"ca" = (/obj/effect/decal/cleanable/blood,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"cb" = (/obj/structure/table,/obj/item/weapon/reagent_containers/syringe/lethal/choral,/obj/item/weapon/reagent_containers/syringe/lethal{pixel_y = 4},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"cc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/tcommsat/chamber)
+"cd" = (/obj/item/weapon/storage/toolbox/syndicate,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"ce" = (/obj/structure/table,/obj/item/device/electropack,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"cf" = (/obj/structure/table,/obj/item/weapon/hemostat,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"cg" = (/obj/structure/table,/obj/item/weapon/circular_saw,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"ch" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/chamber)
+"ci" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/item/stack/rods,/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"cj" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space)
+"ck" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space)
+"cl" = (/turf/open/floor/plasteel/airless/warning{dir = 9},/area/tcommsat/chamber)
+"cm" = (/turf/open/floor/plasteel/airless/warning/corner{dir = 4},/area/tcommsat/chamber)
+"cn" = (/turf/open/floor/plasteel/airless/warning{dir = 1},/area/tcommsat/chamber)
+"co" = (/turf/open/floor/plasteel/airless/warning{dir = 5},/area/tcommsat/chamber)
+"cp" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space,/area/space)
+"cq" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"cr" = (/obj/item/weapon/paper/crumpled,/turf/open/floor/plasteel/airless/warning{dir = 8},/area/tcommsat/chamber)
+"cs" = (/obj/item/stack/rods,/turf/open/floor/plasteel/airless,/area/tcommsat/chamber)
+"ct" = (/turf/open/floor/plasteel/airless/warning{dir = 4},/area/tcommsat/chamber)
+"cu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/airless/black,/area/tcommsat/chamber)
+"cv" = (/turf/open/floor/plasteel/airless/warning{dir = 10},/area/tcommsat/chamber)
+"cw" = (/obj/machinery/light/small,/obj/item/weapon/paper,/turf/open/floor/plasteel/airless/warning/corner{dir = 1},/area/tcommsat/chamber)
+"cx" = (/turf/open/floor/plasteel/airless/warning{dir = 6},/area/tcommsat/chamber)
+"cy" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/space,/area/space)
+"cz" = (/obj/structure/lattice,/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "medium"},/turf/open/space,/area/space)
+"cA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"cB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/chamber)
+"cC" = (/obj/structure/grille/broken,/turf/open/space,/area/space)
+"cD" = (/obj/machinery/door/airlock/hatch,/turf/open/floor/plasteel,/area/tcommsat/chamber)
+"cE" = (/turf/open/floor/plasteel/warning{dir = 9},/area/tcommsat/chamber)
+"cF" = (/turf/open/floor/plasteel/warning{dir = 1},/area/tcommsat/chamber)
+"cG" = (/turf/open/floor/plasteel/warning{dir = 5},/area/tcommsat/chamber)
+"cH" = (/turf/open/floor/plasteel/warning/corner{dir = 4},/area/tcommsat/chamber)
+"cI" = (/turf/open/floor/plasteel,/area/tcommsat/chamber)
+"cJ" = (/turf/open/floor/plasteel/warning/corner{dir = 8},/area/tcommsat/chamber)
+"cK" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/chamber)
+"cL" = (/obj/structure/sign/vacuum,/turf/closed/wall/r_wall,/area/tcommsat/chamber)
+"cM" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning{dir = 9},/area/tcommsat/chamber)
+"cN" = (/obj/item/weapon/paper/crumpled,/turf/open/floor/plasteel,/area/tcommsat/chamber)
+"cO" = (/obj/structure/closet/malf/suits,/turf/open/floor/plasteel,/area/tcommsat/chamber)
+"cP" = (/obj/structure/door_assembly/door_assembly_ext,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"cQ" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/tcommsat/chamber)
+"cR" = (/turf/open/floor/plasteel/warning{dir = 8},/area/tcommsat/chamber)
+"cS" = (/obj/item/weapon/crowbar,/turf/open/floor/plating/airless,/area/tcommsat/chamber)
+"cT" = (/obj/structure/closet/crate,/obj/item/clothing/glasses/night,/turf/open/floor/plasteel/warning{dir = 10},/area/tcommsat/chamber)
+"cU" = (/turf/open/floor/plasteel/warning/corner{dir = 1},/area/tcommsat/chamber)
+"cV" = (/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/open/floor/plasteel/warning{dir = 10},/area/tcommsat/chamber)
+"cW" = (/turf/open/floor/plasteel/warning{dir = 2},/area/tcommsat/chamber)
+"cX" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/warning{dir = 6},/area/tcommsat/chamber)
+"cY" = (/obj/structure/frame/computer,/turf/open/floor/plating,/area/tcommsat/chamber)
+"cZ" = (/obj/machinery/teleport/station,/turf/open/floor/plating,/area/tcommsat/chamber)
+"da" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/tcommsat/chamber)
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaababaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaababaaaaaaababaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacabaaaaaaacabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaabacaaaaaaaaacacabaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaabacaaaaaaaaabacabaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaabaaaaaaaaabababaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeababacacacacacacacababaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaeaaaaabaaaaacaaaaabaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeadadaaaaabadaeaeaeaeaeaeaeafaeadaeaeaeaeaeaeadabaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaeagahahacahagagagagagagagagagagagagagagagagagagahacababaaabaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaadaeagagagagagagagagagagagagagagagagagagagagagagagahacabababababaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaeagagagabaaaiajakalamanagagagagagagagagagaoagapaqarasacacabacahadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaeagagabababatajacauavawaxagayazaAaBaCaDagaEagaFaGazarasasacahagaeaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaeagagaaabaaaiaHaIaJaIaKaLagazaMazazazaCagaEagaNaFazazararagagagaeaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaadagagaaabaaaaaOaPaQaRaSaTaUaVazaWazazaCagaXagaFaFazaYaZbaagagagaeaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaeagagaaabaaaibbbcbdbcbdbebfazazbgazazagagagagbhbiazbgbjbkblblblbmbnboaaaaaaaaaa
+aaaaaaaaaaaaaaaaababadaeaeaeagagaaabaaaibpbqbrbsbsbsagazbtbuazazbvbwagagagagbxagagagagagagaeaeadabaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaabaeagagabababbybzaxagagagagagbAbBbCbCbDagbvagagagbybEbFabababagagaeaeaeaaaaaaaaaa
+aaaaaaababacacacacacababaaaeagagaaabaaaibGbFagacacacacacbHacacacacbwbwacagbybEaaaaabaaagagaeaeaaabaaaaaaaa
+ababababababababacacacacaaaeagagaaabaaaibIbFagacacbwbwacbwbwbwbwbwbwacacagbybJaLbKbLbMagagagaeabacababaaaa
+aaaaaaaaaaababababacacacaaaeagagaaabaaaabpbFagacbwbwbwbwbwacbwbNbwbwbwacagbybOaLbPazazbQagagaeaaabaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaacaaaeagagaaabaaaibEaLagacbwbwbwbwbwacbwbRbwbwbwacagbybEaTbSazazaDagagaeaaabaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaacacafagagabababbybpaxagacbwbwbwacbTbUacbVbwbwbwacagbybIbWbXazazbYagagafacabaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaacaaaeagagaaabaaaibpaLagacbwbwacbwbwbZcacbbwbwbwacagaibEbsccazcdazagagaeaaabaaaaaaaa
+aaaaaaaaaaaaabababacacacaaaeagagaaabaaaabEaaagacbwbwbwbwbwcecfcgbwbwacacagaabEaLbPazazaDagagaeaaacaaaaaaaa
+aaaaaaaaaaabababacacacacaaaeagagaaabaaaibpaLagacbwacbwbwbwbwbwbwbwbwbwacagaibEaLchbLbMagagagaeabacabababab
+aaaaaaabababababababababaaaeagagaaabaaaaciaLagacacacacacacacacacacacacacagaibJaLaaabaaagagaeaeaaabababaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaeaeagagabababbybOaxagagagagagagagagagagagagagagagbybEaxabababagahaeaeaeaaaaaaaaaa
+aaaaaaaaaaaaabababababadaeaeahagaaaaaaaibEcjckaTaaagclcmarcncmascoagaTaTaTcpbEaLaaabaaahabaeaeaeadabababaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaadacahaaaaaaaicqbdbcbcbcbxcrazazazazcsctbxbcbdbcbccuaLaaabaaacabadaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaabacabaaaaaaaabsbsbrbsbsagcvcwararazarcxagbsbsbscybsaaaaabaaabaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaababaaaaaaaaaaaaabaaagagagagagasahagagagagaaaaaaaaaaaaabaaaaaaaaabaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaababababczcAarazagazarazagazaCcBababababaaaaaaaaaaaaaaabcCaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagagazazazazazazaqazazagagaaaaaaaaaaaaaaaaaaabacaeaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacahagagagagagagagagagagcDagagagagagagagahacababaaaaaaaaacahaeaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacahagagagagagagagagagagcEcFcGagagagagacabababaaaaaaabababahagadaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaeadaeaeaeaeaeaeaeagagcHcIcJagagaeaeaeadaaaaaaaaaaaaabagagagaeaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadacacaeaeagagcKcIcIcIcIagagaeaeaaaaaaaaabacacahagagaeaeaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacagagcLcMcIcIcIcIcNcOagaeadaaaaaaaaaaababacagaeaeaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaccPaccQcRcIcIcIcIcIcIagaeaeaaaaaaaaaaabadaeaeaeaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacSacacagagcLcTcUcIcIcIcIcOagaeaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacaeaeagagcVcWcWcWcXagagaeaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabadadaeaeaeagagcYcZdaagagaeaeaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaeaeaeagagagagagaeaeaeadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaeaaaeaeaeafaeaeaeaaaeaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaabaaaaacaaaaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaabacabacacacabababaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabaaaaaaaaabababaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaabaaaaaaaaababaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaacaaaaaaaaaaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaabaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm b/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm
new file mode 100644
index 00000000000..4de656779ce
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm
@@ -0,0 +1,29 @@
+"a" = (/turf/open/space,/area/space)
+"b" = (/obj/structure/lattice,/turf/open/space,/area/ruin/unpowered/no_grav)
+"c" = (/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"d" = (/turf/closed/wall/r_wall,/area/ruin/unpowered/no_grav)
+"e" = (/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"f" = (/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/ruin/unpowered/no_grav)
+"g" = (/obj/machinery/light_construct/small{dir = 1},/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/ruin/unpowered/no_grav)
+"h" = (/obj/machinery/computer/teleporter,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"i" = (/obj/machinery/teleport/station,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"j" = (/obj/machinery/teleport/hub,/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"k" = (/obj/machinery/light_construct/small{dir = 4},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"l" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+"m" = (/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/ruin/unpowered/no_grav)
+"n" = (/obj/machinery/power/apc{dir = 0;name = "Worn-out APC";pixel_y = -24},/turf/open/floor/plasteel/airless,/area/ruin/unpowered/no_grav)
+
+(1,1,1) = {"
+aaaaaaaaaababbbbbaaba
+aaaaaaaaaabbbbbbbbbbb
+aaaaaaaaaababbbbbbbba
+aabbbbbbbbbbbbbbbbbaa
+bbbbbbbccccbbbbbbabbb
+abbbbdddcdddcccbaabbb
+aaaaddccefeccbbaaabaa
+aaaadgeeeeeedbaaaaaaa
+aaaadeehijekdbaaaaaaa
+aaaadlmceeefdaaaaaaaa
+aaaaddeneecddaaaaaaaa
+aaaaadddddccaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/RandomRuins/SpaceRuins/onehalf.dmm
index d5af9dd9789..5da29000490 100644
--- a/_maps/RandomRuins/SpaceRuins/onehalf.dmm
+++ b/_maps/RandomRuins/SpaceRuins/onehalf.dmm
@@ -47,13 +47,13 @@
"aU" = (/turf/open/floor/plasteel/airless{icon_state = "damaged1"},/area/ruin/onehalf/hallway)
"aV" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/ruin/onehalf/dorms_med)
"aW" = (/obj/machinery/door/airlock,/turf/open/floor/plasteel,/area/ruin/onehalf/dorms_med)
-"aX" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel{dir = 9; icon_state = "warning"},/area/ruin/onehalf/drone_bay)
-"aY" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Mining Drone Bay APC"; pixel_y = 24},/turf/open/floor/plasteel{dir = 1; icon_state = "warning"},/area/ruin/onehalf/drone_bay)
-"aZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 1; icon_state = "warning"},/area/ruin/onehalf/drone_bay)
-"ba" = (/obj/machinery/button/door{id = "onehalf_drone2int"; name = "Drone 2 Internal Hatch Override"; pixel_x = 8; pixel_y = 27},/obj/machinery/button/door{id = "onehalf_drone2ext"; name = "Drone 2 External Hatch Override"; pixel_x = 8; pixel_y = 37},/obj/machinery/button/door{id = "onehalf_drone1int"; name = "Drone 1 Internal Hatch Override"; pixel_x = -8; pixel_y = 27},/obj/machinery/button/door{id = "onehalf_drone1ext"; name = "Drone 1 External Hatch Override"; pixel_x = -8; pixel_y = 37},/turf/open/floor/plasteel{dir = 1; icon_state = "warning"},/area/ruin/onehalf/drone_bay)
-"bb" = (/turf/open/floor/plasteel{dir = 1; icon_state = "warning"},/area/ruin/onehalf/drone_bay)
-"bc" = (/obj/machinery/button/door{id = "onehalf_drone3int"; name = "Drone 3 Internal Hatch Override"; pixel_x = -8; pixel_y = 27},/obj/machinery/button/door{id = "onehalf_drone3ext"; name = "Drone 3 External Hatch Override"; pixel_x = -8; pixel_y = 37},/obj/machinery/button/door{id = "onehalf_drone4ext"; name = "Drone 4 External Hatch Override"; pixel_x = 8; pixel_y = 37},/obj/machinery/button/door{id = "onehalf_drone4int"; name = "Drone 4 Internal Hatch Override"; pixel_x = 8; pixel_y = 27},/turf/open/floor/plasteel{dir = 1; icon_state = "warning"},/area/ruin/onehalf/drone_bay)
-"bd" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 5; icon_state = "warning"},/area/ruin/onehalf/drone_bay)
+"aX" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 9},/area/ruin/onehalf/drone_bay)
+"aY" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Mining Drone Bay APC"; pixel_y = 24},/turf/open/floor/plasteel/warning{dir = 1},/area/ruin/onehalf/drone_bay)
+"aZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/warning{dir = 1},/area/ruin/onehalf/drone_bay)
+"ba" = (/obj/machinery/button/door{id = "onehalf_drone2int"; name = "Drone 2 Internal Hatch Override"; pixel_x = 8; pixel_y = 27},/obj/machinery/button/door{id = "onehalf_drone2ext"; name = "Drone 2 External Hatch Override"; pixel_x = 8; pixel_y = 37},/obj/machinery/button/door{id = "onehalf_drone1int"; name = "Drone 1 Internal Hatch Override"; pixel_x = -8; pixel_y = 27},/obj/machinery/button/door{id = "onehalf_drone1ext"; name = "Drone 1 External Hatch Override"; pixel_x = -8; pixel_y = 37},/turf/open/floor/plasteel/warning{dir = 1},/area/ruin/onehalf/drone_bay)
+"bb" = (/turf/open/floor/plasteel/warning{dir = 1},/area/ruin/onehalf/drone_bay)
+"bc" = (/obj/machinery/button/door{id = "onehalf_drone3int"; name = "Drone 3 Internal Hatch Override"; pixel_x = -8; pixel_y = 27},/obj/machinery/button/door{id = "onehalf_drone3ext"; name = "Drone 3 External Hatch Override"; pixel_x = -8; pixel_y = 37},/obj/machinery/button/door{id = "onehalf_drone4ext"; name = "Drone 4 External Hatch Override"; pixel_x = 8; pixel_y = 37},/obj/machinery/button/door{id = "onehalf_drone4int"; name = "Drone 4 Internal Hatch Override"; pixel_x = 8; pixel_y = 27},/turf/open/floor/plasteel/warning{dir = 1},/area/ruin/onehalf/drone_bay)
+"bd" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/warning{dir = 5},/area/ruin/onehalf/drone_bay)
"be" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/onehalf/drone_bay)
"bf" = (/obj/item/stack/sheet/metal,/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg1"},/area/ruin/onehalf/hallway)
"bg" = (/obj/structure/disposalpipe/broken{tag = "icon-pipe-b (EAST)"; icon_state = "pipe-b"; dir = 4},/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/ruin/onehalf/hallway)
@@ -109,67 +109,63 @@
"ce" = (/obj/structure/frame/computer,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
"cf" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Bridge APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
"cg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/table/reinforced,/obj/item/stack/spacecash/c500{pixel_y = 8},/obj/item/stack/spacecash/c1000,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"ch" = (/obj/structure/girder/reinforced,/turf/open/floor/plating/airless,/area/space)
-"ci" = (/obj/structure/disposalpipe/junction{tag = "icon-pipe-j1 (NORTH)"; icon_state = "pipe-j1"; dir = 1},/obj/item/weapon/shard,/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/ruin/onehalf/hallway)
-"cj" = (/obj/structure/lattice,/obj/structure/disposalpipe/broken{tag = "icon-pipe-b (EAST)"; icon_state = "pipe-b"; dir = 4},/obj/structure/disposalpipe/broken{tag = "icon-pipe-b (WEST)"; icon_state = "pipe-b"; dir = 8},/obj/item/stack/rods,/turf/open/space,/area/ruin/onehalf/hallway)
-"ck" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/shard{icon_state = "small"},/turf/open/space,/area/space)
-"cl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
-"cm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{amount = 12},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cn" = (/obj/structure/chair/office{dir = 8},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"co" = (/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cp" = (/obj/structure/chair/office{tag = "icon-chair (NORTH)"; icon_state = "chair"; dir = 1},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/table/reinforced,/obj/item/weapon/lighter,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
-"cs" = (/obj/item/stack/rods,/turf/open/space,/area/space)
-"ct" = (/turf/open/floor/plating/airless,/area/space)
-"cu" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/lattice,/turf/open/space,/area/space)
-"cv" = (/obj/structure/lattice,/obj/item/weapon/shard{icon_state = "medium"},/turf/open/space,/area/ruin/onehalf/hallway)
-"cw" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/ruin/onehalf/hallway)
-"cx" = (/obj/structure/girder/reinforced,/turf/open/floor/plating/airless,/area/ruin/onehalf/bridge)
-"cy" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cz" = (/obj/item/stack/tile/plasteel,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cA" = (/obj/machinery/power/solar_control,/obj/structure/cable,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
-"cC" = (/obj/item/stack/tile/wood,/turf/open/space,/area/space)
-"cD" = (/turf/open/space,/area/ruin/onehalf/hallway)
-"cE" = (/obj/structure/lattice,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/space,/area/ruin/onehalf/hallway)
-"cF" = (/obj/structure/lattice,/obj/structure/disposalpipe/broken{tag = "icon-pipe-b (WEST)"; icon_state = "pipe-b"; dir = 8},/obj/structure/disposalpipe/broken{tag = "icon-pipe-b (NORTH)"; icon_state = "pipe-b"; dir = 1},/turf/open/space,/area/ruin/onehalf/hallway)
-"cG" = (/obj/machinery/door/airlock/glass_command{name = "Bridge"},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cH" = (/obj/machinery/light/small,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cI" = (/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/obj/machinery/door/airlock/glass_command{name = "Bridge"},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cJ" = (/obj/item/weapon/crowbar/red,/obj/item/device/multitool,/turf/open/floor/plating,/area/ruin/onehalf/bridge)
-"cK" = (/obj/structure/safe/floor,/obj/item/weapon/tank/internals/oxygen/red,/obj/item/clothing/mask/gas/syndicate,/obj/item/clothing/suit/space/hardsuit/syndi,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/folder/syndicate/mining,/turf/open/floor/plating,/area/ruin/onehalf/bridge)
-"cL" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cM" = (/obj/structure/lattice,/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/space,/area/ruin/onehalf/hallway)
-"cN" = (/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/ruin/onehalf/hallway)
-"cO" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/sovietsoda,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cP" = (/obj/item/stack/sheet/plasteel,/turf/open/space,/area/space)
-"cQ" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/space,/area/ruin/onehalf/hallway)
-"cR" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/ruin/onehalf/hallway)
-"cS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/onehalf/hallway)
-"cT" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cU" = (/obj/structure/chair/office,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cV" = (/obj/machinery/button/door{id = "bridge_onehalf"; name = "Bridge Blast Door"; pixel_x = 32; pixel_y = 5},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cW" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"cX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
-"cY" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/space,/area/space)
-"cZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/ruin/onehalf/hallway)
-"da" = (/obj/structure/table/reinforced,/obj/item/device/flashlight,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"db" = (/obj/structure/table/reinforced,/obj/item/weapon/ore/bluespace_crystal,/obj/item/weapon/coin/plasma,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"dc" = (/obj/structure/closet/firecloset/full,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"dd" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
-"de" = (/obj/structure/girder/reinforced,/obj/item/stack/sheet/plasteel,/turf/open/floor/plating/airless,/area/space)
-"df" = (/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/space)
-"dg" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg1"},/area/ruin/onehalf/hallway)
-"dh" = (/obj/structure/grille,/obj/item/weapon/shard,/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/ruin/onehalf/hallway)
-"di" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
-"dj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
-"dk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
-"dl" = (/obj/structure/lattice,/obj/item/stack/sheet/plasteel,/turf/open/space,/area/space)
-"dm" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/shard{icon_state = "medium"},/turf/open/space,/area/space)
-"dn" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/stack/rods,/turf/open/space,/area/space)
-"do" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/space,/area/space)
-"dp" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/space,/area/space)
+"ch" = (/obj/structure/disposalpipe/junction{tag = "icon-pipe-j1 (NORTH)"; icon_state = "pipe-j1"; dir = 1},/obj/item/weapon/shard,/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/ruin/onehalf/hallway)
+"ci" = (/obj/structure/lattice,/obj/structure/disposalpipe/broken{tag = "icon-pipe-b (EAST)"; icon_state = "pipe-b"; dir = 4},/obj/structure/disposalpipe/broken{tag = "icon-pipe-b (WEST)"; icon_state = "pipe-b"; dir = 8},/obj/item/stack/rods,/turf/open/space,/area/ruin/onehalf/hallway)
+"cj" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/shard{icon_state = "small"},/turf/open/space,/area/space)
+"ck" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
+"cl" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{amount = 12},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cm" = (/obj/structure/chair/office{dir = 8},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cn" = (/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"co" = (/obj/structure/chair/office{tag = "icon-chair (NORTH)"; icon_state = "chair"; dir = 1},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/table/reinforced,/obj/item/weapon/lighter,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
+"cr" = (/obj/item/stack/rods,/turf/open/space,/area/space)
+"cs" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/lattice,/turf/open/space,/area/space)
+"ct" = (/obj/structure/lattice,/obj/item/weapon/shard{icon_state = "medium"},/turf/open/space,/area/ruin/onehalf/hallway)
+"cu" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/ruin/onehalf/hallway)
+"cv" = (/obj/structure/girder/reinforced,/turf/open/floor/plating/airless,/area/ruin/onehalf/bridge)
+"cw" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cx" = (/obj/item/stack/tile/plasteel,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cy" = (/obj/machinery/power/solar_control,/obj/structure/cable,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
+"cA" = (/obj/item/stack/tile/wood,/turf/open/space,/area/space)
+"cB" = (/turf/open/space,/area/ruin/onehalf/hallway)
+"cC" = (/obj/structure/lattice,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/space,/area/ruin/onehalf/hallway)
+"cD" = (/obj/structure/lattice,/obj/structure/disposalpipe/broken{tag = "icon-pipe-b (WEST)"; icon_state = "pipe-b"; dir = 8},/obj/structure/disposalpipe/broken{tag = "icon-pipe-b (NORTH)"; icon_state = "pipe-b"; dir = 1},/turf/open/space,/area/ruin/onehalf/hallway)
+"cE" = (/obj/machinery/door/airlock/glass_command{name = "Bridge"},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cF" = (/obj/machinery/light/small,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cG" = (/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/obj/machinery/door/airlock/glass_command{name = "Bridge"},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cH" = (/obj/item/weapon/crowbar/red,/obj/item/device/multitool,/turf/open/floor/plating,/area/ruin/onehalf/bridge)
+"cI" = (/obj/structure/safe/floor,/obj/item/weapon/tank/internals/oxygen/red,/obj/item/clothing/mask/gas/syndicate,/obj/item/clothing/suit/space/hardsuit/syndi,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/folder/syndicate/mining,/turf/open/floor/plating,/area/ruin/onehalf/bridge)
+"cJ" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cK" = (/obj/structure/lattice,/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/space,/area/ruin/onehalf/hallway)
+"cL" = (/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg2"},/area/ruin/onehalf/hallway)
+"cM" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/sovietsoda,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cN" = (/obj/item/stack/sheet/plasteel,/turf/open/space,/area/space)
+"cO" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/space,/area/ruin/onehalf/hallway)
+"cP" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/ruin/onehalf/hallway)
+"cQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/onehalf/hallway)
+"cR" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cS" = (/obj/structure/chair/office,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cT" = (/obj/machinery/button/door{id = "bridge_onehalf"; name = "Bridge Blast Door"; pixel_x = 32; pixel_y = 5},/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cU" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
+"cW" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/space,/area/space)
+"cX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/ruin/onehalf/hallway)
+"cY" = (/obj/structure/table/reinforced,/obj/item/device/flashlight,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"cZ" = (/obj/structure/table/reinforced,/obj/item/weapon/ore/bluespace_crystal,/obj/item/weapon/coin/plasma,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"da" = (/obj/structure/closet/firecloset/full,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"db" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/ruin/onehalf/bridge)
+"dc" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless{broken = 1; icon_state = "platingdmg1"},/area/ruin/onehalf/hallway)
+"dd" = (/obj/structure/grille,/obj/item/weapon/shard,/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/ruin/onehalf/hallway)
+"de" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
+"df" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
+"dg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge_onehalf"; name = "bridge blast door"},/turf/open/floor/plating,/area/ruin/onehalf/bridge)
+"dh" = (/obj/structure/lattice,/obj/item/stack/sheet/plasteel,/turf/open/space,/area/space)
+"di" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/shard{icon_state = "medium"},/turf/open/space,/area/space)
+"dj" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/stack/rods,/turf/open/space,/area/space)
+"dk" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/space,/area/space)
+"dl" = (/obj/item/stack/cable_coil/cut{amount = 2; dir = 2; icon_state = "coil_red2"},/turf/open/space,/area/space)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -183,13 +179,13 @@ aaaaawbfbgbhbibjbjbkbibiblbjbmbnbobpbqbpbqbpbqbpbqbpbrbsbtbubeaa
aaaaaabvbwbwbxbxbwbybxbxbzbAbBbCbpbpbDbEbDbpbDbEbFbGarbHbIbJbeaa
aaaaaabKajakbLbMbNbObPbQbRbSbTbUbUbUbUbUbUbUbUbUbUbUararbeararaa
aaaaaaaabVbWbKakbQbRajawbRbWbXbYaabZcacbcccdcecfcgbUawaaaaaaaaaa
-aaaaaaaaaaaaaaaachaaaabVaxaxcicjckclcmcncocpcococqcradaaaaaaaaaa
-aaaaaaaaaaaaaacsctcuaaaaajcvcwcxbUbUcycoczcocococAcBaiaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaawcCaacDcEcFcGcHcIcoczcJcKcocLcecBaiaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaacsawajcMcNbUbUbUcOcocococococecBaiaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaacPcCaxcQcRcSawbZcTcncocUcocVcWcXcYaaaaaaaaaa
-aaaaaaaaaaaaaaaaaacsaaaabRcZaJcSaabZdadbdccececoddbUaiaaaaaaaaaa
-aaaaaaaaaaaaaaaaaadeawdfbQdgdhbUbUbUbUdidjdjdjdkbUbUaiaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaadldmdnacacacacacdoacacacdoacacafaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaadpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaabQaaaabVaxaxchcicjckclcmcncocncncpcqadaaaaaaaaaa
+aaaaaaaaaaaaaacrajcsaaaaajctcucvbUbUcwcncxcncncncyczaiaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaawcAaacBcCcDcEcFcGcncxcHcIcncJceczaiaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaacrawajcKcLbUbUbUcMcncncncncnceczaiaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaacNcAaxcOcPcQawbZcRcmcncScncTcUcVcWaaaaaaaaaa
+aaaaaaaaaaaaaaaaaacraaaabRcXaJcQaabZcYcZdacececndbbUaiaaaaaaaaaa
+aaaaaaaaaaaaaaaaaabPawcLbQdcddbUbUbUbUdedfdfdfdgbUbUaiaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaadhdidjacacacacacdkacacacdkacacafaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaadlaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"}
diff --git a/_maps/RandomRuins/SpaceRuins/originalcontent.dmm b/_maps/RandomRuins/SpaceRuins/originalcontent.dmm
new file mode 100644
index 00000000000..e4eaf7ce8a1
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/originalcontent.dmm
@@ -0,0 +1,175 @@
+"aa" = (/turf/open/space,/area/space)
+"ab" = (/obj/structure/fluff/paper/corner,/turf/open/space,/area/space)
+"ac" = (/obj/structure/fluff/paper,/turf/open/space,/area/space)
+"ad" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/turf/open/space,/area/space)
+"ae" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/turf/open/space,/area/space)
+"af" = (/turf/closed/indestructible/paper,/area/ruin/powered)
+"ag" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHWEST)"; icon_state = "paper"; dir = 10},/turf/open/space,/area/space)
+"ah" = (/obj/structure/fluff/paper/corner,/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/turf/open/space,/area/space)
+"ai" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHEAST)"; icon_state = "paper"; dir = 6},/turf/open/space,/area/space)
+"aj" = (/obj/machinery/door/airlock/freezer{name = "airlock"; opacity = 0},/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ak" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTHWEST)"; icon_state = "paper"; dir = 9},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"al" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"am" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTHEAST)"; icon_state = "paper"; dir = 5},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"an" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ao" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (EAST)"; icon_state = "papercorner"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ap" = (/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aq" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ar" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"as" = (/obj/item/weapon/paper/crumpled{desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"at" = (/mob/living/simple_animal/hostile/stickman,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"au" = (/obj/structure/fluff/paper/stack{tag = "icon-paperstack (EAST)"; icon_state = "paperstack"; dir = 4},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"av" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (EAST)"; icon_state = "papercorner"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aw" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/turf/open/space,/area/space)
+"ax" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ay" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHWEST)"; icon_state = "paper"; dir = 10},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"az" = (/obj/structure/fluff/paper,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aA" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aB" = (/obj/structure/fluff/paper/stack,/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTH)"; icon_state = "paperstack"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aC" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTHEAST)"; icon_state = "paper"; dir = 5},/obj/structure/fluff/paper{tag = "icon-paper (NORTHWEST)"; icon_state = "paper"; dir = 9},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aD" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/obj/structure/fluff/paper/corner,/mob/living/simple_animal/hostile/stickman,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aE" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aF" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/barricade/wooden,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aG" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHWEST)"; icon_state = "paper"; dir = 10},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/obj/structure/barricade/wooden,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aH" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/obj/structure/fluff/paper{tag = "icon-paper (NORTHEAST)"; icon_state = "paper"; dir = 5},/obj/structure/barricade/wooden,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aI" = (/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTH)"; icon_state = "paperstack"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aJ" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/obj/structure/fluff/paper/corner,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aK" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/structure/fluff/paper,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aL" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/mob/living/simple_animal/hostile/stickman,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aM" = (/obj/structure/fluff/paper/stack{tag = "icon-paperstack (SOUTHWEST)"; icon_state = "paperstack"; dir = 10},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aN" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aO" = (/obj/structure/fluff/paper,/mob/living/simple_animal/hostile/stickman/dog,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aP" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aQ" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHWEST)"; icon_state = "paper"; dir = 10},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aR" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aS" = (/obj/structure/fluff/paper/corner,/mob/living/simple_animal/hostile/stickman/dog,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aT" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHEAST)"; icon_state = "paper"; dir = 6},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aU" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/obj/structure/fluff/paper,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aV" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHEAST)"; icon_state = "paper"; dir = 6},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (EAST)"; icon_state = "papercorner"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aW" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/structure/fluff/paper/stack,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aX" = (/obj/structure/fluff/paper/stack,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aY" = (/obj/structure/fluff/paper/corner,/obj/structure/fluff/paper/corner{tag = "icon-papercorner (EAST)"; icon_state = "papercorner"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"aZ" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ba" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/mob/living/simple_animal/hostile/stickman/dog,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bb" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bc" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTHWEST)"; icon_state = "paper"; dir = 9},/turf/open/space,/area/space)
+"bd" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/turf/open/space,/area/space)
+"be" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (EAST)"; icon_state = "papercorner"; dir = 4},/turf/open/space,/area/space)
+"bf" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTHWEST)"; icon_state = "paperstack"; dir = 9},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bg" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/item/toy/crayon/yellow,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bh" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/item/toy/crayon/red,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bi" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/structure/fluff/paper/corner,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bj" = (/obj/structure/fluff/paper,/obj/structure/fluff/paper/corner{tag = "icon-papercorner (EAST)"; icon_state = "papercorner"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bk" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/mob/living/simple_animal/hostile/stickman,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bl" = (/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTHWEST)"; icon_state = "paperstack"; dir = 9},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bm" = (/obj/structure/fluff/paper,/mob/living/simple_animal/hostile/stickman,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bn" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTHWEST)"; icon_state = "paper"; dir = 9},/obj/structure/fluff/paper{tag = "icon-paper (SOUTHWEST)"; icon_state = "paper"; dir = 10},/turf/open/space,/area/space)
+"bo" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (EAST)"; icon_state = "papercorner"; dir = 4},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/turf/open/space,/area/space)
+"bp" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/item/toy/crayon/rainbow,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bq" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/fluff/paper/stack{tag = "icon-paperstack (EAST)"; icon_state = "paperstack"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"br" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/structure/fluff/paper/stack{tag = "icon-paperstack (EAST)"; icon_state = "paperstack"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bs" = (/obj/item/toy/crayon/spraycan,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bt" = (/obj/item/weapon/storage/crayons,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bu" = (/mob/living/simple_animal/hostile/stickman/ranged,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bv" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTH)"; icon_state = "paperstack"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bw" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/turf/open/space,/area/space)
+"bx" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTHEAST)"; icon_state = "paper"; dir = 5},/turf/open/space,/area/space)
+"by" = (/obj/structure/fluff/paper/corner,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bz" = (/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTHWEST)"; icon_state = "paperstack"; dir = 9},/obj/structure/fluff/paper,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bA" = (/obj/item/device/toner,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bB" = (/obj/structure/easel,/obj/item/weapon/paper/pamphlet{icon = 'icons/obj/fluff.dmi'; icon_state = "painting4"; info = "This picture depicts a crudely-drawn stickman firing a crudely-drawn gun."; name = "Painting - 'BANG' "},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bC" = (/obj/item/toy/crayon/yellow,/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bD" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bE" = (/mob/living/simple_animal/hostile/stickman/dog,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bF" = (/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTH)"; icon_state = "paperstack"; dir = 1},/obj/structure/fluff/paper/stack,/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bG" = (/obj/item/toy/crayon/blue,/mob/living/simple_animal/hostile/stickman/ranged,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bH" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/item/toy/crayon/yellow,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bI" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTHWEST)"; icon_state = "paper"; dir = 9},/obj/structure/closet/crate/bin,/obj/item/weapon/paper/crumpled{desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."},/obj/item/weapon/paper/crumpled{desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."},/obj/item/weapon/paper/crumpled{desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."},/obj/item/device/gps{gpstag = "Pulpy Signal"},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bJ" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/structure/easel,/obj/item/weapon/paper/pamphlet{icon = 'icons/obj/fluff.dmi'; icon_state = "painting1"; info = "This picture depicts a sunny day on a lush hillside, set under a shaded tree."; name = "Painting - 'Treeside' "},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bK" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTHEAST)"; icon_state = "paper"; dir = 5},/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bL" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/fluff/paper/stack{tag = "icon-paperstack (SOUTHEAST)"; icon_state = "paperstack"; dir = 6},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bM" = (/obj/item/toy/crayon/purple,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bN" = (/obj/structure/fluff/paper/corner,/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bO" = (/obj/machinery/door/airlock/freezer{name = "airlock"; opacity = 0},/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/structure/fluff/paper,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bP" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (WEST)"; icon_state = "papercorner"; dir = 8},/obj/structure/fluff/paper/stack{tag = "icon-paperstack (EAST)"; icon_state = "paperstack"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bQ" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/obj/structure/fluff/paper/stack,/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTH)"; icon_state = "paperstack"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bR" = (/obj/structure/fluff/paper/stack{tag = "icon-paperstack (EAST)"; icon_state = "paperstack"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bS" = (/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTH)"; icon_state = "paperstack"; dir = 1},/obj/structure/fluff/paper/stack,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bT" = (/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/obj/structure/fluff/paper/stack{tag = "icon-paperstack (SOUTHEAST)"; icon_state = "paperstack"; dir = 6},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bU" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/mob/living/simple_animal/hostile/stickman,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bV" = (/obj/item/toy/crayon/yellow,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bW" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/structure/easel,/obj/item/weapon/paper/pamphlet{icon = 'icons/obj/fluff.dmi'; icon_state = "painting3"; info = "This picture depicts a smiling clown. Something doesn't feel right about this.."; name = "Painting - 'Pennywise' "},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bX" = (/obj/item/toy/crayon/blue,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bY" = (/obj/item/toy/crayon/red,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"bZ" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/bed,/obj/item/weapon/bedsheet/rainbow,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ca" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHWEST)"; icon_state = "paper"; dir = 10},/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cb" = (/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTHWEST)"; icon_state = "paperstack"; dir = 9},/obj/item/toy/crayon/purple,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cc" = (/mob/living/simple_animal/hostile/boss/paper_wizard,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cd" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/table/wood,/obj/item/toy/crayon/rainbow,/obj/item/toy/crayon/spraycan,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ce" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/fluff/paper/corner{tag = "icon-papercorner (EAST)"; icon_state = "papercorner"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cf" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/structure/fluff/paper/stack,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cg" = (/obj/structure/fluff/paper{tag = "icon-paper (EAST)"; icon_state = "paper"; dir = 4},/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ch" = (/obj/structure/fluff/paper,/obj/item/weapon/paper/crumpled{desc = "Various scrawled out drawings and sketches reside on the paper, apparently he didn't much care for these drawings."},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ci" = (/obj/structure/fluff/paper,/obj/structure/fluff/paper/corner{tag = "icon-papercorner (NORTH)"; icon_state = "papercorner"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cj" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/mob/living/simple_animal/hostile/stickman,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ck" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHEAST)"; icon_state = "paper"; dir = 6},/obj/structure/fluff/paper{tag = "icon-paper (NORTHEAST)"; icon_state = "paper"; dir = 5},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cl" = (/obj/structure/fluff/paper/corner,/obj/structure/fluff/paper/stack{tag = "icon-paperstack (EAST)"; icon_state = "paperstack"; dir = 4},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cm" = (/obj/structure/fluff/paper,/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/obj/item/weapon/storage/crayons,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cn" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHEAST)"; icon_state = "paper"; dir = 6},/obj/structure/table/wood,/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas,/obj/item/weapon/canvas/nineteenXnineteen,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"co" = (/obj/structure/fluff/paper,/obj/structure/fluff/paper/stack{tag = "icon-paperstack (NORTHWEST)"; icon_state = "paperstack"; dir = 9},/obj/item/toy/crayon/blue,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cp" = (/obj/structure/fluff/paper{tag = "icon-paper (SOUTHWEST)"; icon_state = "paper"; dir = 10},/obj/machinery/photocopier,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cq" = (/obj/structure/fluff/paper,/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/obj/item/weapon/pen/fourcolor,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cr" = (/obj/structure/fluff/paper,/obj/structure/easel,/obj/item/weapon/paper/pamphlet{icon = 'icons/obj/fluff.dmi'; icon_state = "painting2"; info = "This picture depicts a man yelling on a bridge for no apparent reason."; name = "Painting - 'Hands-On-Face' "},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cs" = (/obj/structure/fluff/paper,/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/mob/living/simple_animal/hostile/stickman/dog,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"ct" = (/obj/structure/fluff/paper,/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cu" = (/obj/structure/fluff/paper{tag = "icon-paper (WEST)"; icon_state = "paper"; dir = 8},/obj/structure/fluff/paper/stack{tag = "icon-paperstack (SOUTHEAST)"; icon_state = "paperstack"; dir = 6},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cv" = (/obj/structure/fluff/paper,/obj/structure/fluff/paper/stack{tag = "icon-paperstack (SOUTHEAST)"; icon_state = "paperstack"; dir = 6},/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+"cw" = (/obj/structure/fluff/paper{tag = "icon-paper (NORTH)"; icon_state = "paper"; dir = 1},/mob/living/simple_animal/hostile/stickman/ranged,/turf/open/indestructible{desc = "A floor made of invulernable notebook paper."; icon_state = "paperfloor"; name = "notebook floor"},/area/ruin/powered)
+
+(1,1,1) = {"
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacacacacacacacacadaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafafafafafafafafafagacacacacahacadaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaiafafafafafafafafafafafafafafajafagadaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabacacaiafafafafafafafafafakalalalalamafanafafagadaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafafafafafafafafakalalalaoapapapapaqafajafafafagadaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaabacaiafafafafafafafafarapasapapapatapapaualavamafafafawaaaaaa
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaeafafafafafafafafafafarapapapapapapapapapapapaxamafafagacadaa
+aaaaaaaaaaaaaaaaaaaaaaabacacaiafafafafafafafafafafayazazaAaBapapapapapapapapaqafafafafawaa
+aaaaaaaaaaaaaaaaaaabacaiafafafafafafafafaCafafafafafafafayaDazazaAapapatapapaqafafafafawaa
+aaaaaaaaaaaaaaaaaaaeafafafafafafafafafafaEamafafafafafafafaFafafayaAapasapapaxamafafafagad
+aaaaaaaaaaaaaaabacaiafafafafafafafakalalaoaqafafafafafafafaGaHafafarapapapapapaqafafafafaw
+aaaaaaaaaaaaaaaeafafafafafafafafafayazaAaIaJaKaLalalamafafafanafafayazaAapaMapaqafafafafaw
+aaaaaaaaaaaaaaaeafafafafafafafafafafafayazaNafayazaOaNafafafanafafafafayaAapapaxamafafafaw
+aaaaaaaaaaaaaaaeafafafafafafafafafafafafafaPafafafafaQaRamafanafafafafafarapaSazaTafafafaw
+aaaaaaaaaaaaabaiafafafafafafafafafafafafafaEalamafafafayaUaKaVafafafafafayazaTafafafafafaw
+aaaaaaaaabacaiafafafafakalaWalamafafafafafaraXaqafafafafafafafafafafafafafafafafafafafafaw
+aaaaaaaaaeafafafafafakaYazazazaZalbaamafafayazbbalamafafafafafafafafafafafafafafafafbcbdbe
+aaaaaaaaaeafafafafafaraqafafafayazaAaqafafafafarapbfafafafakalalalamafafafafafafafafawaaaa
+aaaaabacaiafafafafafaraqafafafafafbgaxalamafafayazaZbhalbibjazazazbbalamafafafafafafawaaaa
+abacaiafafafafafafafaybkamafafafafarapblaxamafafafayazbmaTafafafafayazbbalamafafafbnboaaaa
+aeafafafafafafafafafafbpbqafafafakaoapapapaxamafafafafafafafafafafafafbrbsaqafafafafawaaaa
+aeafafafafafafafafafakaYaTafakalaoblapbtapbuaxalalalalalalalamafafafafayazbvafafafafawaaaa
+bwbdbxafafafafafafafaraqafafarapapapapapapbyazbzaAapapapaXapaqafafafafafafaEalamafafawaaaa
+aaaabwbdbdbdbxafafafaraqafafarapapbuapapapaqafafarapaIapapapaqafafafafafafarbuaqafafagaaaa
+aaaaaaaaaaaaaeafafafaraqafafarapapapbAapbBaqafafbCapbyazazazaTafafafafafafayazbDafafafawaa
+aaaaaaaaaaaaaeafafafaraqafafayaAapapbEapapbFalalaobGbHafafafafafbIbJbKafafafafanafafafawaa
+aaaaaaaaaaaabwbxafafarbLafafafarapaMapapapapasbMapapbNbObPalbQalaobAaqafafafafanafafafawaa
+aaaaaaaaaaaaaaaeafafaraqafafafayazazaAapapapbRapapbMaqafayaAapbSbMapbTamafafafanafafafawaa
+aaaaaaaaaaaaaaaeafafarbUafafafafafafarapbubtapapbVapaqafafbWapbXbtbYapbZafafafanafafafawaa
+aaaaaaaaaaaaaaaeafafaraxamafafafafafayazazazazaAapapaxamafcaaAapcbccapcdafafakceafafafawaa
+aaaaaaaaaaaaaaaeafafarapaqafafafafafafafafafafayazazazaNafafcfbRapapapcgafafarbqafafafawaa
+aaaaaaaaaaaaaaaeafafaychciaRcjalamafafafafafafafafafafaQckafarapapclcmcnafafaraqafafafawaa
+aaaaaaaaaaaaaabwbxafafafafaycoazaZalalamafafafafafafafafafafcpcqcraTafafafakaYaTafafafawaa
+aaaaaaaaaaaaaaaaaeafafafafafafafayazazaZalalalbicsctctaRamafafafafafafafafcuaqafafafafawaa
+aaaaaaaaaaaaaaaabwbxafafafafafafafafafayazazcvaTafafafayciaRalamafafakalcwaYaTafafafafawaa
+aaaaaaaaaaaaaaaaaaaeafafafafafafafafafafafafafafafafafafafayazaZalalaoapapaqafafafafbcbeaa
+aaaaaaaaaaaaaaaaaaaeafafafafbcbdbdbdbdbxafafafafafafafafafafafayazazazazazaTafafafafawaaaa
+aaaaaaaaaaaaaaaaaaaeafafafafawaaaaaaaaaeafafafafafafafafafafafafafafafafafafafafafafawaaaa
+aaaaaaaaaaaaaaaaaaaeafafafafawaaaaaaaabwbdbdbdbdbdbdbdbdbdbdbdbdbxafafafafafafbcbdbdbeaaaa
+aaaaaaaaaaaaaaaaaabwbxafafbcbeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabwbdbdbdbdbdbdbeaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaeafafawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaeafafawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaabwbdbdbeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/shuttlerelic.dmm b/_maps/RandomRuins/SpaceRuins/shuttlerelic.dmm
new file mode 100644
index 00000000000..00fd8447959
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/shuttlerelic.dmm
@@ -0,0 +1,508 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/space,
+/area/space)
+"b" = (
+/turf/open/space,
+/turf/closed/indestructible/oldshuttle/corner{
+ tag = "icon-corner (WEST)";
+ icon_state = "corner";
+ dir = 8
+ },
+/area/ruin/powered)
+"c" = (
+/turf/closed/indestructible/oldshuttle,
+/area/ruin/powered)
+"d" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/ruin/powered)
+"e" = (
+/turf/open/space,
+/turf/closed/indestructible/oldshuttle/corner,
+/area/ruin/powered)
+"f" = (
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/turf/closed/indestructible/oldshuttle/corner{
+ tag = "icon-corner (NORTH)";
+ icon_state = "corner";
+ dir = 1
+ },
+/area/ruin/powered)
+"g" = (
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/ruin/powered)
+"h" = (
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/turf/closed/indestructible/oldshuttle/corner{
+ tag = "icon-corner (EAST)";
+ icon_state = "corner";
+ dir = 4
+ },
+/area/ruin/powered)
+"i" = (
+/obj/structure/closet{
+ icon_state = "oldcloset";
+ name = "strange closet"
+ },
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/ruin/powered)
+"j" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ tag = "icon-propulsion (NORTH)";
+ icon_state = "propulsion";
+ dir = 1
+ },
+/turf/open/space,
+/area/ruin/powered)
+"k" = (
+/mob/living/simple_animal/hostile/retaliate/spaceman,
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/ruin/powered)
+"l" = (
+/turf/closed/indestructible/oldshuttle{
+ tag = "icon-orange";
+ icon_state = "orange"
+ },
+/area/ruin/powered)
+"m" = (
+/obj/structure/chair/old{
+ tag = "icon-chairold (NORTH)";
+ icon_state = "chairold";
+ dir = 1
+ },
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/ruin/powered)
+"n" = (
+/obj/structure/chair/old{
+ tag = "icon-chairold (NORTH)";
+ icon_state = "chairold";
+ dir = 1
+ },
+/obj/item/weapon/crowbar/large{
+ desc = "It's a big crowbar. It doesn't fit in your pockets, because it's big. It feels oddly heavy..";
+ force = 20;
+ name = "heavy crowbar"
+ },
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/ruin/powered)
+"o" = (
+/obj/structure/chair/old{
+ tag = "icon-chairold (NORTH)";
+ icon_state = "chairold";
+ dir = 1
+ },
+/mob/living/simple_animal/hostile/retaliate/spaceman,
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/ruin/powered)
+"p" = (
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/turf/closed/indestructible/oldshuttle/corner{
+ tag = "icon-corner (WEST)";
+ icon_state = "corner";
+ dir = 8
+ },
+/area/ruin/powered)
+"q" = (
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/turf/closed/indestructible/oldshuttle/corner,
+/area/ruin/powered)
+"r" = (
+/turf/open/space,
+/turf/closed/indestructible/oldshuttle/corner{
+ tag = "icon-corner (NORTH)";
+ icon_state = "corner";
+ dir = 1
+ },
+/area/ruin/powered)
+"s" = (
+/turf/open/space,
+/turf/closed/indestructible/oldshuttle/corner{
+ tag = "icon-corner (EAST)";
+ icon_state = "corner";
+ dir = 4
+ },
+/area/ruin/powered)
+"t" = (
+/obj/machinery/power/generator,
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/ruin/powered)
+"u" = (
+/obj/machinery/power/smes,
+/turf/open/floor/oldshuttle{
+ baseturf = /turf/open/space;
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/ruin/powered)
+"v" = (
+/obj/structure/shuttle/engine/propulsion/burst/left,
+/turf/open/space,
+/area/ruin/powered)
+"w" = (
+/obj/structure/shuttle/engine/propulsion/burst/right,
+/turf/open/space,
+/area/ruin/powered)
+"x" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/open/space,
+/area/ruin/powered)
+
+(1,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+b
+c
+l
+v
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+b
+c
+c
+f
+g
+l
+l
+x
+"}
+(3,1,1) = {"
+a
+a
+a
+a
+a
+b
+d
+f
+g
+g
+g
+g
+l
+l
+x
+"}
+(4,1,1) = {"
+a
+a
+a
+a
+j
+l
+g
+g
+g
+g
+p
+d
+l
+w
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+a
+b
+c
+g
+g
+g
+p
+r
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+b
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+s
+a
+"}
+(7,1,1) = {"
+a
+b
+f
+i
+c
+i
+i
+i
+i
+i
+i
+c
+u
+c
+s
+"}
+(8,1,1) = {"
+b
+f
+i
+i
+c
+m
+m
+m
+o
+m
+m
+c
+g
+q
+c
+"}
+(9,1,1) = {"
+c
+g
+g
+g
+g
+m
+m
+m
+m
+m
+p
+c
+g
+g
+c
+"}
+(10,1,1) = {"
+d
+g
+g
+g
+k
+g
+g
+g
+g
+g
+c
+t
+g
+g
+d
+"}
+(11,1,1) = {"
+c
+g
+g
+g
+g
+m
+m
+m
+m
+m
+q
+c
+g
+g
+c
+"}
+(12,1,1) = {"
+e
+h
+i
+i
+c
+n
+m
+m
+o
+m
+m
+c
+g
+p
+c
+"}
+(13,1,1) = {"
+a
+e
+h
+i
+c
+i
+i
+i
+i
+i
+i
+c
+u
+c
+r
+"}
+(14,1,1) = {"
+a
+a
+e
+c
+c
+c
+c
+c
+c
+c
+c
+c
+c
+r
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+e
+c
+g
+g
+g
+q
+s
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+j
+l
+g
+g
+g
+g
+q
+d
+l
+v
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+e
+d
+h
+g
+g
+g
+g
+l
+l
+x
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+e
+c
+c
+h
+g
+l
+l
+x
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+e
+c
+l
+w
+a
+"}
diff --git a/_maps/RandomRuins/SpaceRuins/spacebar.dmm b/_maps/RandomRuins/SpaceRuins/spacebar.dmm
index a64c14d8a47..daf28eaa458 100644
--- a/_maps/RandomRuins/SpaceRuins/spacebar.dmm
+++ b/_maps/RandomRuins/SpaceRuins/spacebar.dmm
@@ -1,69 +1,121 @@
"aa" = (/turf/open/space,/area/space)
-"ab" = (/turf/closed/mineral,/area/space)
-"ac" = (/turf/open/floor/plating/asteroid,/area/space)
+"ab" = (/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"ac" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
"ad" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/unpowered)
"ae" = (/turf/closed/wall,/area/ruin/unpowered)
-"af" = (/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
-"ag" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/asteroid,/area/ruin/unpowered)
-"ah" = (/turf/closed/mineral,/area/ruin/unpowered)
-"ai" = (/turf/open/floor/plating/asteroid,/turf/closed/wall/shuttle{icon_state = "swall_f6"; dir = 2},/area/ruin/unpowered)
-"aj" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/ruin/unpowered)
-"ak" = (/turf/open/floor/plating/asteroid,/turf/closed/wall/shuttle{dir = 2; icon_state = "swall_f10"; layer = 2},/area/ruin/unpowered)
-"al" = (/turf/closed/wall,/area/ruin/powered)
-"am" = (/turf/closed/wall/shuttle{icon_state = "swall3"; dir = 2},/area/ruin/unpowered)
-"an" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/shuttle,/area/ruin/unpowered)
-"ao" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/open/floor/wood,/area/ruin/powered)
-"ap" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/wood,/area/ruin/powered)
-"aq" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/turf/open/floor/wood,/area/ruin/powered)
-"ar" = (/turf/open/floor/wood,/area/ruin/powered)
-"as" = (/obj/structure/table,/obj/item/toy/figure/bartender,/turf/open/floor/wood,/area/ruin/powered)
-"at" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/open/floor/wood,/area/ruin/powered)
-"au" = (/obj/effect/mob_spawn/human/bartender/alive,/turf/open/floor/wood,/area/ruin/powered)
-"av" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/ruin/powered)
-"aw" = (/turf/open/floor/plasteel/shuttle,/area/ruin/unpowered)
-"ax" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/turf/open/floor/wood,/area/ruin/powered)
-"ay" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/wood,/area/ruin/powered)
-"az" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f5"; dir = 2},/area/ruin/unpowered)
-"aA" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/turf/open/floor/plasteel/shuttle,/area/ruin/unpowered)
-"aB" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f9"; dir = 2},/area/ruin/unpowered)
-"aC" = (/obj/machinery/button/door{id = "spacebardock"; name = "pod dock door cycle"; pixel_x = -32},/turf/open/floor/wood,/area/ruin/powered)
-"aD" = (/obj/machinery/vending/boozeomat,/turf/closed/wall,/area/ruin/powered)
-"aE" = (/obj/machinery/light/small,/turf/open/floor/wood,/area/ruin/powered)
-"aF" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 10},/turf/open/floor/wood,/area/ruin/powered)
-"aG" = (/obj/structure/table,/turf/open/floor/wood,/area/ruin/powered)
-"aH" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/glass/rag,/turf/open/floor/wood,/area/ruin/powered)
-"aI" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/turf/open/floor/plasteel{icon_state = "wood"},/area/ruin/powered)
-"aJ" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aK" = (/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aL" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered)
-"aN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/closed/wall,/area/ruin/powered)
-"aO" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/ruin/powered)
-"aP" = (/turf/open/floor/plating,/area/ruin/powered)
-"aQ" = (/obj/structure/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aR" = (/obj/structure/table/wood,/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aS" = (/obj/structure/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aU" = (/obj/structure/chair,/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aV" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aW" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aX" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aY" = (/obj/machinery/vending/snack,/obj/machinery/light,/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"aZ" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"ba" = (/obj/machinery/door/airlock{name = "Unisex Bathroom"},/turf/open/floor/plasteel/freezer,/area/ruin/powered)
-"bb" = (/obj/structure/urinal{pixel_x = -32},/turf/open/floor/plasteel/freezer,/area/ruin/powered)
-"bc" = (/turf/open/floor/plasteel/freezer,/area/ruin/powered)
-"bd" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/ruin/powered)
-"be" = (/obj/structure/table/wood,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plasteel/bar,/area/ruin/powered)
-"bf" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/powered)
-"bg" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/powered)
-"bh" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/open/floor/plasteel/freezer,/area/ruin/powered)
-"bi" = (/obj/effect/glowshroom/single,/turf/open/floor/plasteel/freezer,/area/ruin/powered)
-"bj" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/ruin/unpowered)
-"bk" = (/turf/open/floor/plating,/area/ruin/unpowered)
-"bl" = (/turf/open/floor/plating{icon_plating = "warnplate"; icon_state = "warnplate"},/area/ruin/powered)
-"bm" = (/obj/machinery/door/poddoor/preopen{id = "spacebardock"; name = "airlock dock"},/turf/open/floor/plating,/area/ruin/powered)
-"bn" = (/obj/machinery/door/poddoor{id = "spacebardock"; name = "airlock dock"},/turf/open/floor/plating,/area/ruin/powered)
+"af" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered)
+"ag" = (/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"ah" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"ai" = (/turf/closed/mineral,/area/ruin/powered)
+"aj" = (/turf/open/floor/plating/asteroid,/turf/closed/wall/mineral/titanium/interior,/area/ruin/powered)
+"ak" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/ruin/powered)
+"al" = (/turf/closed/wall,/area/ruin/powered{name = "Space Bar"})
+"am" = (/turf/closed/wall/mineral/titanium,/area/ruin/powered)
+"an" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/ruin/powered)
+"ao" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"ap" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aq" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/weapon/book/manual/barman_recipes,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"ar" = (/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"as" = (/obj/structure/table,/obj/item/toy/figure/bartender,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"at" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"au" = (/obj/effect/mob_spawn/human/bartender/alive,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"av" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aw" = (/turf/open/floor/mineral/titanium/blue,/area/ruin/powered)
+"ax" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"ay" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"az" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aA" = (/obj/machinery/atmospherics/components/unary/vent_pump,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aB" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aC" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/mineral/titanium/interior,/area/ruin/powered)
+"aD" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/turf/open/floor/mineral/titanium/blue,/area/ruin/powered)
+"aE" = (/obj/machinery/button/door{id = "spacebardock"; name = "pod dock door cycle"; pixel_x = -32},/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aF" = (/obj/machinery/vending/boozeomat,/turf/closed/wall,/area/ruin/powered{name = "Space Bar"})
+"aG" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aH" = (/obj/machinery/light/small,/obj/structure/table,/obj/machinery/microwave,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aI" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aJ" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 10},/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aK" = (/turf/closed/wall,/area/ruin/powered)
+"aL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"aM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"aN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/ruin/powered{name = "Space Bar"})
+"aO" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aP" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/glass/rag,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/ruin/powered{name = "Space Bar"})
+"aQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/ruin/powered{name = "Space Bar"})
+"aR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/ruin/powered{name = "Space Bar"})
+"aS" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/turf/open/floor/plasteel{icon_state = "wood"},/area/ruin/powered{name = "Space Bar"})
+"aT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"aU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"aV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/ruin/powered{name = "Space Bar"})
+"aW" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"aX" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"aY" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"aZ" = (/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"ba" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bb" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bd" = (/obj/machinery/airalarm{frequency = 1439; locked = 0; pixel_y = 23},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"be" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered{name = "Space Bar"})
+"bf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/closed/wall,/area/ruin/powered{name = "Space Bar"})
+"bg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bi" = (/obj/machinery/computer/teleporter,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bj" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/ruin/powered{name = "Space Bar"})
+"bk" = (/turf/open/floor/plating,/area/ruin/powered{name = "Space Bar"})
+"bl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bp" = (/obj/machinery/teleport/station,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bq" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"br" = (/obj/structure/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bs" = (/obj/structure/table/wood,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bt" = (/obj/structure/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bv" = (/obj/machinery/teleport/hub,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bw" = (/obj/structure/chair,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bx" = (/obj/machinery/bluespace_beacon,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"by" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bz" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bA" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bB" = (/obj/machinery/vending/coffee,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bC" = (/obj/machinery/vending/snack,/obj/machinery/light,/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bD" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ruin/powered{name = "Space Bar"})
+"bF" = (/obj/machinery/door/airlock{name = "Unisex Bathroom"},/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bG" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bH" = (/obj/structure/urinal{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber,/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bK" = (/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bL" = (/obj/structure/urinal{pixel_x = -32},/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bO" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bP" = (/obj/structure/table/wood,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plasteel/bar,/area/ruin/powered{name = "Space Bar"})
+"bQ" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bR" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bS" = (/obj/machinery/door/airlock{name = "Toilet"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bT" = (/obj/effect/glowshroom/single,/turf/open/floor/plasteel/freezer,/area/ruin/powered{name = "Space Bar"})
+"bU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"bV" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/ruin/powered)
+"bW" = (/turf/open/floor/plating,/area/ruin/powered)
+"bX" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"bY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"bZ" = (/obj/machinery/button/door{id = "spacebardock"; name = "Podbay Airlock"; pixel_y = -24},/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"ca" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"cb" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/machinery/meter,/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"cc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"cd" = (/obj/machinery/atmospherics/components/binary/valve/open,/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"ce" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"cf" = (/turf/open/floor/plating/asteroid,/area/ruin/unpowered/no_grav)
+"cg" = (/obj/machinery/door/poddoor/preopen{id = "spacebardock"; name = "airlock dock"},/turf/open/floor/plating,/area/ruin/powered)
+"ch" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/meter,/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"ci" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plating/asteroid,/area/ruin/powered)
+"cj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ruin/powered)
+"ck" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"cl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/mineral,/area/ruin/unpowered/no_grav)
+"cm" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
+"cn" = (/obj/machinery/door/poddoor{id = "spacebardock"; name = "airlock dock"},/turf/open/floor/plating,/area/ruin/powered)
(1,1,1) = {"
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -74,36 +126,36 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacababacacacacacaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaacacacacacadadaeadadacacacacacacacacacacacacacaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaacacacadadadafafafafafadadacacadadadadadadagacacacacaaaaaaaaaa
-aaaaaaaaaaaaaaaaacacacadafafafafafafahahafafadadafafafafafafafadadacacacaaaaaaaa
-aaaaaaaaaaaaaaacacacadafafafafafafahahahahafafafafafafafafafafafafadacacaaaaaaaa
-aaaaaaaaaaacacacacadafaiajakafafahahahalalalalalalalalalalalalafafadacacaaaaaaaa
-aaaaaaaaaaacacacadafafamanamafafahahahalaoapaqaralasatauaravalafafadacacacaaaaaa
-aaaaaaaaacacadadafafafamawamafafahahahalararararaxararararayalafafafadacacaaaaaa
-aaaaaaababacadafafafafazaAaBafafafahahalaCarararaDaraEararaFalafafafadacacaaaaaa
-aaaaaaaaabacaeafafafafafafafafafafafafalaGaGaHaGalalalalaIalalafafafaeacaaaaaaaa
-aaaaaaaaabacadadafafafafafafafafafafafalaJaJaJaJaKaKaLaKaKaKalafafafadacabaaaaaa
-aaaaaaaaacacacacadafafafafafafafalaMaNalaKaKaKaKaKaKaKaKaKaKaMafafadacacababaaaa
-aaaaaaaaaaacacadafafafafafafafafaOaPaPaOaKaKaKaKaKaKaQaRaSaKaMafafadacabababaaaa
-aaaaaaaaaaacacadafafafafafafafafalaMaMalaTaKaQaRaSaKaKaKaKaKaMafafadacacaaaaaaaa
-aaaaaaaaacacadafafafafafafafafafafafafalaUaKaKaKaKaKaKaKaKaKaMafafadacacaaaaaaaa
-aaaaaaaaabacadafafafafafafafafafafafafalaRaKaKaKaVaWaXaYaKaKalafafadacacacaaaaaa
-aaaaaaababacadafafafafafafafafafafafafalaZaKaKaKalalalalalbaalahafafadacacacaaaa
-aaaaaaaaabacadafafafafafafafafaiajakafalaKaKaKaKalbbbcbcbcbcalahafafafadacabaaaa
-aaaaaaaaacacadafafafafafafafafamanamafaMaKaKaKaUalbbbcbcbcbdalahahafafadacabaaaa
-aaaaaaaaacacacadafafafafafafafamawamafafaMaKaKbealalalbfbcbdalahahafafadacabaaaa
-aaaaaaaaaaacacadafafafafafafafazaAaBafafafaMaKaZalbgbhbcbibcalahahafafadacacaaaa
-aaaaaaaaaaacaeaeaeaeafafafafafafafafafafafafaMalalalalalalalalahahafadacacacaaaa
-aaaaaaaaaaaabjbkbkbjafafafafafafafafafafahahafafafahahahahahahahahafadacacacaaaa
-aaaaaaaaaaaaaeaeaeaeafafafafafafafafafahahahafafafafafahahahahahahadacacacaaaaaa
-aaaaaaaaaaaaacacaeafalblblblblblblalafafahafafafafafafafafahahahafadacacaaaaaaaa
-aaaaaaaaaaaaacabaeafalbmbmbmbmbmbmalafafafafafafafafafafafafafafadaeacabaaaaaaaa
-aaaaaaaaaaaaababaeaealaPaPaPaPaPaPalaeaeaeadadadadadadadadadadaeacacacacaaaaaaaa
-aaaaaaaaaaaaababababalaPaPaPaPaPaPalacacacacacacacacacacacacacacacacacaaaaaaaaaa
-aaaaaaaaaaaaaaaaababalaPaPaPaPaPaPalacacacacacacacacabacacacacacacaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaalaPaPaPaPaPaPalacacacacaaaaaaacacacababaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaalbnbnbnbnbnbnalacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaalaaaaaaaaaaaaalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaacacacafafafagagagagagafafacacafafafafafafahacacacacaaaaaaaaaa
+aaaaaaaaaaaaaaaaacacacafagagagagagagaiagagagafafagagagagagagagafafacacacaaaaaaaa
+aaaaaaaaaaaaaaacacacafagagagagagagaiaiaiaiagagagagagagagagagagagagafacacaaaaaaaa
+aaaaaaaaaaacacacacafagajakajagagaiaiaialalalalalalalalalalalalagagafacacaaaaaaaa
+aaaaaaaaaaacacacafagagamanamagagaiaiaialaoapaqaralasatauaravalagagafacacacaaaaaa
+aaaaaaaaacacafafagagagamawamagagaiaiaialaxarararayarazaAaraBalagagagafacacaaaaaa
+aaaaaaababacafagagagagaCaDaCagagagaiaialaEarararaFaGaHaIaraJalagagagafacacaaaaaa
+aaaaaaaaabacaKagagagagagagagagaLaMaMaMaNaOaOaPaOaNaNaQaRaSalalagagagaKacaaaaaaaa
+aaaaaaaaabacafafagagagagagagagaTaUaUaUaVaWaXaYaYaZbabbbcaZbdalagagagafacabaaaaaa
+aaaaaaaaacacacacafagagagagagagagalbebfalaZbcaZaZaZbgbhbcaZbibeagagafacacababaaaa
+aaaaaaaaaaacacafagagagagagagagagbjbkbkbjaZblbmbmbmbmbnboaZbpbeagagafacabababaaaa
+aaaaaaaaaaacacafagagagagagagagagalbebealbqbcbrbsbtaZbuaZaZbvbeagagafacacaaaaaaaa
+aaaaaaaaacacafagagagagagagagagagagagagalbwbcaZaZaZbxbuaZaZaZbeagagafacacaaaaaaaa
+aaaaaaaaabacafagagagagagagagagagagagagalbsblbyaZbzbAbBbCaZaZalagagafacacacaaaaaa
+aaaaaaababacafagagagagagagagagagagagagalbDbcaZaZalalbEalalbFalaiagagafacacacaaaa
+aaaaaaaaabacafagagagagagagagagajakajagalbGblbmbmaVbHbIbJbKbKalaiagagagafacabaaaa
+aaaaaaaaacacafagagagagagagagagamanamagbeaZbcaZbwalbLbMbNbKbOalaiaiagagafacabaaaa
+aaaaaaaaacacacafagagagagagagagamawamagagbebcaZbPalalbEbQbKbOalaiaiagagafacabaaaa
+aaaaaaaaaaacacafagagagagagagagaCaDaCagagagbeaZbDalbRbSbKbTbKalaiaiagagafacacaaaa
+aaaaaaaaaaacaKaKaKaKagagagagagagagagagagagbUbealalalbEalalalalaiaiagafacacacaaaa
+aaaaaaaaaaaabVbWbWbVagagagagagagagagagagaibUbXbXbXaibYaiaiaiaiaiagagafacacacaaaa
+aaaaaaaaaaaaaKaKaKaKagagagagagagagbZagaiaibUcacbccagbYaiaiaiaiaiagafacacacaaaaaa
+aaaaaaaaaaaaacacaKagaKbWbWbWbWbWbWaKagagaibUagcdagaLceagagaiaiagagafaccfaaaaaaaa
+aaaaaaaaaaaaacabaKagaKcgcgcgcgcgcgaKagagagcaaUchciagbYagagagagagafaKacabaaaaaaaa
+aaaaaaaaaaaaababaKaKaKbWbWbWbWbWbWaKaKaKaKafafafafafcjafafafafaKacacacacaaaaaaaa
+aaaaaaaaaaaaababababaKbWbWbWbWbWbWaKacacacacacacacacckacacacacacacacacaaaaaaaaaa
+aaaaaaaaaaaaaaaaababaKbWbWbWbWbWbWaKacacacacacacacacclacacacacacacaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaKbWbWbWbWbWbWaKacacacacaaaaaaaccmacababaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaKcncncncncncnaKacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaaaaaaaaaaaaaaaaaaaaKaaaaaaaaaaaaaKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"}
diff --git a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
new file mode 100644
index 00000000000..d28dada0427
--- /dev/null
+++ b/_maps/RandomRuins/SpaceRuins/spacehotel.dmm
@@ -0,0 +1,743 @@
+"aa" = (/turf/open/space,/area/space)
+"ab" = (/obj/structure/grille,/turf/open/space,/area/space)
+"ac" = (/obj/structure/lattice,/turf/open/space,/area/space)
+"ad" = (/obj/machinery/power/solar,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"ae" = (/obj/machinery/power/solar,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"af" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"ag" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"ah" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"ai" = (/obj/machinery/power/tracker,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"aj" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"ak" = (/obj/machinery/power/solar,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"al" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"am" = (/turf/closed/wall,/area/ruin/hotel)
+"an" = (/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"ao" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"ap" = (/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"aq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"ar" = (/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"as" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"at" = (/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"au" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"av" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/ruin/hotel)
+"aw" = (/turf/open/floor/plating,/area/ruin/hotel)
+"ax" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"ay" = (/obj/structure/window{icon_state = "window"; dir = 8},/obj/structure/toilet,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"az" = (/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"aA" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"aB" = (/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"aC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"aD" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-02"; icon_state = "plant-02"},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"aE" = (/obj/structure/dresser,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"aF" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"aG" = (/obj/structure/window{icon_state = "window"; dir = 8},/obj/structure/toilet,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"aH" = (/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"aI" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"aJ" = (/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"aK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"aL" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-16"; icon_state = "plant-16"},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"aM" = (/obj/structure/dresser,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"aN" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"aO" = (/obj/structure/window{icon_state = "window"; dir = 8},/obj/structure/toilet,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"aP" = (/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"aQ" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"aR" = (/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"aS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"aT" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-16"; icon_state = "plant-16"},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"aU" = (/obj/structure/dresser,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"aV" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"aW" = (/obj/structure/window{icon_state = "window"; dir = 8},/obj/structure/toilet,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"aX" = (/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"aY" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"aZ" = (/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"ba" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bb" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-18"; icon_state = "plant-18"},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bc" = (/obj/structure/dresser,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bd" = (/obj/machinery/power/solar,/obj/structure/cable/yellow,/turf/open/floor/plating/airless,/area/ruin/unpowered/no_grav)
+"be" = (/obj/structure/window{icon_state = "window"; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bf" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bg" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bj" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bk" = (/obj/structure/window{icon_state = "window"; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bl" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bm" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bp" = (/obj/structure/bed,/obj/item/weapon/bedsheet/blue,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bq" = (/obj/structure/window{icon_state = "window"; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"br" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"bs" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"bt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"bu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"bv" = (/obj/structure/bed,/obj/item/weapon/bedsheet/black,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"bw" = (/obj/structure/window{icon_state = "window"; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bx" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"by" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bB" = (/obj/structure/bed,/obj/item/weapon/bedsheet/purple,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bC" = (/obj/item/clothing/head/cone,/turf/open/floor/plating,/area/ruin/hotel)
+"bD" = (/obj/machinery/light{dir = 8},/obj/structure/table/wood,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bE" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bF" = (/obj/machinery/light{dir = 8},/obj/structure/table/wood,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bG" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bH" = (/obj/machinery/light{dir = 8},/obj/structure/table/wood,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"bI" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"bJ" = (/obj/machinery/light{dir = 8},/obj/structure/table/wood,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bK" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"bL" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/ruin/hotel)
+"bM" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 32},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bN" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Guest Room APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bO" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bP" = (/obj/machinery/button/door{id = "a3"; name = "privacy button"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bQ" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bR" = (/obj/structure/table/wood,/obj/item/clothing/head/sombrero,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"bS" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 32},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bT" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Guest Room APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bV" = (/obj/machinery/button/door{id = "a4"; name = "privacy button"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bW" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bX" = (/obj/structure/table/wood,/obj/item/weapon/lipstick,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"bY" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 32},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"bZ" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Guest Room APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"ca" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"cb" = (/obj/machinery/button/door{id = "a5"; name = "privacy button"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"cc" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"cd" = (/obj/structure/table/wood,/obj/item/clothing/head/collectable/kitty,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"ce" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 32},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"cf" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Guest Room APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"cg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"ch" = (/obj/machinery/button/door{id = "a6"; name = "privacy button"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"ci" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"cj" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"ck" = (/obj/structure/grille,/turf/open/floor/plating,/area/ruin/hotel)
+"cl" = (/obj/machinery/door/airlock{id_tag = "a3"; name = "Guest Room A3"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"cm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 3"})
+"cn" = (/obj/machinery/door/airlock{id_tag = "a4"; name = "Guest Room A4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"co" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 4"})
+"cp" = (/obj/machinery/door/airlock{id_tag = "a5"; name = "Guest Room A5"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"cq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 5"})
+"cr" = (/obj/machinery/door/airlock{id_tag = "a6"; name = "Guest Room A6"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"cs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 6"})
+"ct" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/ruin/hotel)
+"cu" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ruin/hotel)
+"cv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ruin/hotel)
+"cw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/ruin/hotel)
+"cx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/ruin/hotel)
+"cy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/ruin/hotel)
+"cz" = (/obj/structure/sign/fire{desc = "A sign that states the labeled room's number."; dir = 4; icon_state = "roomnum"; name = "Room Number 3"; pixel_y = 24; tag = "icon-roomnum (EAST)"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cA" = (/obj/structure/sign/fire{desc = "A sign that states the labeled room's number."; dir = 8; icon_state = "roomnum"; name = "Room Number 4"; pixel_y = 24; tag = "icon-roomnum (WEST)"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/carpet,/area/ruin/hotel)
+"cC" = (/obj/structure/sign/fire{desc = "A sign that states the labeled room's number."; dir = 6; icon_state = "roomnum"; name = "Room Number 5"; pixel_y = 24; tag = "icon-roomnum (SOUTHEAST)"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/carpet,/area/ruin/hotel)
+"cE" = (/obj/structure/sign/fire{desc = "A sign that states the labeled room's number."; dir = 10; icon_state = "roomnum"; name = "Room Number 6"; pixel_y = 24; tag = "icon-roomnum (SOUTHWEST)"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/carpet,/area/ruin/hotel)
+"cF" = (/turf/open/floor/carpet,/area/ruin/hotel)
+"cG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/ruin/hotel)
+"cH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ruin/hotel)
+"cI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ruin/hotel)
+"cJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/ruin/hotel)
+"cK" = (/obj/machinery/door/airlock/maintenance{name = "Hotel Maintenance"; req_access_txt = "201"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/ruin/hotel)
+"cL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/ruin/hotel)
+"cM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/carpet,/area/ruin/hotel)
+"cP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/open/floor/carpet,/area/ruin/hotel)
+"cQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/ruin/hotel)
+"cR" = (/obj/machinery/light,/turf/open/floor/carpet,/area/ruin/hotel)
+"cS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cT" = (/obj/structure/sign/fire{desc = "A sign that states the labeled room's number."; dir = 1; icon_state = "roomnum"; name = "Room Number 2"; pixel_y = -24; tag = "icon-roomnum (NORTH)"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cU" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/open/floor/carpet,/area/ruin/hotel)
+"cV" = (/obj/structure/sign/fire{desc = "A sign that states the labeled room's number."; icon_state = "roomnum"; name = "Room Number 1"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"cZ" = (/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"da" = (/obj/machinery/door/airlock{id_tag = "a2"; name = "Guest Room A2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"db" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dc" = (/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dd" = (/obj/machinery/door/airlock{id_tag = "a1"; name = "Guest Room A1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"de" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"df" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor,/turf/open/floor/carpet,/area/ruin/hotel)
+"dg" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"dh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/ruin/hotel/workroom)
+"di" = (/turf/closed/wall,/area/ruin/hotel/workroom)
+"dj" = (/obj/machinery/door/airlock/centcom{name = "Hotel Staff Storage"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/ruin/hotel/workroom)
+"dk" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dl" = (/obj/structure/window{icon_state = "window"; dir = 8},/obj/structure/toilet,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dm" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 32},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dn" = (/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Guest Room APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"do" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dp" = (/obj/machinery/button/door{id = "a2"; name = "privacy button"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dq" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-21"; icon_state = "plant-21"},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dr" = (/obj/structure/dresser,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"ds" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dt" = (/obj/structure/window{icon_state = "window"; dir = 8},/obj/structure/toilet,/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"du" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 32},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dv" = (/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Guest Room APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dw" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dx" = (/obj/machinery/button/door{id = "a1"; name = "privacy button"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dy" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-14"; icon_state = "plant-14"},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dz" = (/obj/structure/dresser,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dA" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dC" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dD" = (/obj/structure/table,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dE" = (/obj/structure/table,/obj/item/weapon/soap,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dF" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dG" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dH" = (/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dI" = (/obj/structure/window{icon_state = "window"; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dJ" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dM" = (/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dN" = (/obj/structure/bed,/obj/item/weapon/bedsheet/yellow,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"dO" = (/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dP" = (/obj/structure/window{icon_state = "window"; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dQ" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dT" = (/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dU" = (/obj/structure/bed,/obj/item/weapon/bedsheet/ian,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"dV" = (/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"dZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"ea" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"eb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"ec" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/ruin/hotel/workroom)
+"ed" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/ruin/hotel)
+"ee" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"ef" = (/obj/machinery/light{dir = 8},/obj/structure/table/wood,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"eg" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"eh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"ei" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"ej" = (/obj/machinery/light{dir = 8},/obj/structure/table/wood,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"ek" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"el" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"em" = (/obj/machinery/light{dir = 8},/turf/open/floor/carpet,/area/ruin/hotel)
+"en" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"eo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"ep" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"eq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"er" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"es" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"et" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"eu" = (/obj/structure/table/wood,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 2"})
+"ev" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/showroomfloor,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"ew" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"ex" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/ruin/hotel/guestroom{name = "Hotel Guest Room 1"})
+"ey" = (/obj/structure/closet/wardrobe/mixed,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"ez" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"eA" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Laundry APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"eB" = (/obj/machinery/light,/turf/open/floor/plasteel/white,/area/ruin/hotel/workroom)
+"eC" = (/obj/structure/closet/crate,/turf/open/floor/plasteel/whitebot,/area/ruin/hotel/workroom)
+"eD" = (/obj/structure/closet/crate,/obj/item/clothing/head/rice_hat,/turf/open/floor/plasteel/whitebot,/area/ruin/hotel/workroom)
+"eE" = (/obj/structure/closet/crate,/obj/item/weapon/bedsheet/patriot,/turf/open/floor/plasteel/whitebot,/area/ruin/hotel/workroom)
+"eF" = (/obj/structure/closet/crate,/obj/item/weapon/card/id/away/hotel,/turf/open/floor/plasteel/whitebot,/area/ruin/hotel/workroom)
+"eG" = (/turf/closed/wall,/area/ruin/hotel/dock)
+"eH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/ruin/hotel)
+"eI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/ruin/hotel)
+"eJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plating,/area/ruin/hotel)
+"eK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/ruin/hotel)
+"eL" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -24; tag = "icon-alarm0 (NORTH)"},/turf/open/floor/plating,/area/ruin/hotel/bar)
+"eM" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -24; tag = "icon-alarm0 (NORTH)"},/turf/open/floor/plating,/area/ruin/hotel)
+"eN" = (/obj/machinery/door/airlock/maintenance{name = "Hotel Maintenance"; req_access_txt = "201"},/turf/open/floor/plating,/area/ruin/hotel)
+"eO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/wood,/area/ruin/hotel)
+"eP" = (/obj/structure/flora/ausbushes/fernybush,/turf/open/floor/grass,/area/ruin/hotel)
+"eQ" = (/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/ruin/hotel)
+"eR" = (/obj/machinery/light{dir = 1},/obj/structure/flora/ausbushes/fullgrass,/turf/open/floor/grass,/area/ruin/hotel)
+"eS" = (/obj/structure/flora/ausbushes/fullgrass,/turf/open/floor/grass,/area/ruin/hotel)
+"eT" = (/turf/open/floor/wood,/area/ruin/hotel)
+"eU" = (/obj/machinery/vending/cola,/turf/open/floor/wood,/area/ruin/hotel)
+"eV" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/open/floor/wood,/area/ruin/hotel/dock)
+"eW" = (/turf/open/floor/wood,/area/ruin/hotel/dock)
+"eX" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/wood,/area/ruin/hotel/dock)
+"eY" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/ruin/hotel/dock)
+"eZ" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/wood,/area/ruin/hotel/dock)
+"fa" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/wood,/area/ruin/hotel/dock)
+"fb" = (/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/ruin/hotel/dock)
+"fc" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/wood,/area/ruin/hotel/dock)
+"fd" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ruin/hotel)
+"fe" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/open/floor/plating,/area/ruin/hotel)
+"ff" = (/obj/structure/closet/crate,/obj/item/clothing/head/papersack/smiley,/turf/open/floor/plating,/area/ruin/hotel)
+"fg" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/ruin/hotel)
+"fh" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plating,/area/ruin/hotel/bar)
+"fi" = (/turf/closed/wall,/area/ruin/hotel/bar)
+"fj" = (/obj/machinery/door/airlock/maintenance{name = "Hotel Maintenance"; req_access_txt = "200,201"},/turf/open/floor/plating,/area/ruin/hotel/bar)
+"fk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/ruin/hotel)
+"fl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/wood,/area/ruin/hotel)
+"fm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/grass,/area/ruin/hotel)
+"fn" = (/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/grass,/area/ruin/hotel)
+"fo" = (/obj/structure/flora/ausbushes/fullgrass,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/grass,/area/ruin/hotel)
+"fp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/ruin/hotel)
+"fq" = (/obj/machinery/vending/cigarette,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/ruin/hotel)
+"fr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/ruin/hotel/dock)
+"fs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/ruin/hotel/dock)
+"ft" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/wood,/area/ruin/hotel/dock)
+"fu" = (/turf/open/floor/carpet,/area/ruin/hotel/dock)
+"fv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/ruin/hotel/dock)
+"fw" = (/obj/structure/closet/chefcloset,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"fx" = (/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"fy" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"fz" = (/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"fA" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"fB" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"fC" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"fD" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"fE" = (/obj/machinery/vending/boozeomat{req_access_txt = "200"},/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"fF" = (/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"fG" = (/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"fH" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"fI" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-02"; icon_state = "plant-02"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/ruin/hotel)
+"fJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/wood,/area/ruin/hotel)
+"fK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/ruin/hotel)
+"fL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet,/area/ruin/hotel)
+"fM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/ruin/hotel)
+"fN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood,/area/ruin/hotel)
+"fO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/carpet,/area/ruin/hotel/dock)
+"fP" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"fQ" = (/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"fR" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/potato,/obj/item/weapon/reagent_containers/food/snacks/grown/potato,/obj/item/weapon/reagent_containers/food/snacks/grown/potato,/obj/item/weapon/reagent_containers/food/snacks/grown/potato,/obj/item/weapon/reagent_containers/food/snacks/grown/potato,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"fS" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"fT" = (/obj/machinery/door/airlock/freezer{name = "Freezer"; req_access_txt = "200"},/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"fU" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"fV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/carpet,/area/ruin/hotel)
+"fW" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/ruin/hotel/dock)
+"fX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9; pixel_y = 0},/turf/open/floor/carpet,/area/ruin/hotel/dock)
+"fY" = (/obj/structure/table,/obj/item/weapon/kitchen/knife,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"fZ" = (/obj/structure/table,/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"ga" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"gb" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"gc" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/sugar,/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"gd" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/rag,/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"ge" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/carpet,/area/ruin/hotel)
+"gf" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor,/turf/open/floor/carpet,/area/ruin/hotel/dock)
+"gg" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/ruin/hotel/dock)
+"gh" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-22"; icon_state = "plant-22"},/turf/open/floor/wood,/area/ruin/hotel/dock)
+"gi" = (/obj/structure/table/wood,/obj/machinery/light{tag = "icon-tube1 (EAST)"; icon_state = "tube1"; dir = 4},/turf/open/floor/carpet,/area/ruin/hotel/dock)
+"gj" = (/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/ruin/hotel)
+"gk" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"gl" = (/obj/effect/decal/cleanable/blood/old,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"gm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"gn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"go" = (/obj/structure/kitchenspike,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"gp" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"gq" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"gr" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/bar,/area/ruin/hotel/bar)
+"gs" = (/obj/machinery/door/airlock/centcom{name = "Hotel Staff Room"; req_access_txt = "200"},/turf/open/floor/plasteel/black,/area/ruin/hotel/workroom)
+"gt" = (/obj/structure/table/wood,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/light/small{tag = "icon-bulb1 (WEST)"; icon_state = "bulb1"; dir = 8},/turf/open/floor/plasteel/grimy,/area/ruin/hotel/dock)
+"gu" = (/obj/structure/table/wood,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/grimy,/area/ruin/hotel/dock)
+"gv" = (/obj/structure/table/wood,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/item/device/gps{gpstag = "Twin-Nexus Hotel Retreat"; name = "hotel gps"},/turf/open/floor/plasteel/grimy,/area/ruin/hotel/dock)
+"gw" = (/turf/open/floor/plasteel/black,/area/ruin/hotel/dock)
+"gx" = (/obj/structure/table,/obj/item/weapon/screwdriver,/obj/item/device/multitool,/obj/item/weapon/wirecutters,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/black,/area/ruin/hotel/dock)
+"gy" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet,/area/ruin/hotel/dock)
+"gz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"gA" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"gB" = (/obj/machinery/gibber,/turf/open/floor/plasteel/freezer,/area/ruin/hotel/bar)
+"gC" = (/obj/structure/closet/secure_closet/freezer/meat{req_access_txt = "200"},/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"gD" = (/obj/structure/table,/obj/item/weapon/kitchen/knife,/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"gE" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/pack/hotsauce,/obj/item/weapon/reagent_containers/food/condiment/pack/hotsauce,/obj/item/weapon/reagent_containers/food/condiment/pack/ketchup,/obj/item/weapon/reagent_containers/food/condiment/pack/ketchup,/obj/item/weapon/reagent_containers/glass/beaker,/turf/open/floor/plasteel/cafeteria,/area/ruin/hotel/bar)
+"gF" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/black,/area/ruin/hotel/workroom)
+"gG" = (/turf/open/floor/plasteel/black,/area/ruin/hotel/workroom)
+"gH" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/weapon/crowbar,/turf/open/floor/plasteel/black,/area/ruin/hotel/workroom)
+"gI" = (/obj/structure/noticeboard{pixel_y = 32},/obj/item/weapon/paper{info = "
|
- Changeling Evolution Menu - Hover over a power to see more information - Current ability choices remaining: [changeling.geneticpoints] - By rendering a lifeform to a husk, we gain enough power to alter and adapt our evolutions. - (Readapt) - - |
-
| - Search: - | -
|
-
-
- Evolve [P][ownsthis ? " - Purchased" : (P.req_dna>changeling.absorbedcount ? " - Requires [P.req_dna] absorptions" : " - Cost: [P.dna_cost]")]
-
- - |
-