diff --git a/aurorastation.dme b/aurorastation.dme index b081197874f..e3f2b2f8e8e 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -3267,7 +3267,10 @@ #include "maps\event\rooftop\code\rooftop_shuttles.dm" #include "maps\random_ruins\exoplanets\exoplanet_ruins.dm" #include "maps\random_ruins\exoplanets\asteroid\asteroid.dm" +#include "maps\random_ruins\exoplanets\asteroid\mystery_ship\mystery_ship_areas.dm" #include "maps\random_ruins\exoplanets\crashed_pod\crashed_pod.dm" +#include "maps\random_ruins\exoplanets\grove\grove.dm" +#include "maps\random_ruins\exoplanets\lava\lava.dm" #include "maps\random_ruins\space_ruins\space_ruins.dm" #include "maps\runtime\runtime_overmap.dm" #include "maps\runtime\code\runtime.dm" diff --git a/code/modules/maps/planet_types/barren.dm b/code/modules/maps/planet_types/barren.dm index e79060d77b3..1c5393a781f 100644 --- a/code/modules/maps/planet_types/barren.dm +++ b/code/modules/maps/planet_types/barren.dm @@ -10,8 +10,22 @@ features_budget = 6 surface_color = "#807d7a" water_color = null - possible_random_ruins = list(/datum/map_template/ruin/exoplanet/abandoned_mining, /datum/map_template/ruin/exoplanet/hideout, /datum/map_template/ruin/exoplanet/crashed_shuttle_01) + possible_random_ruins = list( + /datum/map_template/ruin/exoplanet/abandoned_mining, + /datum/map_template/ruin/exoplanet/hideout, + /datum/map_template/ruin/exoplanet/crashed_shuttle_01, + /datum/map_template/ruin/exoplanet/crashed_sol_shuttle_01, + /datum/map_template/ruin/exoplanet/crashed_skrell_shuttle_01, + /datum/map_template/ruin/exoplanet/mystery_ship_1, + /datum/map_template/ruin/exoplanet/crashed_satelite, + /datum/map_template/ruin/exoplanet/abandoned_listening_post, + /datum/map_template/ruin/exoplanet/crashed_escape_pod_1, + /datum/map_template/ruin/exoplanet/digsite, + /datum/map_template/ruin/exoplanet/crashed_pod, + /datum/map_template/ruin/exoplanet/crashed_coc_skipjack, + /datum/map_template/ruin/exoplanet/drill_site) + /obj/effect/overmap/visitable/sector/exoplanet/barren/generate_habitability() return HABITABILITY_BAD @@ -63,7 +77,22 @@ map_generators = list(/datum/random_map/noise/exoplanet/barren/asteroid, /datum/random_map/noise/ore/rich) rock_colors = list(COLOR_ASTEROID_ROCK) planetary_area = /area/exoplanet/barren/asteroid - possible_random_ruins = list(/datum/map_template/ruin/exoplanet/abandoned_mining, /datum/map_template/ruin/exoplanet/carp_nest, /datum/map_template/ruin/exoplanet/hideout, /datum/map_template/ruin/exoplanet/crashed_shuttle_01) + + possible_random_ruins = list( + /datum/map_template/ruin/exoplanet/abandoned_mining, + /datum/map_template/ruin/exoplanet/hideout, + /datum/map_template/ruin/exoplanet/crashed_shuttle_01, + /datum/map_template/ruin/exoplanet/crashed_sol_shuttle_01, + /datum/map_template/ruin/exoplanet/crashed_skrell_shuttle_01, + /datum/map_template/ruin/exoplanet/mystery_ship_1, + /datum/map_template/ruin/exoplanet/crashed_satelite, + /datum/map_template/ruin/exoplanet/abandoned_listening_post, + /datum/map_template/ruin/exoplanet/crashed_escape_pod_1, + /datum/map_template/ruin/exoplanet/digsite, + /datum/map_template/ruin/exoplanet/crashed_pod, + /datum/map_template/ruin/exoplanet/crashed_coc_skipjack, + /datum/map_template/ruin/exoplanet/carp_nest, + /datum/map_template/ruin/exoplanet/drill_site) /obj/effect/overmap/visitable/sector/exoplanet/barren/asteroid/generate_planet_image() skybox_image = image('icons/skybox/skybox_rock_128.dmi', "bigrock") @@ -89,4 +118,4 @@ /area/exoplanet/barren/asteroid name = "\improper Asteroid Surface" - base_turf = /turf/unsimulated/floor/asteroid/ash \ No newline at end of file + base_turf = /turf/unsimulated/floor/asteroid/ash diff --git a/code/modules/maps/planet_types/grass.dm b/code/modules/maps/planet_types/grass.dm index b98cbea166f..2a4f8de41b4 100644 --- a/code/modules/maps/planet_types/grass.dm +++ b/code/modules/maps/planet_types/grass.dm @@ -7,6 +7,12 @@ plant_colors = list("#0e1e14","#1a3e38","#5a7467","#9eab88","#6e7248", "RANDOM") map_generators = list(/datum/random_map/noise/exoplanet/grass) + possible_random_ruins = list( + /datum/map_template/ruin/exoplanet/crashed_sol_shuttle_01, + /datum/map_template/ruin/exoplanet/crashed_skrell_shuttle_01, + /datum/map_template/ruin/exoplanet/mystery_ship_1, + /datum/map_template/ruin/exoplanet/hut) + /obj/effect/overmap/visitable/sector/exoplanet/grass/generate_map() if(prob(40)) lightlevel = rand(1,7)/10 //give a chance of twilight jungle diff --git a/code/modules/maps/planet_types/lava.dm b/code/modules/maps/planet_types/lava.dm index 82a588ede4f..3b2d078180f 100644 --- a/code/modules/maps/planet_types/lava.dm +++ b/code/modules/maps/planet_types/lava.dm @@ -7,10 +7,16 @@ possible_themes = list(/datum/exoplanet_theme/mountains) map_generators = list(/datum/random_map/noise/exoplanet/lava, /datum/random_map/noise/ore) ruin_tags_blacklist = RUIN_HABITAT|RUIN_WATER - features_budget = 3 + features_budget = 4 surface_color = "#575d5e" water_color = null + possible_random_ruins = list( + /datum/map_template/ruin/exoplanet/crashed_sol_shuttle_01, + /datum/map_template/ruin/exoplanet/crashed_skrell_shuttle_01, + /datum/map_template/ruin/exoplanet/mystery_ship_1, + /datum/map_template/ruin/exoplanet/drill_site) + /obj/effect/overmap/visitable/sector/exoplanet/lava/generate_habitability() return HABITABILITY_BAD diff --git a/html/changelogs/wickedcybs_ruined.yml b/html/changelogs/wickedcybs_ruined.yml new file mode 100644 index 00000000000..d66dfef0127 --- /dev/null +++ b/html/changelogs/wickedcybs_ruined.yml @@ -0,0 +1,6 @@ +author: WickedCybs + +delete-after: True + +changes: + - rscadd: "Ports a lot of the old Aurora asteroid ruins to the exoplanets the Horizon will encounter. Most of the content is on barren exos/asteroids unfortunately. " \ No newline at end of file diff --git a/maps/random_ruins/exoplanets/asteroid/asteroid.dm b/maps/random_ruins/exoplanets/asteroid/asteroid.dm index 4886ff3140c..3696ba04f95 100644 --- a/maps/random_ruins/exoplanets/asteroid/asteroid.dm +++ b/maps/random_ruins/exoplanets/asteroid/asteroid.dm @@ -4,9 +4,9 @@ description = "An abandoned mining site. Some tools and materials were left behind." spawn_weight = 1 - spawn_cost = 2 + spawn_cost = 1 sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS) - suffixes = list("asteroid/mining_base.dmm") + suffixes = list("asteroid/mining_base/mining_base.dmm") ruin_tags = RUIN_HUMAN|RUIN_VOID @@ -16,9 +16,9 @@ description = "A nest of deadly space carps." spawn_weight = 1 - spawn_cost = 2 + spawn_cost = 1 sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS) - suffixes = list("asteroid/carp_nest.dmm") + suffixes = list("asteroid/carp_nest/carp_nest.dmm") ruin_tags = RUIN_ALIEN|RUIN_VOID @@ -28,9 +28,9 @@ description = "An abandoned hideout, seemingly once belonging to a marooned crew." spawn_weight = 0.5 - spawn_cost = 4 + spawn_cost = 2 sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS) - suffixes = list("asteroid/hideout.dmm") + suffixes = list("asteroid/hideout/hideout.dmm") ruin_tags = RUIN_HUMAN|RUIN_WRECK|RUIN_VOID @@ -40,9 +40,125 @@ description = "A crashed shuttle, with some gear left behind." spawn_weight = 1 - spawn_cost = 2 + spawn_cost = 1 sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS) - suffixes = list("asteroid/crashed_shuttle_01.dmm") + suffixes = list("asteroid/crashed_shuttle/crashed_shuttle_01.dmm") ruin_tags = RUIN_WRECK|RUIN_VOID +/datum/map_template/ruin/exoplanet/crashed_sol_shuttle_01 + name = "Crashed Solarian Shuttle" + id = "crashed_sol_shuttle_1" + description = "A crashed sol shuttle, with some gear left behind." + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + + spawn_weight = 1 + spawn_cost = 2 + sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS) + suffixes = list("asteroid/sol_ship/sol_ship_unique") + + ruin_tags = RUIN_HUMAN|RUIN_WRECK|RUIN_VOID + +/datum/map_template/ruin/exoplanet/crashed_skrell_shuttle_01 + name = "Crashed Skrellian Shuttle" + id = "crashed_skrell_shuttle_1" + description = "A crashed skrell shuttle, with some gear left behind." + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + + spawn_weight = 1 + spawn_cost = 2 + sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS) + suffixes = list("asteroid/skrell_ship/skrell_crash_unique") + + ruin_tags = RUIN_WRECK|RUIN_VOID|RUIN_ALIEN + +/datum/map_template/ruin/exoplanet/mystery_ship_1 + name = "Mystery Ship" + id = "mystery_ship_1" + description = "An unmarked shuttle in almost pristine condition. The occupants are nowhere to be found." + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + + spawn_weight = 1 + spawn_cost = 2 + sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS) + suffixes = list("asteroid/mystery_ship/mystery_ship_unique") + + ruin_tags = RUIN_HUMAN|RUIN_VOID + +/datum/map_template/ruin/exoplanet/crashed_satelite + name = "Crashed Satelite" + id = "crashed_satelite" + description = "A crashed satelite." + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + + spawn_weight = 1 + spawn_cost = 1 + sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS, SECTOR_NEW_ANKARA, SECTOR_AEMAQ, SECTOR_SRANDMARR, SECTOR_NRRAHRAHUL, SECTOR_GAKAL, SECTOR_UUEOAESA) + suffixes = list("asteroid/satelite_crash/satelite_crash_unique") + + ruin_tags = RUIN_WRECK|RUIN_VOID + +/datum/map_template/ruin/exoplanet/abandoned_listening_post + name = "Abandoned Listening Post" + id = "abandoned_listening_post" + description = "An abandoned listening post." + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + + spawn_weight = 1 + spawn_cost = 2 + sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS) + suffixes = list("asteroid/listening_post/listening_post_unique") + + ruin_tags = RUIN_HUMAN|RUIN_WRECK|RUIN_VOID + +/datum/map_template/ruin/exoplanet/crashed_escape_pod_1 + name = "Crashed Escape Pod" + id = "crashed_escape_pod_1" + description = "A crashed escape pod." + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + + spawn_weight = 1 + spawn_cost = 0.5 + sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS, SECTOR_NEW_ANKARA, SECTOR_AEMAQ) + suffixes = list("asteroid/escape_pod/escape_pod_unique") + + ruin_tags = RUIN_HUMAN|RUIN_WRECK|RUIN_VOID + +/datum/map_template/ruin/exoplanet/digsite + name = "Digsite" + id = "digsite" + description = "A research digsite." + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + + spawn_weight = 1 + spawn_cost = 0.5 + sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS, SECTOR_NEW_ANKARA, SECTOR_AEMAQ) + suffixes = list("asteroid/digsite/digsite_unique") + + ruin_tags = RUIN_HUMAN + +/datum/map_template/ruin/exoplanet/crashed_pod + name = "Crashed Pod" + id = "crashed_pod" + description = "A crashed pod." + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + + spawn_weight = 1 + spawn_cost = 0.5 + sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS, SECTOR_NEW_ANKARA, SECTOR_AEMAQ) + suffixes = list("asteroid/crashed_pod/crashed_pod_unique") + + ruin_tags = RUIN_HUMAN|RUIN_WRECK|RUIN_VOID + +/datum/map_template/ruin/exoplanet/crashed_coc_skipjack + name = "Crashed Coalition Skipjack" + id = "crashed_coc_skipjack" + description = "A crashed Coalition skipjack, with some gear left behind." + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + + spawn_weight = 1 + spawn_cost = 2 + sectors = list(SECTOR_TAU_CETI, SECTOR_ROMANOVICH, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS) + suffixes = list("asteroid/coc_ship/coc_ship_unique") + + ruin_tags = RUIN_HUMAN|RUIN_WRECK|RUIN_VOID \ No newline at end of file diff --git a/maps/random_ruins/exoplanets/asteroid/carp_nest.dmm b/maps/random_ruins/exoplanets/asteroid/carp_nest/carp_nest.dmm similarity index 100% rename from maps/random_ruins/exoplanets/asteroid/carp_nest.dmm rename to maps/random_ruins/exoplanets/asteroid/carp_nest/carp_nest.dmm diff --git a/maps/random_ruins/exoplanets/asteroid/coc_ship/coc_ship_unique.dmm b/maps/random_ruins/exoplanets/asteroid/coc_ship/coc_ship_unique.dmm new file mode 100644 index 00000000000..6c6d222bf7b --- /dev/null +++ b/maps/random_ruins/exoplanets/asteroid/coc_ship/coc_ship_unique.dmm @@ -0,0 +1,2350 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,10" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"aB" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "19,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"aS" = ( +/obj/structure/reagent_dispensers/fueltank{ + reagents_to_add = null + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/plating, +/area/template_noop) +"aT" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -21 + }, +/obj/random/medical, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/table/standard, +/obj/effect/decal/cleanable/dirt, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"ba" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 8; + name = "shuttle airlock pressure regulator"; + target_pressure = 50; + unlocked = 1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/closet/walllocker/firecloset{ + pixel_y = 30 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"bA" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled, +/area/template_noop) +"bB" = ( +/obj/structure/lattice, +/obj/item/material/shard, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"bH" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "5,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"bI" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "9,1" + }, +/obj/effect/map_effect/airlock/long{ + door_name = "ship airlock"; + required_access = null + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"bO" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,15" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"bQ" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"bW" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,4"; + name = "Skipjack" + }, +/area/template_noop) +"cc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/template_noop) +"ci" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,6" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"cq" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,11" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"cv" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "16,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"cx" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,12"; + name = "Skipjack" + }, +/area/template_noop) +"cD" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,4"; + name = "Skipjack" + }, +/area/template_noop) +"cE" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,7" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"cT" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/random, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/storage/toggle/leather_jacket/flight/legion/alt, +/turf/simulated/floor/carpet, +/area/template_noop) +"dl" = ( +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/mop, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"dG" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "1,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"ee" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "14,4"; + name = "Skipjack" + }, +/area/template_noop) +"ef" = ( +/obj/structure/table/steel, +/obj/item/material/knife{ + pixel_x = -5 + }, +/obj/item/material/kitchen/rollingpin{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/glass/beaker, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"eh" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "15,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"eo" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,2"; + name = "Skipjack" + }, +/area/template_noop) +"ew" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/cee, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/plating, +/area/template_noop) +"eP" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "15,2"; + name = "Skipjack" + }, +/area/template_noop) +"eQ" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,2"; + name = "Skipjack" + }, +/area/template_noop) +"eV" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "4,16"; + name = "Skipjack" + }, +/area/template_noop) +"fc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/template_noop) +"fg" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "20,0" + }, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"fl" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/clothing/gloves/yellow, +/obj/item/storage/belt/utility/full, +/turf/simulated/floor/plating, +/area/template_noop) +"fm" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/plating, +/area/template_noop) +"fw" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/template_noop) +"fx" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/dogtags{ + desc = "A pair of engraved metal identification tags. These belonging to a Coalition of Colonies ranger."; + name = "ranger dogtags"; + pixel_x = -16 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"fP" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "7,4"; + name = "Skipjack" + }, +/area/template_noop) +"fT" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "15,9"; + name = "Skipjack" + }, +/area/template_noop) +"fZ" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "3,7"; + name = "Skipjack" + }, +/area/template_noop) +"gg" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "6,3"; + outside_part = 0 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"go" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "15,14" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"gp" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "14,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"gr" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,3"; + name = "Skipjack" + }, +/area/template_noop) +"gB" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "2,2"; + name = "Skipjack" + }, +/area/template_noop) +"gF" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,7"; + name = "Skipjack" + }, +/area/template_noop) +"gH" = ( +/obj/structure/shuttle_part/raider, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"gQ" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/fake_object{ + density = 1; + desc = "A no longer functional cryogenic freezer."; + icon = 'icons/obj/sleeper.dmi'; + icon_state = "body_scanner"; + name = "dilapitated cryogenic freezer"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt{ + layer = 3.1 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"hg" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,14"; + name = "Skipjack" + }, +/area/template_noop) +"hh" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,12" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"hv" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,14" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"hz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/wood, +/area/template_noop) +"hE" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/table/standard, +/obj/item/stack/nanopaste{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"hN" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "2,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"hP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/loot{ + desc = "A container for supplies."; + name = "supply shipment"; + quantity = 4 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"in" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"ir" = ( +/obj/structure/closet/walllocker/medical/secure{ + name = "blood closet"; + pixel_y = 32; + req_access = null; + store_mobs = 0 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"iw" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "8,4"; + name = "Skipjack" + }, +/area/template_noop) +"iD" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,9" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"jg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"jk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/colored/red{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/template_noop) +"jl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/template_noop) +"jI" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "6,2"; + name = "Skipjack" + }, +/area/template_noop) +"jQ" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "16,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"jU" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "16,16" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"jZ" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,3" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"km" = ( +/obj/item/reagent_containers/hypospray/autoinjector/survival{ + pixel_y = 8 + }, +/obj/random/medical, +/obj/random/medical, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/table/standard, +/obj/effect/decal/cleanable/dirt, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"kv" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "9,3"; + name = "Skipjack" + }, +/area/template_noop) +"kz" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,5"; + name = "Skipjack" + }, +/area/template_noop) +"kB" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "13,3" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"kG" = ( +/obj/structure/table/steel, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/shaker/spacespice{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"kQ" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "5,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"li" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "12,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"lm" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "3,2"; + name = "Skipjack" + }, +/area/template_noop) +"lv" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"lG" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "19,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"lL" = ( +/obj/structure/window/shuttle/unique/raider{ + icon_state = "11,16"; + name = "skipjack cockpit" + }, +/turf/simulated/floor/plating{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"lP" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "7,7"; + outside_part = 0 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"mi" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "2,3"; + outside_part = 0 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"mr" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,11"; + name = "Skipjack" + }, +/area/template_noop) +"mu" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,8" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"mA" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "5,2"; + name = "Skipjack" + }, +/area/template_noop) +"mG" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "6,3"; + layer = 3.5; + outside_part = 0 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/table/standard, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"mU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/plating, +/area/template_noop) +"mV" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,13"; + name = "Skipjack" + }, +/area/template_noop) +"mY" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "20,16" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"ns" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "2,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"nB" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "9,4"; + name = "Skipjack" + }, +/area/template_noop) +"nC" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "12,3"; + name = "Skipjack" + }, +/area/template_noop) +"nF" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "17,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"nG" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/device/suit_cooling_unit/no_cell, +/turf/simulated/floor/plating, +/area/template_noop) +"nH" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "13,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"nI" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/template_noop) +"nS" = ( +/obj/machinery/door/airlock/sac{ + electrified_until = 0; + icon_state = "door_locked"; + locked = 1; + welded = 1 + }, +/obj/structure/inflatable/wall, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/template_noop) +"nX" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/poncho, +/obj/random/melee, +/obj/random/loot, +/obj/random/loot, +/obj/random/loot, +/obj/random/loot, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/template_noop) +"nY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"oe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/melee, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"oh" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "15,12" + }, +/obj/structure/lattice/catwalk, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"oq" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "7,3"; + name = "Skipjack" + }, +/area/template_noop) +"ow" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "14,3"; + name = "Skipjack" + }, +/area/template_noop) +"oE" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,7"; + name = "Skipjack" + }, +/area/template_noop) +"oO" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "17,2"; + name = "Skipjack" + }, +/area/template_noop) +"pl" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "5,15"; + name = "Skipjack" + }, +/area/template_noop) +"ps" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "6,15" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"pv" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "15,3"; + layer = 3.5; + outside_part = 0 + }, +/obj/structure/table/steel, +/obj/item/weldingtool{ + pixel_x = 11 + }, +/obj/item/stack/cable_coil/random, +/obj/item/cell, +/obj/item/device/flashlight/lamp{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/machinery/cell_charger{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"pw" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "13,2" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"pA" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "20,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"pK" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "17,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"pP" = ( +/turf/template_noop, +/area/template_noop) +"pS" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "4,12"; + name = "Skipjack" + }, +/area/template_noop) +"qd" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "4,2"; + name = "Skipjack" + }, +/area/template_noop) +"qn" = ( +/obj/structure/bed/stool/chair/padded/red, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/tiled, +/area/template_noop) +"qo" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/random, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/template_noop) +"qu" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "17,13"; + name = "Skipjack" + }, +/area/template_noop) +"qH" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,8"; + name = "Skipjack" + }, +/area/template_noop) +"qM" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,14"; + name = "Skipjack" + }, +/area/template_noop) +"ra" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/colored/red, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"ri" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,7" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"ru" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "5,14"; + name = "Skipjack" + }, +/area/template_noop) +"rF" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "6,14" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"rV" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,2" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"sf" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"sk" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/plating, +/area/template_noop) +"st" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,5" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"sx" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "18,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"sA" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "5,13"; + name = "Skipjack" + }, +/area/template_noop) +"sM" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "6,13" + }, +/obj/structure/railing/mapped, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"sW" = ( +/obj/structure/lattice, +/mob/living/simple_animal/hostile/carp{ + destroy_surroundings = 0; + wander = 0 + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"tf" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "16,2"; + name = "Skipjack" + }, +/area/template_noop) +"tu" = ( +/obj/structure/railing/mapped, +/turf/template_noop, +/area/template_noop) +"tw" = ( +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"tA" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,10"; + name = "Skipjack" + }, +/area/template_noop) +"tT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/machinery/floodlight, +/obj/machinery/recharger/wallcharger{ + charging_efficiency = 0.5; + name = "worn wall recharger"; + pixel_x = 4; + pixel_y = 23 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"tU" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,5"; + name = "Skipjack" + }, +/area/template_noop) +"uf" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"un" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "15,13" + }, +/obj/structure/railing/mapped, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"uw" = ( +/obj/structure/lattice, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"uL" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,15"; + name = "Skipjack" + }, +/area/template_noop) +"uO" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,15" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"uV" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"vo" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,4" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"vy" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "7,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"vE" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "3,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"vL" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "6,12" + }, +/obj/structure/lattice/catwalk, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"vO" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/mob/living/simple_animal/carp/baby, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"vQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"vY" = ( +/obj/structure/lattice/catwalk, +/obj/item/pickaxe/jackhammer{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"wt" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"wy" = ( +/obj/structure/lattice/catwalk, +/obj/vehicle/bike/speeder, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"wB" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,2" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"wG" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "16,12"; + name = "Skipjack" + }, +/area/template_noop) +"wH" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "19,2"; + name = "Skipjack" + }, +/area/template_noop) +"wR" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "modified autolathe"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/tiled, +/area/template_noop) +"wV" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "3,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"xi" = ( +/mob/living/simple_animal/hostile/carp{ + destroy_surroundings = 0; + dir = 1; + wander = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"xj" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"xL" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,14" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"xN" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "7,2"; + name = "Skipjack" + }, +/area/template_noop) +"xW" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,13" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"xX" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,5" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"ye" = ( +/obj/structure/lattice, +/obj/structure/closet/crate/secure/loot, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"ym" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "13,10"; + name = "Skipjack" + }, +/area/template_noop) +"yw" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "14,2"; + name = "Skipjack" + }, +/area/template_noop) +"yy" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,6" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"yD" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"yH" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "15,7"; + name = "Skipjack" + }, +/area/template_noop) +"yY" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "5,11"; + name = "Skipjack" + }, +/area/template_noop) +"zm" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"zq" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,13" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"zx" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "6,11" + }, +/obj/structure/lattice/catwalk, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"zF" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "5,12"; + name = "Skipjack" + }, +/area/template_noop) +"zK" = ( +/mob/living/simple_animal/hostile/carp, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"zM" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"zW" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,3"; + name = "Skipjack" + }, +/area/template_noop) +"AI" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "15,11" + }, +/obj/structure/lattice/catwalk, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"Ba" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,13"; + name = "Skipjack" + }, +/area/template_noop) +"Bc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/binoculars, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"Bf" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/helmet/space/void/coalition{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/clothing/suit/space/void/coalition, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"BJ" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"BS" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "6,10"; + name = "Skipjack" + }, +/area/template_noop) +"BU" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "7,10"; + name = "Skipjack" + }, +/area/template_noop) +"Ca" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "8,10"; + name = "Skipjack" + }, +/area/template_noop) +"Cg" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "12,10"; + name = "Skipjack" + }, +/area/template_noop) +"Ci" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "14,10"; + name = "Skipjack" + }, +/area/template_noop) +"CB" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "15,10"; + name = "Skipjack" + }, +/area/template_noop) +"CD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/colored/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"CI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/simple_animal/hostile/carp{ + destroy_surroundings = 0; + dir = 8; + wander = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"CY" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "19,3"; + layer = 3.5; + outside_part = 0 + }, +/obj/item/ammo_casing/gauss, +/obj/item/ammo_casing/gauss, +/obj/item/ammo_casing/gauss, +/obj/item/ammo_casing/gauss, +/obj/item/ammo_casing/gauss, +/obj/item/ammo_casing/gauss, +/obj/item/ammo_casing/gauss, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/gauss{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"DB" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/fake_object{ + density = 1; + desc = "A no longer functional cryogenic freezer."; + icon = 'icons/obj/sleeper.dmi'; + icon_state = "body_scanner"; + name = "dilapitated cryogenic freezer"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt{ + layer = 3.1 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"DE" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,10"; + name = "Skipjack" + }, +/area/template_noop) +"DK" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,10" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"DL" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "6,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"DQ" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "13,4"; + name = "Skipjack" + }, +/area/template_noop) +"Eo" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "5,9"; + name = "Skipjack" + }, +/area/template_noop) +"Er" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "6,9"; + name = "Skipjack" + }, +/area/template_noop) +"Ev" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "7,9"; + outside_part = 0 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"Ex" = ( +/obj/structure/table/steel, +/obj/item/stack/material/phoron/full{ + pixel_x = 12 + }, +/obj/item/clothing/head/welding, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/tiled, +/area/template_noop) +"EJ" = ( +/obj/structure/bed/stool/chair/padded/brown, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"ES" = ( +/obj/machinery/appliance/cooker/stove, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"EX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"Fd" = ( +/obj/random/booze, +/obj/structure/table/wood, +/obj/structure/sign/flag/coalition/left{ + pixel_x = -16; + pixel_y = 29 + }, +/obj/structure/sign/flag/coalition/right{ + pixel_x = 16; + pixel_y = 29 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"Fm" = ( +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/template_noop) +"FF" = ( +/obj/structure/shuttle_part/raider{ + density = 0; + icon_state = "21,1" + }, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"FT" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "16,9"; + name = "Skipjack" + }, +/area/template_noop) +"Gj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/coolanttank, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"GM" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,6"; + name = "Skipjack" + }, +/area/template_noop) +"GN" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,9"; + name = "Skipjack" + }, +/area/template_noop) +"GS" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,9" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"GZ" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/plating, +/area/template_noop) +"Hc" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "1,0" + }, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"Hp" = ( +/obj/structure/table/steel, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/rods/full, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/tiled, +/area/template_noop) +"Hq" = ( +/obj/random/keg, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/template_noop) +"Hu" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "6,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"Hz" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "4,7"; + name = "Skipjack" + }, +/area/template_noop) +"HD" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"HN" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + locked = 1; + welded = 1 + }, +/obj/structure/inflatable/wall, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/template_noop) +"HO" = ( +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/snacks/meat/adhomai, +/obj/item/reagent_containers/food/snacks/meat/adhomai, +/obj/item/reagent_containers/food/snacks/meat/adhomai, +/obj/structure/closet/secure_closet/freezer/fridge{ + desc = "It looks like it has not been used for some time."; + name = "dust-covered refrigerator" + }, +/obj/machinery/light/colored/red, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"HY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"Id" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,8"; + name = "Skipjack" + }, +/area/template_noop) +"Ie" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,9"; + name = "Skipjack" + }, +/area/template_noop) +"Iv" = ( +/obj/machinery/door/airlock/sac{ + electrified_until = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/template_noop) +"Iw" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/plating, +/area/template_noop) +"IE" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,8" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"IT" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "12,4"; + name = "Skipjack" + }, +/area/template_noop) +"IY" = ( +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"Ja" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/template_noop) +"Jk" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "15,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"Jl" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "21,4" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"Jn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/plating, +/area/template_noop) +"Jy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/template_noop) +"Kf" = ( +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"Kk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"KN" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"Mx" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "2,12"; + name = "Skipjack" + }, +/area/template_noop) +"Od" = ( +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"Po" = ( +/obj/item/reagent_containers/cooking_container/plate/bowl{ + pixel_y = 8 + }, +/obj/item/storage/box/fancy/cigarettes, +/obj/item/deck/cards{ + pixel_y = 17 + }, +/obj/structure/table/wood, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"Qe" = ( +/obj/effect/landmark/clear, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"QL" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "20,6"; + name = "Skipjack" + }, +/area/template_noop) +"QZ" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "16,10"; + name = "Skipjack" + }, +/area/template_noop) +"Rr" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "18,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"RI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/loot{ + desc = "A container for supplies."; + name = "supply shipment"; + quantity = 4 + }, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"RK" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "1,15"; + name = "Skipjack" + }, +/area/template_noop) +"RO" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,1" + }, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"Sc" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"Sm" = ( +/obj/structure/shuttle_part/raider{ + density = 0; + icon_state = "7,0" + }, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"Sw" = ( +/obj/structure/lattice, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"Tc" = ( +/turf/simulated/floor/tiled/dark{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"TE" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "4,0" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"TJ" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "18,2"; + name = "Skipjack" + }, +/area/template_noop) +"TK" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "14,9"; + outside_part = 0 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/carpet/rubber, +/area/template_noop) +"Ue" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "0,3" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"Ui" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "5,10"; + name = "Skipjack" + }, +/area/template_noop) +"Uz" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "8,3" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"Vn" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "16,11"; + name = "Skipjack" + }, +/area/template_noop) +"VR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"VT" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "8,2" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"Xd" = ( +/obj/structure/shuttle_part/raider{ + icon_state = "8,1" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"XI" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/asteroid{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"XY" = ( +/obj/item/material/shard/shrapnel, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"Yb" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "19,13"; + name = "Skipjack" + }, +/area/template_noop) +"Yd" = ( +/turf/simulated/wall/shuttle/unique/raider{ + desc = "A quick, agile and sturdy shuttle. Perfect for smugglers and pirates, but recently proliferated in civilian hands."; + icon_state = "7,5"; + name = "Skipjack" + }, +/area/template_noop) +"Zd" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/template_noop) + +(1,1,1) = {" +pP +Od +bO +hv +xW +hh +cq +aa +iD +mu +cE +ci +st +vo +Ue +rV +RO +tw +"} +(2,1,1) = {" +pP +jU +RK +hg +mV +cx +mr +tA +Ie +qH +gF +GM +kz +bW +gr +eo +dG +Hc +"} +(3,1,1) = {" +pP +uw +bB +sf +sf +Mx +nX +Hq +Fm +fw +fZ +hE +dl +in +mi +gB +ns +hN +"} +(4,1,1) = {" +tw +bQ +Tc +uw +Kk +nS +hz +jl +jl +hP +fZ +gQ +Bf +zm +Zd +lm +vE +wV +"} +(5,1,1) = {" +tw +lL +sf +lv +HY +pS +jk +fc +fc +hz +fZ +DB +fx +yD +ra +qd +gH +TE +"} +(6,1,1) = {" +tw +eV +IY +oe +Bc +pS +cT +qo +qo +jl +fZ +ir +zm +wt +km +mA +bH +kQ +"} +(7,1,1) = {" +tw +mY +pl +ru +sA +zF +yY +Ui +Eo +Iv +fZ +KN +uf +aT +mG +jI +Hu +DL +"} +(8,1,1) = {" +Qe +tw +ps +rF +sM +vL +zx +BS +Er +Kf +lP +Ja +Yd +fP +oq +xN +vy +Sm +"} +(9,1,1) = {" +tw +Qe +tw +tw +tu +vY +uV +BU +Ev +Kf +Kf +Kf +kG +iw +Uz +VT +Xd +tw +"} +(10,1,1) = {" +pP +tw +tw +tw +tw +uV +uV +Ca +EJ +Kf +Kf +Kf +ES +nB +kv +qu +bI +tw +"} +(11,1,1) = {" +pP +tw +pP +zK +tw +uV +zM +Cg +Fd +Po +Sc +Bi +vQ +Jy +Jy +Jy +Jy +tw +"} +(12,1,1) = {" +pP +tw +tw +tw +tw +uV +uV +ym +BJ +BJ +Kf +nY +HO +IT +nC +qu +li +tw +"} +(13,1,1) = {" +pP +tw +tw +tw +tu +wy +wy +Ci +TK +Kf +Kf +nY +ef +DQ +kB +pw +nH +tw +"} +(14,1,1) = {" +tw +tw +tw +go +un +oh +AI +CB +fT +HD +gg +nI +Yd +ee +ow +yw +gp +Od +"} +(15,1,1) = {" +tw +tw +tw +XI +wG +wG +Vn +QZ +FT +HN +yH +Jn +fl +wR +pv +eP +Jk +eh +"} +(16,1,1) = {" +tw +tw +pP +tw +jg +xi +RI +CD +RI +jg +Hz +mU +sk +qn +Ex +tf +cv +jQ +"} +(17,1,1) = {" +tw +tw +tw +XY +Sw +xj +xj +Od +uw +vO +Hz +ba +nG +bA +Hp +oO +nF +pK +"} +(18,1,1) = {" +pP +tw +tw +tw +jg +uw +EX +CI +RI +RI +Hz +tT +Iw +cc +aS +TJ +sx +Rr +"} +(19,1,1) = {" +pP +tw +tw +tw +Od +ye +sW +RI +Gj +VR +Yb +fm +GZ +ew +CY +wH +aB +lG +"} +(20,1,1) = {" +pP +tw +pP +tw +uL +qM +Ba +DE +GN +Id +oE +QL +tU +cD +zW +eQ +pA +fg +"} +(21,1,1) = {" +pP +pP +pP +tw +uO +xL +zq +DK +GS +IE +ri +yy +xX +Jl +jZ +wB +FF +tw +"} diff --git a/maps/random_ruins/exoplanets/asteroid/crashed_pod/crashed_pod_unique.dmm b/maps/random_ruins/exoplanets/asteroid/crashed_pod/crashed_pod_unique.dmm new file mode 100644 index 00000000000..085323e1230 --- /dev/null +++ b/maps/random_ruins/exoplanets/asteroid/crashed_pod/crashed_pod_unique.dmm @@ -0,0 +1,352 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral, +/area/template_noop) +"b" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains/human, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"c" = ( +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"d" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"e" = ( +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"f" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/template_noop) +"i" = ( +/obj/item/arrow/rod, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"j" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"k" = ( +/obj/item/arrow/rod, +/mob/living/simple_animal/hostile/carp/shark{ + wander = 0 + }, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"l" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains/human, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"m" = ( +/obj/item/material/shard{ + icon_state = "small" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"n" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/item/material/shard, +/turf/simulated/floor/airless, +/area/template_noop) +"o" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"p" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/template_noop) +"q" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor, +/area/template_noop) +"t" = ( +/turf/simulated/wall/shuttle/cardinal, +/area/template_noop) +"u" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"v" = ( +/obj/random/loot, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"w" = ( +/obj/random/voidsuit, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"x" = ( +/obj/item/device/gps, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"y" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/airless, +/area/template_noop) +"z" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"A" = ( +/mob/living/simple_animal/hostile/carp{ + wander = 0 + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"B" = ( +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"C" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"D" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"E" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"F" = ( +/obj/effect/decal/cleanable/blood/drip, +/mob/living/simple_animal/hostile/carp{ + wander = 0 + }, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"G" = ( +/obj/structure/grille, +/obj/item/material/shard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/template_noop) +"H" = ( +/obj/random/loot, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"I" = ( +/turf/template_noop, +/area/template_noop) +"K" = ( +/obj/item/arrow/rod, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) + +(1,1,1) = {" +B +B +B +I +a +a +a +a +a +a +"} +(2,1,1) = {" +A +B +B +B +a +a +a +a +a +a +"} +(3,1,1) = {" +c +c +B +B +t +b +a +a +a +a +"} +(4,1,1) = {" +c +H +t +t +t +b +k +a +a +a +"} +(5,1,1) = {" +c +c +y +j +G +d +w +a +a +a +"} +(6,1,1) = {" +K +c +z +d +D +E +d +u +a +a +"} +(7,1,1) = {" +o +m +n +i +y +e +F +v +a +a +"} +(8,1,1) = {" +o +c +t +t +t +C +x +l +t +a +"} +(9,1,1) = {" +c +o +B +B +t +b +e +l +t +a +"} +(10,1,1) = {" +c +o +B +B +t +q +p +f +t +I +"} diff --git a/maps/random_ruins/exoplanets/asteroid/crashed_shuttle_01.dmm b/maps/random_ruins/exoplanets/asteroid/crashed_shuttle/crashed_shuttle_01.dmm similarity index 100% rename from maps/random_ruins/exoplanets/asteroid/crashed_shuttle_01.dmm rename to maps/random_ruins/exoplanets/asteroid/crashed_shuttle/crashed_shuttle_01.dmm diff --git a/maps/dungeon_spawns/digsite_unique.dmm b/maps/random_ruins/exoplanets/asteroid/digsite/digsite_unique.dmm similarity index 75% rename from maps/dungeon_spawns/digsite_unique.dmm rename to maps/random_ruins/exoplanets/asteroid/digsite/digsite_unique.dmm index df26b651e59..8968311a97c 100644 --- a/maps/dungeon_spawns/digsite_unique.dmm +++ b/maps/random_ruins/exoplanets/asteroid/digsite/digsite_unique.dmm @@ -1,29 +1,33 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/turf/unsimulated/chasm_mask, -/area/mine/unexplored) +/turf/template_noop, +/area/template_noop) "ab" = ( -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) +/turf/simulated/mineral, +/area/template_noop) "ac" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ - dir = 9 + dir = 10 }, /turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/area/template_noop) "ad" = ( -/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 8 }, /turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/area/template_noop) "ae" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 5 + dir = 10 }, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/turf/simulated/floor/plating/asteroid{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) "af" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; @@ -33,101 +37,111 @@ /turf/simulated/floor, /area/dungeon/anomaly_outpost) "ag" = ( -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) -"ah" = ( -/obj/structure/inflatable/wall, -/turf/unsimulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ai" = ( -/obj/structure/inflatable/wall, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) -"aj" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) -"ak" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) -"al" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) -"am" = ( +/area/template_noop) +"ah" = ( +/obj/structure/inflatable/wall, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"ai" = ( /obj/machinery/floodlight, /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) -"an" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/turf/simulated/floor/plating/asteroid{ + nitrogen = 0; + oxygen = 0 }, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) -"ao" = ( +/area/template_noop) +"aj" = ( /obj/machinery/artifact, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) -"ap" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/area/template_noop) +"ak" = ( +/turf/simulated/floor/plating/asteroid{ + nitrogen = 0; + oxygen = 0 }, +/area/template_noop) +"al" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating/asteroid{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"am" = ( +/obj/structure/inflatable/wall, /turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/area/template_noop) +"an" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating/asteroid{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"ao" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating/asteroid{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"ap" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/airless/ceiling, +/area/template_noop) "aq" = ( /obj/machinery/floodlight, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/turf/simulated/floor/plating/asteroid{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) "ar" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) "as" = ( /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) -"at" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/area/template_noop) +"at" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/airless/ceiling, +/area/template_noop) "au" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/area/template_noop) "av" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating/asteroid{ + nitrogen = 0; + oxygen = 0 }, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/area/template_noop) "aw" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1353; @@ -146,9 +160,15 @@ /turf/simulated/floor, /area/dungeon/anomaly_outpost) "ax" = ( -/obj/structure/inflatable/door, -/turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) "az" = ( /turf/simulated/wall, /area/dungeon/anomaly_outpost) @@ -183,8 +203,12 @@ /turf/simulated/floor, /area/dungeon/anomaly_outpost) "aD" = ( -/turf/simulated/mineral, -/area/mine/unexplored) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/airless/ceiling, +/area/template_noop) "aE" = ( /obj/machinery/access_button/airlock_exterior{ frequency = 1353; @@ -341,9 +365,9 @@ /turf/simulated/floor, /area/dungeon/anomaly_outpost) "bb" = ( -/obj/machinery/floodlight, +/obj/structure/inflatable/door, /turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/area/template_noop) "bc" = ( /obj/machinery/light/small/emergency{ dir = 4 @@ -405,31 +429,22 @@ /turf/simulated/floor, /area/dungeon/anomaly_outpost) "Vd" = ( -/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /turf/simulated/floor/airless/ceiling, -/area/mine/unexplored) +/area/template_noop) (1,1,1) = {" aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +ar +ar +ar +ar aa aa aa @@ -446,25 +461,13 @@ aa (2,1,1) = {" aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +ar +al +ai +ae +ar +ar aa aa aa @@ -479,27 +482,15 @@ aa "} (3,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +ar +al +ar +ak +ar +ae +ar +ar aa aa aa @@ -512,29 +503,17 @@ aa aa "} (4,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +ar +al +ah +ah +am +ah +ah +ae +ar +ar aa aa aa @@ -546,276 +525,180 @@ aa aa "} (5,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +al +ar +ah +aD +ad +ac +ah +ar +ae +ar +ar +ar +ar +ar +ap +ar aa aa aa "} (6,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +ax +ak +am +ag +aj +as +bb +ak +av +ak +ak +ak +ak +ak +ar +ar aa aa aa "} (7,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +an +ar +ah +at +Vd +au +ah +ar +ao +ar +ar +aE +ak +ak +bc +ar aa aa aa "} (8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +ar +an +ah +ah +am +ah +ah +ao +ar +ar +ar +az +aL +aL +az +ab aa aa aa "} (9,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +ar +an +ar +ak +ar +ao +ar +ar +ar +ar +aA +aM +aU +az +ab +ab aa aa "} (10,1,1) = {" aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ar +ar +an +aq +ao +ar +ar +ar +ar +ar +aC +af +aw +az ab ab ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa aa "} (11,1,1) = {" aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ac -am ar +ar +ar +ar +ar +ar +ar +ar +az +az +aO +aO +az +az +ab ab ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (12,1,1) = {" aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ac -ab -ag -ab ar +ar +ar +ar +ar +ar +ar +aA +aF +aP +aW +bd +az +ab ab ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (13,1,1) = {" aa @@ -823,33 +706,21 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ac -ah -ah -ai -ah -ah ar +ar +ar +ar +ar +ar +aB +aG +aQ +aX +be +az +ab ab ab -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (14,1,1) = {" aa @@ -858,32 +729,20 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -ab -ac -ab -ah -aj -an -as -ah -ab ar +ar +ar +ar +ar +aB +aH +aR +aX +bf +az ab ab ab -ab -ab -bb -ab -aa -aa -aa "} (15,1,1) = {" aa @@ -892,32 +751,20 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -ab -ad -ag -ai -ak -ao -at -ax -ag -Vd -ag -ag -ag -ag -ag +ar +ar +ar +ar +ar +aB +aI +aR +aX +bg +az +ab ab ab -aa -aa -aa "} (16,1,1) = {" aa @@ -927,31 +774,19 @@ aa aa aa aa -aa -aa -aa -aa -aa -ab -ae -ab -ah -al -ap -au -ah -ab -av +ar +ar +ar +ar +aC +aJ +aS +aY +bh +az ab ab -aE -ag -ag -bc ab -aa -aa -aa "} (17,1,1) = {" aa @@ -961,31 +796,19 @@ aa aa aa aa -aa -aa -aa -aa -aa -ab -ab -ae -ah -ah -ai -ah -ah -av -ab -ab -ab +ar +ar +ar +ar az -aL -aL az -aD -aa -aa -aa +bi +aZ +az +az +ab +ab +ab "} (18,1,1) = {" aa @@ -999,27 +822,15 @@ aa aa aa aa -aa -aa ab -ab -ae -ab -ag -ab -av -ab -ab -ab -ab -aA -aM -aU az -aD -aD -aa -aa +aT +ba +az +ab +ab +ab +ab "} (19,1,1) = {" aa @@ -1033,27 +844,15 @@ aa aa aa aa -aa -aa -aa ab -ab -ae -aq -av -ab -ab -ab -ab -ab -aC -af -aw az -aD -aD -aD -aa +az +az +az +ab +ab +ab +ab "} (20,1,1) = {" aa @@ -1068,26 +867,14 @@ aa aa aa aa +ab +ab +ab +ab +ab +ab +ab aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -az -az -aO -aO -az -az -aD -aD -aD "} (21,1,1) = {" aa @@ -1103,397 +890,11 @@ aa aa aa aa -aa -aa -aa ab ab ab ab ab -ab -ab -aA -aF -aP -aW -bd -az -aD -aD -aD -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aB -aG -aQ -aX -be -az -aD -aD -aD -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aB -aH -aR -aX -bf -az -aD -aD -aD -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aB -aI -aR -aX -bg -az -aD -aD -aD -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aC -aJ -aS -aY -bh -az -aD -aD -aD -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -az -az -bi -aZ -az -az -aD -aD -aD -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aD -az -aT -ba -az -aD -aD -aD -aD -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aD -az -az -az -az -aD -aD -aD -aD -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aD -aD -aD -aD -aD -aD -aD -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aD -aD -aD -aD -aD -aa -aa -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -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/random_ruins/exoplanets/asteroid/escape_pod/escape_pod_unique.dmm b/maps/random_ruins/exoplanets/asteroid/escape_pod/escape_pod_unique.dmm new file mode 100644 index 00000000000..f1c0b708da7 --- /dev/null +++ b/maps/random_ruins/exoplanets/asteroid/escape_pod/escape_pod_unique.dmm @@ -0,0 +1,277 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/random, +/area/template_noop) +"b" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"c" = ( +/obj/structure/window/shuttle/unique/escape_pod{ + icon_state = "1,3" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/template_noop) +"d" = ( +/obj/effect/landmark/clear, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"e" = ( +/obj/structure/door_assembly/door_assembly_ext{ + anchored = 1 + }, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"f" = ( +/turf/simulated/wall/shuttle/unique/escape_pod{ + icon_state = "2,1" + }, +/area/template_noop) +"g" = ( +/obj/structure/shuttle_part/escape_pod{ + icon_state = "0,3" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"h" = ( +/turf/template_noop, +/area/template_noop) +"i" = ( +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"j" = ( +/turf/simulated/wall/shuttle/unique/escape_pod{ + icon_state = "0,2" + }, +/area/template_noop) +"k" = ( +/mob/living/simple_animal/hostile/carp/shark, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"l" = ( +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"n" = ( +/turf/simulated/wall/shuttle/unique/escape_pod{ + icon_state = "2,0" + }, +/area/template_noop) +"t" = ( +/turf/simulated/wall/shuttle/unique/escape_pod{ + icon_state = "0,1" + }, +/area/template_noop) +"x" = ( +/turf/simulated/wall/shuttle/unique/escape_pod{ + icon_state = "0,0" + }, +/area/template_noop) +"z" = ( +/obj/structure/closet/crate/secure/loot, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"D" = ( +/obj/effect/decal/remains/human, +/obj/random/voidsuit, +/obj/random/energy_antag, +/obj/random/smalltank, +/obj/item/device/gps, +/obj/item/archaeological_find, +/turf/simulated/floor/shuttle/dark_blue{ + oxygen = 0; + nitrogen = 0 + }, +/area/template_noop) +"R" = ( +/turf/simulated/wall/shuttle/unique/escape_pod{ + icon_state = "2,2" + }, +/area/template_noop) +"Z" = ( +/obj/structure/shuttle_part/escape_pod{ + icon_state = "2,3" + }, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) + +(1,1,1) = {" +h +h +h +a +a +a +h +h +h +h +h +h +h +h +h +"} +(2,1,1) = {" +h +h +a +a +a +a +a +a +i +i +i +i +i +h +h +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +i +i +i +i +i +h +"} +(4,1,1) = {" +a +a +a +a +l +g +j +t +x +l +i +i +i +i +i +"} +(5,1,1) = {" +a +l +z +l +k +c +D +b +e +l +i +i +i +i +i +"} +(6,1,1) = {" +a +a +a +a +l +Z +R +f +n +l +i +i +i +i +i +"} +(7,1,1) = {" +a +a +a +a +a +a +a +a +a +d +d +d +i +i +i +"} +(8,1,1) = {" +h +a +a +a +a +a +a +a +i +i +i +i +i +h +h +"} +(9,1,1) = {" +h +h +h +h +h +a +a +a +h +h +h +h +h +h +h +"} +(10,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +"} diff --git a/maps/random_ruins/exoplanets/asteroid/hideout.dmm b/maps/random_ruins/exoplanets/asteroid/hideout/hideout.dmm similarity index 100% rename from maps/random_ruins/exoplanets/asteroid/hideout.dmm rename to maps/random_ruins/exoplanets/asteroid/hideout/hideout.dmm diff --git a/maps/random_ruins/exoplanets/asteroid/listening_post/listening_post_unique.dmm b/maps/random_ruins/exoplanets/asteroid/listening_post/listening_post_unique.dmm new file mode 100644 index 00000000000..1ee504bf9f8 --- /dev/null +++ b/maps/random_ruins/exoplanets/asteroid/listening_post/listening_post_unique.dmm @@ -0,0 +1,1075 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"ab" = ( +/turf/simulated/wall/r_wall, +/area/dungeon/syndie_listening_post) +"ac" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + frequency = 1351; + id_tag = "listening_post_vent" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"ad" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/structure/boulder, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"ae" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1351; + id_tag = "listening_post_airlock"; + pixel_y = 25; + tag_airpump = "listening_post_vent"; + tag_chamber_sensor = "listening_post_sensor"; + tag_exterior_door = "listening_post_exterior"; + tag_interior_door = "listening_post_interior" + }, +/obj/machinery/atmospherics/unary/vent_pump{ + frequency = 1351; + id_tag = "listening_post_vent" + }, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"af" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + frequency = 1351; + id_tag = "listening_post_vent" + }, +/obj/item/trash/liquidfood, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"ag" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1351; + master_tag = "listening_post_airlock"; + pixel_x = -25 + }, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"ah" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"ai" = ( +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aj" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"ak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"al" = ( +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"am" = ( +/turf/template_noop, +/area/template_noop) +"an" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1351; + icon_state = "door_locked"; + id_tag = "listening_post_exterior"; + locked = 1; + name = "Listening Post" + }, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"ao" = ( +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"ap" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"aq" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"ar" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1351; + icon_state = "door_locked"; + id_tag = "listening_post_interior"; + locked = 1; + name = "Listening Post" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"as" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"at" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"av" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aw" = ( +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"ax" = ( +/obj/machinery/airlock_sensor{ + frequency = 1351; + id_tag = "listening_post_sensor"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + frequency = 1351; + id_tag = "listening_post_vent" + }, +/obj/machinery/light{ + brightness_color = "#FA8282" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"ay" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + frequency = 1351; + id_tag = "listening_post_vent" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"az" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northright, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/dungeon/syndie_listening_post) +"aA" = ( +/obj/structure/computerframe, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"aB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northright, +/turf/simulated/floor/tiled/dark, +/area/dungeon/syndie_listening_post) +"aC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aD" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aE" = ( +/obj/machinery/light{ + brightness_color = "#FA8282" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aF" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/suit/space/void/freelancer, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aG" = ( +/obj/structure/door_assembly/door_assembly_hatch{ + anchored = 1 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aH" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/sinpockets, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aL" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aM" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aN" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + frequency = 1351; + id_tag = "listening_post_vent" + }, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"aO" = ( +/obj/structure/table/reinforced, +/obj/random/contraband, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aP" = ( +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aQ" = ( +/obj/effect/decal/remains/rat, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"aR" = ( +/obj/random/powercell, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"aT" = ( +/obj/item/bluespace_crystal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"aU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"aV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aX" = ( +/obj/structure/table/reinforced, +/obj/item/pen/fountain/black, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"aZ" = ( +/obj/machinery/constructable_frame/temp_deco, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"ba" = ( +/obj/item/bluespace_crystal, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bb" = ( +/turf/simulated/mineral, +/area/template_noop) +"bc" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1351; + master_tag = "listening_post_airlock"; + pixel_x = 25 + }, +/obj/structure/boulder, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"bd" = ( +/obj/structure/boulder, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"be" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/dungeon/syndie_listening_post) +"bf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"bg" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bh" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bi" = ( +/obj/item/stock_parts/scanning_module/adv, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bj" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/structure/door_assembly/door_assembly_hatch{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"bk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/red, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"bl" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"bm" = ( +/obj/machinery/constructable_frame/temp_deco, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bn" = ( +/obj/effect/decal/remains/robot, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bo" = ( +/obj/item/stock_parts/capacitor/adv, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bp" = ( +/obj/effect/overlay/burnt_wall/steel, +/turf/simulated/floor/airless, +/area/dungeon/syndie_listening_post) +"bq" = ( +/obj/item/trash/liquidfood, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"br" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bt" = ( +/obj/item/circuitboard/telecomms/broadcaster, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bu" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"bv" = ( +/obj/structure/computerframe, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"bw" = ( +/obj/structure/computerframe, +/obj/machinery/light_construct, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"bx" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/obj/structure/table/reinforced, +/obj/item/trash/liquidfood, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"by" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"bz" = ( +/obj/structure/bed, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"bA" = ( +/turf/simulated/floor/shuttle/dark_red{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/syndie_listening_post) +"bB" = ( +/obj/structure/table/reinforced, +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"dI" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"gX" = ( +/mob/living/simple_animal/hostile/carp/shark{ + destroy_surroundings = 0; + wander = 0 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"hc" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/item/clothing/head/helmet/space/void/freelancer, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"io" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/carp{ + destroy_surroundings = 0; + wander = 0 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"kH" = ( +/mob/living/simple_animal/hostile/carp{ + destroy_surroundings = 0; + wander = 0 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"lN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"oy" = ( +/obj/item/trash/liquidfood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"Nr" = ( +/obj/structure/table/reinforced, +/obj/random/contraband, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) +"WB" = ( +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/dungeon/syndie_listening_post) + +(1,1,1) = {" +am +am +am +am +aa +aa +bd +bb +am +am +bb +bb +bb +bb +am +bb +bb +am +am +am +am +"} +(2,1,1) = {" +am +am +bb +bb +bb +bd +bd +bd +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +am +"} +(3,1,1) = {" +am +am +bb +bb +bb +bc +bd +ad +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +am +am +"} +(4,1,1) = {" +am +bb +bb +bb +bb +ab +an +ab +ab +ab +ab +ab +ab +ab +ab +ab +bb +bb +bb +bb +am +"} +(5,1,1) = {" +bb +bb +bb +bb +ab +ab +ao +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bb +bb +bb +bb +"} +(6,1,1) = {" +am +bb +bb +ab +ab +ac +ap +aN +ab +ab +ab +bg +br +bh +bA +bA +ab +ab +bb +bb +bb +"} +(7,1,1) = {" +am +bb +bb +ab +ab +ae +aq +ax +ab +ab +ab +aQ +aZ +bi +bm +aT +ab +ab +bb +bb +bb +"} +(8,1,1) = {" +am +bb +bb +ab +ab +af +aq +ay +ab +ab +ab +aR +ba +br +bn +bs +ab +ab +bb +bb +bb +"} +(9,1,1) = {" +bb +bb +bb +ab +ab +ab +ar +ab +ab +ab +ab +bA +aZ +br +aZ +br +ab +ab +bb +bb +bb +"} +(10,1,1) = {" +bb +bb +bb +ab +ab +ag +as +az +ab +ab +ab +aT +bA +br +bo +bt +ab +ab +bb +bb +bb +"} +(11,1,1) = {" +bb +bb +bb +ab +ab +ah +at +aB +ab +ab +ab +aU +be +bj +aU +be +ab +ab +bb +bb +bb +"} +(12,1,1) = {" +am +bb +bb +ab +ab +ai +aW +aC +ab +aH +aL +bq +al +aW +oy +Nr +ab +ab +bb +bb +bb +"} +(13,1,1) = {" +am +bb +bb +ab +ab +aj +aW +aD +ab +bu +aM +kH +bf +bk +aW +bv +ab +ab +bb +bb +bb +"} +(14,1,1) = {" +bb +bb +bb +ab +ab +ak +aW +al +aG +WB +gX +aV +aW +aW +by +bw +ab +ab +bb +aa +aa +"} +(15,1,1) = {" +bb +bb +bb +ab +ab +aw +al +aE +ab +bB +aP +io +lN +aV +al +al +bp +bp +aa +aa +aa +"} +(16,1,1) = {" +am +bb +bb +ab +ab +aF +av +hc +ab +aK +aO +aX +bx +bl +bz +dI +ab +ab +bb +aA +aa +"} +(17,1,1) = {" +am +bb +bb +bb +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bb +bb +bb +bb +"} +(18,1,1) = {" +am +bb +bb +bb +bb +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bb +bb +bb +bb +bb +"} +(19,1,1) = {" +am +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +"} +(20,1,1) = {" +am +am +am +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +am +"} +(21,1,1) = {" +am +am +am +am +am +bb +bb +bb +am +bb +bb +am +am +bb +bb +bb +bb +bb +bb +am +am +"} diff --git a/maps/random_ruins/exoplanets/asteroid/mining_base.dmm b/maps/random_ruins/exoplanets/asteroid/mining_base/mining_base.dmm similarity index 100% rename from maps/random_ruins/exoplanets/asteroid/mining_base.dmm rename to maps/random_ruins/exoplanets/asteroid/mining_base/mining_base.dmm diff --git a/maps/random_ruins/exoplanets/asteroid/mystery_ship/mystery_ship_areas.dm b/maps/random_ruins/exoplanets/asteroid/mystery_ship/mystery_ship_areas.dm new file mode 100644 index 00000000000..c5b84168448 --- /dev/null +++ b/maps/random_ruins/exoplanets/asteroid/mystery_ship/mystery_ship_areas.dm @@ -0,0 +1,27 @@ +/area/ship/mystery_ship + no_light_control = 1 + requires_power = TRUE +/area/ship/mystery_ship/cockpit + name = "Cockpit" +/area/ship/mystery_ship/crew_seating + name = "Seating Area" +/area/ship/mystery_ship/port_airlock + name = "Port Airlock" +/area/ship/mystery_ship/starboard_airlock + name = "Starboard Airlock" +/area/ship/mystery_ship/equipment + name = "Equipment" +/area/ship/mystery_ship/resting_area + name = "Resting Area" +/area/ship/mystery_ship/armoury + name = "Ready Room" +/area/ship/mystery_ship/atmospherics + name = "Atmospherics" +/area/ship/mystery_ship/power + name = "Power" +/area/ship/mystery_ship/medical + name = "Medical" +/area/ship/mystery_ship/auxillary_storage + name = "Auxillary Storage" +/area/ship/mystery_ship/research + name = "Research" \ No newline at end of file diff --git a/maps/random_ruins/exoplanets/asteroid/mystery_ship/mystery_ship_unique.dmm b/maps/random_ruins/exoplanets/asteroid/mystery_ship/mystery_ship_unique.dmm new file mode 100644 index 00000000000..739c693ea55 --- /dev/null +++ b/maps/random_ruins/exoplanets/asteroid/mystery_ship/mystery_ship_unique.dmm @@ -0,0 +1,2560 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 9 + }, +/area/ship/mystery_ship/resting_area) +"ac" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 5 + }, +/area/ship/mystery_ship/cockpit) +"ad" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/armoury) +"ae" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/research) +"af" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/cockpit) +"ag" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"ah" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/cockpit) +"ai" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"aj" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "north bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"ak" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/cockpit) +"al" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/cockpit) +"am" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"an" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 5 + }, +/area/ship/mystery_ship/medical) +"ao" = ( +/obj/structure/closet/crate/loot, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"ap" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/crew_seating) +"aq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"ar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"as" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"at" = ( +/obj/effect/landmark/clear, +/obj/structure/inflatable/door, +/turf/template_noop, +/area/template_noop) +"au" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"av" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"aw" = ( +/obj/structure/closet/crate/loot, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"ax" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"ay" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"az" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"aA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"aB" = ( +/obj/machinery/light/small, +/obj/structure/table/rack, +/obj/random/belt, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"aC" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"aD" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"aE" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"aF" = ( +/obj/machinery/sleeper, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"aG" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/machinery/iv_drip, +/obj/machinery/power/apc{ + coverlocked = 0; + dir = 1; + environ = 0; + equipment = 0; + lighting = 0; + locked = 0; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"aH" = ( +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"aI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"aJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"aK" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"aL" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"aM" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/medical) +"aN" = ( +/obj/structure/table/rack, +/obj/random/backpack, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"aO" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/holofloor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"aP" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"aQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"aR" = ( +/obj/structure/cable/green, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"aS" = ( +/obj/machinery/power/apc{ + coverlocked = 0; + dir = 1; + environ = 0; + equipment = 0; + lighting = 0; + locked = 0; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"aT" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/power) +"aU" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"aV" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/medical) +"aW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"aX" = ( +/obj/structure/table/rack, +/obj/item/storage/toolbox/syndicate, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"aY" = ( +/obj/structure/mech_wreckage/powerloader, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"aZ" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"ba" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/equipment) +"bb" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"bc" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"bd" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"be" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/light{ + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"bf" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/closet/walllocker/medical/secure{ + name = "blood locker"; + pixel_x = 32 + }, +/obj/item/reagent_containers/blood/ripped, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"bg" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"bi" = ( +/obj/structure/closet/secure_closet/guncabinet, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"bj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/heavy, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"bk" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/projectile, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"bl" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/atmospherics) +"bm" = ( +/obj/structure/closet/crate/secure/gear, +/obj/item/anomaly_core, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"bn" = ( +/obj/structure/table/rack, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"bp" = ( +/obj/structure/closet/crate/large, +/obj/item/archaeological_find, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"bq" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"br" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"bs" = ( +/obj/structure/computerframe, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/cockpit) +"bt" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 6 + }, +/area/ship/mystery_ship/research) +"bu" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/resting_area) +"bv" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"bw" = ( +/obj/machinery/porta_turret/stationary, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"bx" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"by" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/blast/regular{ + id = "crashed" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"bz" = ( +/obj/machinery/artifact, +/obj/machinery/artifact_scanpad, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"bA" = ( +/obj/machinery/artifact_analyser, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"bB" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/ship/mystery_ship/atmospherics) +"bC" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/ship/mystery_ship/atmospherics) +"bD" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/starboard_airlock) +"bE" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 6 + }, +/area/ship/mystery_ship/atmospherics) +"bQ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"cj" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"cv" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 5 + }, +/area/ship/mystery_ship/starboard_airlock) +"cy" = ( +/obj/machinery/light/small, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"cF" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/item/device/binoculars, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/cockpit) +"cH" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"dA" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"dZ" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + req_access = list(11) + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"eM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"gv" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 10 + }, +/area/ship/mystery_ship/armoury) +"hB" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 6 + }, +/area/ship/mystery_ship/power) +"if" = ( +/obj/structure/table/standard, +/obj/item/robot_parts/chest/hephaestus, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"iO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"jv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"kD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"lv" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"lz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"nv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"nz" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"nF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"oq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"oG" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/helmet, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"oQ" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/ship/mystery_ship/equipment) +"oZ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"pU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"qj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"ql" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"qR" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"ri" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + req_access = list(11) + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"rr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"rR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"sO" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/retro, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/cockpit) +"tY" = ( +/obj/machinery/light{ + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"uh" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"ui" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"ul" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"ut" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"vm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"vR" = ( +/obj/machinery/button/remote/blast_door{ + id = "crashed"; + pixel_x = 32 + }, +/obj/structure/bed/stool/chair/office/bridge, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/cockpit) +"wb" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"wv" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"wB" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/syndicate/black, +/obj/item/clothing/head/helmet/space/syndicate/black, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"wH" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"xf" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 9 + }, +/area/ship/mystery_ship/cockpit) +"xI" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"xZ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/syndicate/black, +/obj/item/clothing/head/helmet/space/syndicate/black, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"yo" = ( +/obj/structure/table/standard, +/obj/random/medical, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"yu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"zq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"zx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"zH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"Ad" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"Ae" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"Ag" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 5 + }, +/area/ship/mystery_ship/power) +"As" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"AG" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"Bz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"Cf" = ( +/obj/effect/landmark/clear, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"Ch" = ( +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"CC" = ( +/obj/machinery/portable_atmospherics/canister/empty{ + name = "waste canister" + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"CN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"CU" = ( +/obj/structure/table/rack, +/obj/item/melee/baton, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"Dj" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"Dq" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"DG" = ( +/obj/machinery/power/portgen/basic/fusion, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"Ec" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"Eo" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 10 + }, +/area/ship/mystery_ship/resting_area) +"Ff" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28; + req_one_access = list(24,11,48) + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"FG" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"FS" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"Ga" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"GF" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -24; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"GG" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/blast/regular{ + id = "crashed" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"GT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/ship/mystery_ship/cockpit) +"Hv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"HD" = ( +/obj/structure/table/rack, +/obj/item/storage/toolbox/electrical, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"HO" = ( +/turf/simulated/wall/shuttle/raider, +/area/ship/mystery_ship/port_airlock) +"Jj" = ( +/obj/structure/table/rack, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"Kl" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/port_airlock) +"Kv" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"KL" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/coin, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/cockpit) +"Ld" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"Ly" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"LR" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/random/energy, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"LV" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"ML" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"MO" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"MY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"Nk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"NE" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"NH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"OY" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -32; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/random/loot, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/cockpit) +"Qn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"Qw" = ( +/obj/effect/landmark/clear, +/obj/item/storage/bag/inflatable, +/turf/template_noop, +/area/template_noop) +"QF" = ( +/obj/structure/closet/walllocker/medical/secure{ + pixel_x = -32; + req_access = list(150) + }, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"Ra" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"Rj" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 10 + }, +/area/ship/mystery_ship/atmospherics) +"Sl" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"Sq" = ( +/obj/structure/closet/crate/rad, +/obj/item/stack/material/tritium/full, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"SP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"SY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"Ta" = ( +/obj/machinery/power/smes/buildable/autosolars, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"TK" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/blast/regular{ + id = "crashed" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/research) +"TS" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/alarm{ + alarm_id = 1601; + dir = 8; + pixel_x = 28; + req_one_access = list(11,24,52) + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"Uf" = ( +/obj/structure/curtain/black, +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"Ug" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/holofloor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"UO" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/ship/mystery_ship/medical) +"UQ" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/armoury) +"Vf" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 9 + }, +/area/ship/mystery_ship/port_airlock) +"Vi" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"Vq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -24; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/power) +"VE" = ( +/obj/structure/bed/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/resting_area) +"Wg" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/atmospherics) +"Wz" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) +"WE" = ( +/turf/simulated/wall/shuttle/dark/corner{ + dir = 9 + }, +/area/ship/mystery_ship/equipment) +"XI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/apc{ + coverlocked = 0; + dir = 1; + environ = 0; + equipment = 0; + lighting = 0; + locked = 0; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/auxillary_storage) +"Yc" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/starboard_airlock) +"YG" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/equipment) +"ZI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ship/mystery_ship/crew_seating) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +bu +bu +bu +bu +bu +bu +Eo +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bu +bu +VE +Uf +VE +VE +bu +bu +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bu +Dq +cH +ui +ui +aU +tY +bu +aa +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +bu +aN +qj +Ff +wv +rr +bq +bu +Eo +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +WE +ba +ba +ba +oQ +ba +ba +ad +by +ad +ad +gv +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +WE +ba +ba +if +FG +am +HD +ba +oG +dA +cy +ad +ad +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +Vf +HO +dZ +dZ +HO +HO +HO +aD +aI +aP +ut +aX +ba +bi +ag +zq +LR +ad +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +Vf +HO +HO +as +as +Kl +xZ +HO +aD +yu +zx +Ch +aY +ba +bj +ar +NE +bv +ad +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +Vf +HO +HO +qR +aj +Ae +ay +aA +aO +Ld +TS +YG +CN +aZ +ba +bk +Dj +UQ +bw +ad +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +xf +al +al +al +al +ap +ap +ap +ap +ap +cj +ap +ap +ba +ba +ul +ba +ba +ba +bl +bl +GG +bl +bl +Rj +aa +aa +"} +(12,1,1) = {" +aa +aa +xf +al +al +OY +sO +bs +ap +LV +ZI +LV +QF +Nk +nz +ap +AG +AG +Hv +aq +ao +bl +Ad +MY +iO +nv +bB +bC +aa +aa +"} +(13,1,1) = {" +aa +aa +GT +bs +vR +ah +ak +af +Ug +av +av +av +av +MO +aB +ap +XI +rR +Qn +AG +bb +bl +Wg +wb +nF +wb +bB +bC +aa +aa +"} +(14,1,1) = {" +aa +aa +ac +al +al +cF +KL +bs +ap +Wz +vm +Sl +FS +eM +aC +ap +aE +AG +oq +lz +aw +bl +CC +MY +Vi +aR +bB +bC +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +ac +al +al +al +al +ap +ap +ap +ap +ap +cj +ap +ap +aM +aM +aV +aM +aM +aM +bl +bl +GG +bl +bl +bE +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +cv +bD +bD +Yc +bx +SP +wH +Ec +ql +UO +GF +oZ +ML +uh +aM +bm +xI +aW +CU +ae +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +cv +bD +bD +ax +ax +As +wB +bD +aF +aJ +aQ +Bz +bd +aM +zH +jv +au +bz +ae +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +cv +bD +ri +ri +bD +bD +bD +aG +aK +kD +bg +be +aM +bn +Ly +ai +bA +ae +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +at +at +aa +an +aM +aM +aL +yo +bQ +bf +aM +bp +Ly +bc +ae +ae +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aH +Cf +aH +aa +an +aM +aM +aM +aV +aM +aM +ae +TK +ae +ae +bt +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qw +aH +Cf +aH +aa +aa +Ag +aT +Jj +az +SY +Vq +SY +br +aT +bt +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aH +Cf +aH +aa +aa +aa +aT +aS +NH +lv +pU +Ga +Kv +aT +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aH +Cf +aH +aa +aa +aa +aT +aT +Ta +Ra +Sq +DG +aT +aT +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aH +Cf +aH +aa +aa +aa +Ag +aT +aT +aT +aT +aT +aT +hB +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aH +Cf +aH +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aH +Cf +aH +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/random_ruins/exoplanets/asteroid/satelite_crash/satellite_crash_unique.dmm b/maps/random_ruins/exoplanets/asteroid/satelite_crash/satellite_crash_unique.dmm new file mode 100644 index 00000000000..1abc1291a7d --- /dev/null +++ b/maps/random_ruins/exoplanets/asteroid/satelite_crash/satellite_crash_unique.dmm @@ -0,0 +1,456 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/obj/structure/lattice, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"d" = ( +/obj/structure/lattice, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/solar_assembly, +/obj/item/material/shard, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"e" = ( +/obj/structure/girder, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/dungeon/crashed_satellite) +"f" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/machinery/power/smes/batteryrack, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"g" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"h" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/computerframe, +/obj/item/material/shard, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"i" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/computerframe{ + layer = 3.1 + }, +/obj/item/device/gps, +/obj/item/material/shard, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"j" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/random/tool, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"k" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"l" = ( +/obj/structure/lattice, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/stack/cable_coil/cut, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"m" = ( +/obj/item/material/shard, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"n" = ( +/obj/item/stack/material/steel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/ash, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"o" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/blood/oil, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"p" = ( +/obj/item/stack/material/steel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"q" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"r" = ( +/mob/living/simple_animal/hostile/carp, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"s" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/random/junk, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"t" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil/cut, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"u" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/blood/oil, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"v" = ( +/obj/random/loot, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"w" = ( +/obj/item/stack/material/steel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"x" = ( +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"y" = ( +/obj/effect/decal/remains/robot, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"z" = ( +/obj/item/arrow/rod, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"A" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"B" = ( +/obj/item/arrow/rod, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"C" = ( +/obj/item/arrow/rod, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"D" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/random/junk, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"E" = ( +/turf/simulated/wall/shuttle/dark, +/area/dungeon/crashed_satellite) +"F" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/random/junk, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"G" = ( +/obj/structure/lattice, +/obj/item/stack/material/steel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"H" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/bluespace_crystal, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"I" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/bluespace_crystal, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"J" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"K" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/ash, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"L" = ( +/obj/structure/lattice, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/ash, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"M" = ( +/obj/structure/lattice, +/obj/item/solar_assembly, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"N" = ( +/obj/structure/girder, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"O" = ( +/obj/random/tool, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"P" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"Q" = ( +/obj/item/bluespace_crystal, +/mob/living/simple_animal/hostile/carp/shark{ + dir = 8; + wander = 0 + }, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"R" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/stack/cable_coil/cut, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"S" = ( +/obj/structure/lattice, +/obj/item/material/shard, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/template_noop) +"T" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/airless, +/area/dungeon/crashed_satellite) +"U" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/wall/shuttle/dark, +/area/dungeon/crashed_satellite) +"V" = ( +/obj/structure/lattice, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/unsimulated/floor/asteroid/ash/rocky, +/area/dungeon/crashed_satellite) + +(1,1,1) = {" +b +b +b +a +a +a +a +a +b +b +b +b +b +"} +(2,1,1) = {" +b +b +b +a +a +a +a +a +b +b +b +b +b +"} +(3,1,1) = {" +b +a +a +a +a +a +a +a +a +b +b +b +b +"} +(4,1,1) = {" +b +a +a +a +a +a +E +x +x +x +b +b +b +"} +(5,1,1) = {" +a +a +a +a +i +H +E +E +x +x +x +b +b +"} +(6,1,1) = {" +a +a +a +a +j +I +R +E +x +x +x +v +b +"} +(7,1,1) = {" +a +a +a +f +k +P +T +I +N +x +r +x +x +"} +(8,1,1) = {" +a +a +a +h +s +Q +U +V +u +J +p +x +x +"} +(9,1,1) = {" +a +a +e +e +E +E +p +l +d +C +q +F +z +"} +(10,1,1) = {" +a +x +m +t +v +x +q +J +G +L +q +o +O +"} +(11,1,1) = {" +b +S +c +M +m +x +z +q +D +g +J +n +q +"} +(12,1,1) = {" +b +x +c +x +x +x +y +x +q +w +o +B +A +"} +(13,1,1) = {" +c +M +x +x +m +x +x +x +q +J +B +K +p +"} +(14,1,1) = {" +b +b +b +b +b +b +b +x +x +x +q +J +x +"} diff --git a/maps/random_ruins/exoplanets/asteroid/skrell_ship/skrell_crash_unique.dmm b/maps/random_ruins/exoplanets/asteroid/skrell_ship/skrell_crash_unique.dmm new file mode 100644 index 00000000000..358235450d5 --- /dev/null +++ b/maps/random_ruins/exoplanets/asteroid/skrell_ship/skrell_crash_unique.dmm @@ -0,0 +1,1739 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"ab" = ( +/obj/structure/window/shuttle/skrell, +/obj/structure/grille/diagonal{ + icon_state = "grille_diagonal"; + dir = 8 + }, +/turf/template_noop, +/area/dungeon/skrell_ship) +"ad" = ( +/obj/structure/window/shuttle/skrell, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/dungeon/skrell_ship) +"ae" = ( +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"af" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/obj/item/material/shard/phoron, +/turf/simulated/floor/airless, +/area/dungeon/skrell_ship) +"ag" = ( +/obj/structure/window/shuttle/skrell, +/obj/structure/grille/diagonal, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"ah" = ( +/obj/structure/bed/stool/chair/office/hover{ + icon_state = "hover_chair"; + dir = 1 + }, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"ai" = ( +/obj/structure/grille, +/obj/item/material/shard/phoron, +/turf/simulated/floor/airless, +/area/dungeon/skrell_ship) +"aj" = ( +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"al" = ( +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"am" = ( +/obj/structure/windoor_assembly{ + dir = 2; + icon_state = "l_windoor_assembly01"; + name = "Command Copula" + }, +/turf/simulated/floor/shuttle/skrell/ramp{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"an" = ( +/obj/structure/window/shuttle/skrell, +/obj/structure/grille/diagonal{ + icon_state = "grille_diagonal"; + dir = 4 + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"ao" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/skrell, +/obj/item/paper_scanner, +/obj/item/pen/black, +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"ap" = ( +/turf/simulated/wall/shuttle/skrell, +/area/dungeon/skrell_ship) +"aq" = ( +/turf/template_noop, +/area/template_noop) +"ar" = ( +/obj/structure/table/skrell, +/obj/item/reagent_containers/food/snacks/skrellsnacks, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"as" = ( +/obj/structure/bed/roller/hover, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"at" = ( +/obj/structure/table/skrell, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"au" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/skrell, +/obj/item/skrell_projector, +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"av" = ( +/obj/structure/bed/stool/chair/office/hover/command{ + icon_state = "hover_command"; + dir = 1 + }, +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"aw" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"ax" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/skrell, +/obj/item/stack/rods, +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"ay" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + basecolor = "#0081CD" + }, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"az" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"aA" = ( +/obj/machinery/bodyscanner, +/turf/simulated/floor/tiled, +/area/dungeon/skrell_ship) +"aB" = ( +/obj/machinery/door/airlock/skrell{ + name = "Bridge" + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"aC" = ( +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"aD" = ( +/obj/structure/blocker/steel, +/obj/structure/door_assembly/door_assembly_skrell{ + name = "Bridge" + }, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"aE" = ( +/obj/item/device/breath_analyzer, +/obj/item/surgery/scalpel, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"aF" = ( +/obj/machinery/body_scanconsole{ + icon_state = "body_scannerconsole"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/item/storage/firstaid/surgery, +/turf/simulated/floor/tiled, +/area/dungeon/skrell_ship) +"aG" = ( +/obj/effect/decal/cleanable/blood/drip{ + basecolor = "#0081CD" + }, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"aH" = ( +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"aI" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + basecolor = "#0081CD" + }, +/obj/effect/decal/cleanable/blood/drip{ + basecolor = "#0081CD" + }, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"aJ" = ( +/obj/machinery/light/skrell, +/obj/effect/decal/cleanable/blood/drip{ + basecolor = "#0081CD" + }, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"aK" = ( +/obj/structure/blocker/steel, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"aL" = ( +/obj/item/reagent_containers/food/snacks/skrellsnacks, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"aM" = ( +/obj/item/stack/rods, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"aN" = ( +/obj/machinery/bioprinter, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"aO" = ( +/obj/machinery/light/skrell{ + dir = 8 + }, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"aP" = ( +/obj/structure/table/skrell, +/obj/item/roller/hover, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"aQ" = ( +/obj/item/device/flashlight/pen, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"aR" = ( +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"aS" = ( +/obj/item/stack/rods, +/obj/structure/grille/broken, +/obj/item/material/shard/phoron, +/turf/simulated/floor/plating, +/area/dungeon/skrell_ship) +"aT" = ( +/obj/item/material/shard/phoron{ + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"aU" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#0081CD" + }, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"aV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/dungeon/skrell_ship) +"aW" = ( +/obj/effect/decal/cleanable/blood/drip{ + basecolor = "#0081CD" + }, +/obj/item/reagent_containers/blood/empty, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"aY" = ( +/obj/machinery/light/skrell{ + dir = 4 + }, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"aZ" = ( +/obj/structure/closet/walllocker/medical{ + desc = "It's wall-mounted storage unit for medical supplies. It has almost come off its mounts."; + name = "Dilapitated medical closet"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"ba" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/skrell, +/obj/item/material/shard/phoron, +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"bb" = ( +/obj/machinery/door/airlock/skrell/grey, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"bc" = ( +/obj/machinery/door/airlock/skrell{ + name = "Cryogenics" + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"bd" = ( +/obj/item/landmine/frag{ + deployed = 1 + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"be" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/obj/item/stack/material/steel, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"bf" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "loadingarea"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/bed/roller/hover, +/obj/effect/decal/cleanable/blood{ + basecolor = "#0081CD" + }, +/obj/machinery/light/skrell{ + dir = 1 + }, +/obj/item/clothing/under/skrell/qeblak, +/turf/simulated/floor/tiled, +/area/dungeon/skrell_ship) +"bg" = ( +/obj/structure/table/skrell, +/obj/item/device/flashlight/heavy, +/obj/machinery/cell_charger, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bh" = ( +/obj/item/storage/box/gloves, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "loadingarea"; + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/dungeon/skrell_ship) +"bi" = ( +/obj/machinery/porta_turret_construct/dark, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"bj" = ( +/obj/item/stack/material/plasteel, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bk" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bl" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bm" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bn" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bo" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bp" = ( +/obj/item/storage/box/freezer/organcooler, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"bq" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"br" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bs" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bt" = ( +/obj/structure/closet/skrell, +/obj/item/clothing/ears/skrell/band/bluejewels, +/obj/item/clothing/head/helmet/space/void/skrell/white, +/obj/item/clothing/mask/breath/skrell, +/obj/item/clothing/suit/space/void/skrell/white, +/obj/item/clothing/under/skrell, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"bu" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bv" = ( +/obj/structure/table/skrell, +/obj/item/storage/box/sharps, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"bw" = ( +/obj/machinery/door/airlock/skrell{ + name = "Medbay" + }, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"by" = ( +/obj/structure/table/skrell, +/obj/item/nralakktag, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"bz" = ( +/obj/structure/closet/skrell, +/obj/machinery/light/skrell, +/obj/item/clothing/ears/skrell/band/ebony, +/obj/item/clothing/head/helmet/space/void/skrell/black, +/obj/item/clothing/mask/breath/skrell, +/obj/item/clothing/suit/space/void/skrell/black, +/obj/item/clothing/under/skrell, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"bA" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"bB" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"bC" = ( +/obj/machinery/door/airlock/skrell{ + name = "Medbay" + }, +/obj/item/landmine/emp{ + deployed = 1 + }, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"bD" = ( +/obj/structure/blocker/steel, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"bE" = ( +/obj/structure/table/skrell, +/obj/machinery/light/skrell, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"bF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/material/shard/phoron, +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"bG" = ( +/obj/item/device/t_scanner, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bH" = ( +/obj/effect/decal/cleanable/blood/drip{ + basecolor = "#0081CD" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/dungeon/skrell_ship) +"bI" = ( +/obj/item/landmine/frag{ + deployed = 1 + }, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"bJ" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#0081CD" + }, +/obj/effect/decal/cleanable/blood/tracks/footprints{ + basecolor = "#0081CD" + }, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"bK" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"bL" = ( +/obj/item/clothing/under/skrell, +/obj/item/clothing/suit/space/void/skrell/black, +/obj/effect/decal/cleanable/blood/drip{ + basecolor = "#0081CD" + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"bP" = ( +/obj/structure/bed/stool/chair/office/hover, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"bR" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/skrell, +/turf/simulated/floor/plating, +/area/dungeon/skrell_ship) +"bS" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"bT" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/dungeon/skrell_ship) +"bU" = ( +/obj/item/landmine/emp{ + deployed = 1 + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"bV" = ( +/obj/machinery/light/skrell{ + dir = 1 + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"bW" = ( +/obj/machinery/light/skrell{ + dir = 8 + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"bX" = ( +/obj/structure/blocker/steel, +/obj/machinery/light/skrell{ + dir = 4 + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"bY" = ( +/obj/structure/table/skrell, +/obj/item/device/healthanalyzer, +/obj/machinery/light/skrell{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"bZ" = ( +/obj/structure/table/skrell, +/obj/item/device/mass_spectrometer/adv, +/obj/machinery/light/skrell{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"ca" = ( +/obj/machinery/light/skrell{ + dir = 1 + }, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"cb" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + basecolor = "#0081CD" + }, +/obj/effect/decal/cleanable/blood{ + basecolor = "#0081CD" + }, +/obj/machinery/light/skrell{ + dir = 4 + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"cc" = ( +/obj/item/reagent_containers/blood/ripped, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/skrell, +/turf/simulated/floor/tiled, +/area/dungeon/skrell_ship) +"cd" = ( +/obj/item/clothing/head/helmet/space/void/skrell/white, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"ce" = ( +/obj/structure/sign/flag/nralakk/left{ + bound_y = 0; + pixel_y = 32 + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"cf" = ( +/obj/structure/table/skrell, +/obj/item/reagent_containers/food/snacks/skrellsnacks, +/obj/machinery/light/skrell{ + dir = 4 + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"cg" = ( +/obj/machinery/light/skrell{ + dir = 4 + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"ch" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#0081CD" + }, +/obj/effect/decal/cleanable/blood/tracks/footprints{ + basecolor = "#0081CD" + }, +/obj/item/clothing/mask/breath/skrell, +/obj/item/clothing/under/skrell, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"ci" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"ck" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/obj/item/clothing/under/offworlder, +/obj/random/weapon_and_ammo{ + chosen_rarity = "Common" + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"cl" = ( +/obj/structure/sign/flag/nralakk/right{ + pixel_y = 32 + }, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"cm" = ( +/obj/structure/cryofeed{ + icon_state = "cryo_rear"; + dir = 2 + }, +/obj/machinery/light/skrell{ + dir = 1 + }, +/obj/structure/sign/flag/nralakk{ + pixel_y = 32 + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"co" = ( +/obj/structure/table/skrell, +/obj/machinery/light/skrell{ + dir = 8 + }, +/obj/item/trash/semki, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"cp" = ( +/obj/item/clothing/head/helmet/space/void/skrell/black, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"cq" = ( +/obj/structure/table/reinforced/steel{ + dir = 8; + flipped = 1 + }, +/obj/effect/decal/cleanable/blood{ + basecolor = "#0081CD" + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"cr" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#0081CD" + }, +/obj/item/clothing/under/skrell, +/obj/item/clothing/suit/space/void/skrell/white, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"cs" = ( +/obj/effect/decal/cleanable/blood/drip{ + basecolor = "#0081CD" + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"ct" = ( +/obj/item/trash/plate, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"cu" = ( +/obj/structure/table/skrell, +/obj/item/trash/skrellsnacks, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"cv" = ( +/obj/structure/table/skrell, +/obj/item/trash/snack_bowl, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"cw" = ( +/obj/structure/door_assembly/door_assembly_skrell{ + name = "Cryogenics" + }, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"cx" = ( +/obj/item/stack/rods, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"cy" = ( +/obj/structure/window/shuttle/skrell, +/obj/structure/grille/diagonal{ + icon_state = "grille_diagonal"; + dir = 1 + }, +/turf/template_noop, +/area/dungeon/skrell_ship) +"cz" = ( +/turf/simulated/wall/shuttle/skrell/cardinal, +/area/dungeon/skrell_ship) +"cA" = ( +/obj/effect/landmark/clear, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"cB" = ( +/obj/item/storage/firstaid/adv, +/turf/simulated/floor/tiled/white, +/area/dungeon/skrell_ship) +"cC" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/clothing/under/gearharness, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"cD" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"cH" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"cI" = ( +/obj/item/storage/firstaid, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"cJ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/obj/item/plastique, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"cK" = ( +/obj/item/storage/firstaid/fire, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"cL" = ( +/obj/item/weldingtool/largetank, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"cM" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"cN" = ( +/obj/machinery/door/airlock/skrell/grey{ + locked = 1 + }, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"cO" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/dungeon/skrell_ship) +"cP" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/plating, +/area/dungeon/skrell_ship) +"cQ" = ( +/obj/item/stack/material/plasteel, +/obj/item/powerdrill, +/obj/item/landmine/frag{ + deployed = 1; + layer = 2 + }, +/turf/simulated/floor/shuttle/advanced, +/area/dungeon/skrell_ship) +"fS" = ( +/obj/machinery/light/skrell, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"iz" = ( +/obj/machinery/porta_turret_construct/dark, +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"Dz" = ( +/obj/structure/table/skrell, +/obj/machinery/light/skrell, +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"IN" = ( +/turf/simulated/floor/shuttle/skrell/blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/skrell_ship) +"Ld" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"MY" = ( +/obj/machinery/light/skrell{ + dir = 1 + }, +/obj/structure/inflatable/door, +/turf/simulated/floor/shuttle/skrell, +/area/dungeon/skrell_ship) +"OB" = ( +/obj/structure/closet/skrell, +/obj/random/weapon_and_ammo, +/turf/simulated/floor/shuttle/skrell/blue, +/area/dungeon/skrell_ship) +"Th" = ( +/turf/simulated/floor/shuttle/skrell{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/skrell_ship) +"Vf" = ( +/obj/structure/window/shuttle/skrell, +/obj/structure/grille, +/turf/simulated/floor/airless, +/area/dungeon/skrell_ship) + +(1,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aa +aa +aa +aa +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +"} +(2,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +ad +cD +ad +ap +aa +aa +aa +aa +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +"} +(3,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +ca +cr +aR +ap +aq +aa +aa +aa +aa +aq +aq +aq +aa +aa +aa +aa +aq +aq +"} +(4,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +ap +ap +ap +ap +aS +cD +ad +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +aa +aa +aa +aq +"} +(5,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +ce +bW +cd +aM +aT +aH +aH +bb +aH +bW +aH +bb +aH +aH +fS +ap +bg +ap +ap +aa +aq +aq +"} +(6,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +cl +cC +aL +ck +aH +cb +aH +ap +aH +bU +aH +ap +bi +aH +aH +cN +aR +bl +cH +aa +aq +aq +"} +(7,1,1) = {" +aq +aq +aq +aq +aq +aq +ap +ad +ad +ap +aK +aK +cz +cz +bw +ap +ap +ap +ap +bc +ap +ap +ap +aH +aH +ap +aR +ap +ap +aa +aa +aq +"} +(8,1,1) = {" +aq +aq +ab +ad +ad +ap +ap +bt +bz +ap +bV +aH +cz +aN +aC +aZ +ap +bK +co +bD +al +at +ap +bV +aH +ap +ca +bm +ap +aa +aa +aa +"} +(9,1,1) = {" +aq +aq +ad +ae +ah +aO +IN +IN +IN +aB +aH +aH +ap +bY +aG +aC +ap +al +al +al +al +al +ap +bA +aH +ap +aR +bn +ap +ap +aa +aa +"} +(10,1,1) = {" +aq +ab +ag +ae +ah +IN +IN +IN +ap +ap +ap +ap +ap +aP +aG +bp +cz +cz +al +al +ct +al +bc +bA +aH +ap +aR +bo +bl +cH +aa +aa +"} +(11,1,1) = {" +aa +af +ax +ao +bF +IN +ch +IN +ap +aA +aF +aQ +aC +aU +aG +bh +bT +ap +bB +al +bP +cu +ap +be +aH +cO +cx +bj +bl +cH +aa +aa +"} +(12,1,1) = {" +aa +ai +aj +av +Th +am +ay +aJ +ap +bf +aV +aG +aC +aC +aC +bH +cc +ap +cm +cq +bP +bE +ap +aH +cL +cP +cQ +cJ +bu +ap +aa +aa +"} +(13,1,1) = {" +aa +Vf +ba +au +az +IN +aI +IN +ap +aE +aW +aC +aw +as +aC +bS +aC +ap +bK +cs +bP +cv +ap +ci +cM +ap +aR +cK +bl +cH +aa +aq +"} +(14,1,1) = {" +aa +cy +an +ae +ah +IN +ay +ay +ap +ap +ap +ap +ap +by +aC +cB +cz +cz +cp +al +cs +al +cw +aH +aH +ap +aR +bq +bl +cH +aa +aq +"} +(15,1,1) = {" +aa +aq +bR +ae +ah +aY +IN +aI +bJ +aD +Th +iz +ap +bZ +aG +aC +ap +al +al +bL +cI +OB +ap +aH +aH +ap +aR +br +ap +ap +aa +aq +"} +(16,1,1) = {" +aq +aq +cy +ad +ad +ap +ap +ar +Dz +ap +MY +Ld +cz +bv +aC +aZ +ap +bB +cf +al +al +at +ap +bV +aH +ap +ca +bs +ap +aa +cA +aq +"} +(17,1,1) = {" +aq +aq +aq +aq +aq +aq +ap +ad +ad +ap +aH +aK +cz +cz +bC +ap +ap +ap +ap +bc +ap +ap +ap +aH +aH +ap +bG +ap +ap +aa +aa +aq +"} +(18,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +ce +bd +aH +aH +aH +bW +aH +ap +aH +aH +aH +ap +aH +aH +aH +cN +aR +bl +cH +aa +aq +aq +"} +(19,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +cl +bX +aH +aH +aH +aH +aH +bb +aH +cg +aH +bb +aH +bd +fS +ap +bk +ap +ap +aa +aq +aq +"} +(20,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +ap +ap +ap +ap +ad +cD +ad +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +aa +aa +aa +aa +"} +(21,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +ca +bI +aR +ap +aa +aa +aa +aa +aq +aq +aq +aq +aa +aa +aa +aa +aq +aq +"} +(22,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +ap +ad +cD +ad +ap +aa +aq +aq +aq +aq +aq +aq +aq +aq +aa +aa +aa +aq +aq +"} +(23,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aa +aa +aa +aa +aa +aa +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +"} +(24,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aa +aa +aa +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +"} diff --git a/maps/random_ruins/exoplanets/asteroid/sol_ship/sol_ship_unique.dmm b/maps/random_ruins/exoplanets/asteroid/sol_ship/sol_ship_unique.dmm new file mode 100644 index 00000000000..a65e1e029bc --- /dev/null +++ b/maps/random_ruins/exoplanets/asteroid/sol_ship/sol_ship_unique.dmm @@ -0,0 +1,1087 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"aK" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access = null + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"bj" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 4 + }, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"dB" = ( +/turf/simulated/wall/shuttle/dark/cardinal, +/area/dungeon/crashed_ship) +"dO" = ( +/obj/structure/window/reinforced, +/obj/structure/bed/stool/chair/office/bridge{ + dir = 4 + }, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"dX" = ( +/obj/machinery/autolathe, +/obj/machinery/light/colored/red{ + dir = 8 + }, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"fo" = ( +/obj/structure/closet/walllocker/emerglocker, +/turf/simulated/wall/shuttle/dark/cardinal, +/area/dungeon/crashed_ship) +"fT" = ( +/obj/machinery/light/colored/red, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"fW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"ga" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"hk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"hT" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"il" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"iB" = ( +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 4 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -4 + }, +/turf/simulated/wall/shuttle/dark/cardinal, +/area/dungeon/crashed_ship) +"jj" = ( +/obj/structure/window/reinforced, +/obj/structure/bed/stool/chair/office/bridge, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"jt" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"kr" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/sign/directions/civ{ + dir = 4; + pixel_y = -4 + }, +/turf/simulated/wall/shuttle/dark/cardinal, +/area/dungeon/crashed_ship) +"lG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"mi" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/shuttle/dark/cardinal, +/area/dungeon/crashed_ship) +"mD" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"oz" = ( +/obj/machinery/door/airlock/highsecurity{ + req_access = list(150) + }, +/turf/simulated/floor/shuttle/black, +/area/dungeon/crashed_ship) +"qD" = ( +/obj/structure/extinguisher_cabinet, +/turf/simulated/wall/shuttle/dark/cardinal, +/area/dungeon/crashed_ship) +"qH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"qQ" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"qV" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"rf" = ( +/obj/random/powercell, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"rA" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/computerframe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"rK" = ( +/obj/structure/closet/sol/navy, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/black, +/area/dungeon/crashed_ship) +"sa" = ( +/obj/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"su" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"sK" = ( +/obj/structure/grille/broken, +/obj/structure/window/reinforced, +/obj/item/material/shard, +/turf/simulated/floor/plating{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"tC" = ( +/obj/structure/mech_wreckage, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"tD" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 4 + }, +/obj/item/clothing/accessory/sol_pin, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"uf" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8 + }, +/turf/simulated/wall/shuttle/dark/cardinal, +/area/dungeon/crashed_ship) +"vf" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"vQ" = ( +/turf/simulated/floor/plating{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"wb" = ( +/obj/machinery/light/colored/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"wR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"wV" = ( +/obj/structure/table/rack, +/obj/random/tool, +/obj/random/voidsuit/no_nanotrasen, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"xv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"yk" = ( +/obj/structure/sign/directions/com{ + dir = 1 + }, +/turf/simulated/wall/shuttle/dark/cardinal, +/area/dungeon/crashed_ship) +"yr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"yX" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"zm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/ramp{ + oxygen = 0; + nitrogen = 0 + }, +/area/dungeon/crashed_ship) +"Ah" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret/net, +/turf/simulated/floor/shuttle/black, +/area/dungeon/crashed_ship) +"Ak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = -2 + }, +/obj/item/stack/material/glass/full, +/obj/item/material/shard, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"BJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Ck" = ( +/obj/effect/floor_decal/asteroid, +/turf/template_noop, +/area/template_noop) +"DB" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"DN" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/railing/mapped, +/obj/machinery/porta_turret_construct/dark, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/derelict/ship) +"Ex" = ( +/obj/structure/sign/flag/sol, +/turf/simulated/wall/shuttle/dark/cardinal, +/area/dungeon/crashed_ship) +"GJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/gun/projectile/pistol/sol, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"GM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Hv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/template_noop, +/area/template_noop) +"Iw" = ( +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"II" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/paper/crumpled/bloody, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"JP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/ramp{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Lc" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/dirt, +/obj/item/material/shard, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Mx" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/stamp/sol{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Oi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Oz" = ( +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"Qq" = ( +/turf/simulated/wall/shuttle/dark/cardinal, +/area/derelict/ship) +"QY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/clothing/head/sol/dress/officer, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Rg" = ( +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Sc" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access = null + }, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Tj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/black, +/area/dungeon/crashed_ship) +"Tp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"TT" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/computerframe, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Ut" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + dir = 4; + req_access = list(150) + }, +/obj/item/clothing/suit/space/void/sol, +/obj/item/clothing/head/helmet/space/void/sol, +/turf/simulated/floor/shuttle/black, +/area/dungeon/crashed_ship) +"Uz" = ( +/obj/item/material/shard, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"UF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/template_noop) +"VP" = ( +/turf/template_noop, +/area/template_noop) +"Xs" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 4; + req_access = list(150) + }, +/obj/item/clothing/accessory/storage/bayonet, +/turf/simulated/floor/shuttle/black, +/area/dungeon/crashed_ship) +"XI" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/rank/sol, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Yb" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/railing/mapped, +/obj/machinery/porta_turret_construct/dark, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Yu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret/xray{ + check_arrest = 0; + check_records = 0; + check_wildlife = 0 + }, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) +"Zd" = ( +/obj/machinery/light/colored/red, +/turf/simulated/floor/shuttle/dark_blue{ + nitrogen = 0; + oxygen = 0 + }, +/area/dungeon/crashed_ship) + +(1,1,1) = {" +VP +VP +VP +VP +VP +VP +Ck +VP +VP +VP +VP +VP +VP +Oz +Oz +Oz +Oz +VP +VP +VP +VP +VP +VP +VP +VP +VP +"} +(2,1,1) = {" +VP +VP +Oz +Oz +Oz +VP +VP +VP +VP +VP +Oz +Oz +Oz +Oz +Oz +Oz +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +"} +(3,1,1) = {" +VP +VP +VP +Oz +Oz +Oz +dB +dB +dB +Oz +Oz +Oz +Oz +Oz +Oz +dB +dB +dB +Qq +Oz +Oz +Oz +VP +VP +VP +VP +"} +(4,1,1) = {" +VP +VP +VP +dB +dB +dB +dB +dB +yr +DN +Oz +Oz +Oz +UF +Tp +yr +Uz +dB +vQ +dB +dB +Oz +Oz +VP +VP +VP +"} +(5,1,1) = {" +VP +VP +dB +dB +dB +lG +qH +Ex +vf +zm +wR +Oz +Oz +Oz +GM +GM +sa +dB +Sc +dX +Ak +dB +Oz +Oz +Oz +VP +"} +(6,1,1) = {" +VP +dB +rA +ga +TT +Mx +dO +mi +GM +dB +dB +Oz +Oz +Oz +dB +Iw +BJ +dB +wV +Iw +GM +aK +Oz +Oz +VP +VP +"} +(7,1,1) = {" +VP +Lc +mD +GJ +XI +fW +Iw +qV +GM +iB +Iw +Oz +Oz +jt +dB +Oz +GM +DB +Iw +Iw +rf +tC +Oz +Oz +VP +VP +"} +(8,1,1) = {" +sK +su +Iw +GM +Yu +qQ +Zd +yk +wb +fo +yr +GM +Oz +Oz +qD +GM +fT +dB +dB +fo +dB +dB +Oz +Oz +Oz +VP +"} +(9,1,1) = {" +hk +Rg +tD +QY +bj +xv +GM +qV +GM +kr +Oz +hT +Oz +Oz +dB +GM +GM +dB +rK +Ut +Xs +dB +Oz +Oz +Oz +Oz +"} +(10,1,1) = {" +dB +dB +Rg +Oi +ac +II +jj +mi +GM +dB +Oz +Oz +GM +dB +Oz +Oz +yr +dB +Tj +Tj +Tj +dB +Oz +Oz +Oz +Oz +"} +(11,1,1) = {" +VP +dB +dB +dB +dB +il +yX +Ex +vf +JP +wR +Oz +Oz +Oz +Oz +Oz +GM +oz +Tj +Tj +Ah +dB +Oz +Oz +Oz +Oz +"} +(12,1,1) = {" +VP +Oz +dB +dB +dB +dB +dB +dB +GM +Yb +Oz +Oz +Oz +Oz +Oz +Oz +Oz +dB +Tj +Tj +Tj +dB +dB +Oz +Oz +VP +"} +(13,1,1) = {" +Oz +Oz +Oz +Oz +Oz +dB +dB +dB +uf +Oz +Oz +Oz +Oz +Oz +Oz +Oz +dB +dB +dB +dB +dB +dB +Oz +Oz +Oz +VP +"} +(14,1,1) = {" +Oz +Oz +Oz +VP +VP +VP +VP +VP +VP +VP +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Hv +VP +Oz +Oz +Oz +VP +VP +VP +"} +(15,1,1) = {" +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +Oz +Oz +Oz +VP +VP +VP +VP +VP +VP +VP +"} diff --git a/maps/random_ruins/exoplanets/grove/grove.dm b/maps/random_ruins/exoplanets/grove/grove.dm new file mode 100644 index 00000000000..61aefcb3d52 --- /dev/null +++ b/maps/random_ruins/exoplanets/grove/grove.dm @@ -0,0 +1,9 @@ +/datum/map_template/ruin/exoplanet/hut + name = "hut" + id = "hut" + description = "A small and simple little research hut." + suffixes = list("grove/hut/hut.dmm") + spawn_weight = 1 + spawn_cost = 0.5 + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + ruin_tags = RUIN_HUMAN|RUIN_HABITAT \ No newline at end of file diff --git a/maps/random_ruins/exoplanets/grove/hut/hut.dmm b/maps/random_ruins/exoplanets/grove/hut/hut.dmm new file mode 100644 index 00000000000..13cf1379efc --- /dev/null +++ b/maps/random_ruins/exoplanets/grove/hut/hut.dmm @@ -0,0 +1,153 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/wall/wood, +/area/template_noop) +"e" = ( +/obj/machinery/artifact_scanpad, +/turf/simulated/floor/wood, +/area/template_noop) +"f" = ( +/obj/machinery/r_n_d/server, +/turf/simulated/floor/wood, +/area/template_noop) +"g" = ( +/obj/structure/curtain/black, +/turf/simulated/floor/wood, +/area/template_noop) +"h" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/wood, +/area/template_noop) +"i" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood, +/area/template_noop) +"j" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood, +/area/template_noop) +"k" = ( +/obj/structure/bed/stool/chair/wood, +/turf/simulated/floor/wood, +/area/template_noop) +"l" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/table/stone/marble, +/turf/simulated/floor/wood, +/area/template_noop) +"m" = ( +/obj/item/paper_bin, +/obj/structure/table/stone/marble, +/turf/simulated/floor/wood, +/area/template_noop) +"n" = ( +/obj/structure/gravemarker/random, +/turf/template_noop, +/area/template_noop) +"o" = ( +/obj/structure/bookcase/manuals/xenoarchaeology, +/turf/simulated/floor/wood, +/area/template_noop) +"p" = ( +/obj/random/junk, +/obj/random/loot, +/turf/simulated/floor/wood, +/area/template_noop) +"q" = ( +/obj/item/pen/multi, +/turf/simulated/floor/wood, +/area/template_noop) +"r" = ( +/mob/living/bot/medbot, +/turf/simulated/floor/wood, +/area/template_noop) +"t" = ( +/obj/structure/bed, +/obj/item/bedsheet/rainbow, +/turf/simulated/floor/wood, +/area/template_noop) +"u" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/eyepatch/hud/medical, +/obj/random/loot, +/obj/random/loot, +/obj/random/voidsuit, +/turf/simulated/floor/wood, +/area/template_noop) +"G" = ( +/turf/simulated/floor/wood, +/area/template_noop) +"K" = ( +/obj/effect/map_effect/window_spawner/reinforced, +/turf/simulated/floor/plating, +/area/template_noop) + +(1,1,1) = {" +b +b +b +K +b +b +b +"} +(2,1,1) = {" +b +i +p +u +e +f +b +"} +(3,1,1) = {" +b +o +G +G +q +l +b +"} +(4,1,1) = {" +b +j +G +r +k +m +b +"} +(5,1,1) = {" +b +b +b +G +b +b +b +"} +(6,1,1) = {" +a +h +h +G +g +t +b +"} +(7,1,1) = {" +n +b +b +b +b +b +b +"} diff --git a/maps/random_ruins/exoplanets/lava/drill_site/drill_site.dmm b/maps/random_ruins/exoplanets/lava/drill_site/drill_site.dmm new file mode 100644 index 00000000000..4c8988ca683 --- /dev/null +++ b/maps/random_ruins/exoplanets/lava/drill_site/drill_site.dmm @@ -0,0 +1,150 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/random/trash, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"d" = ( +/obj/random/loot, +/obj/random/junk, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"e" = ( +/obj/machinery/floodlight, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"f" = ( +/obj/machinery/mining/brace, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"g" = ( +/obj/structure/ore_box, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"h" = ( +/obj/random/tool, +/obj/effect/landmark/clear, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"j" = ( +/obj/random/tool, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"k" = ( +/obj/machinery/mining/drill, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"l" = ( +/obj/structure/pit, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"n" = ( +/obj/random/drinkbottle, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"s" = ( +/obj/random/loot, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"u" = ( +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"y" = ( +/obj/random/hat, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"C" = ( +/obj/random/trash, +/obj/effect/landmark/clear, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"H" = ( +/obj/random/powercell, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) +"O" = ( +/obj/random/toolbox, +/obj/effect/landmark/clear, +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +a +b +u +u +j +a +a +"} +(2,1,1) = {" +u +u +f +u +b +n +a +"} +(3,1,1) = {" +b +d +g +u +k +u +O +"} +(4,1,1) = {" +u +u +u +s +l +u +u +"} +(5,1,1) = {" +a +e +b +u +u +b +u +"} +(6,1,1) = {" +a +H +b +u +h +C +y +"} +(7,1,1) = {" +a +a +a +b +u +u +a +"} diff --git a/maps/random_ruins/exoplanets/lava/lava.dm b/maps/random_ruins/exoplanets/lava/lava.dm new file mode 100644 index 00000000000..1332699c443 --- /dev/null +++ b/maps/random_ruins/exoplanets/lava/lava.dm @@ -0,0 +1,9 @@ +/datum/map_template/ruin/exoplanet/drill_site + name = "drill site" + id = "drill_site" + description = "A small, abandoned mining drill operation." + suffixes = list("lava/drill_site/drill_site.dmm") + spawn_weight = 1 + spawn_cost = 0.5 + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS|TEMPLATE_FLAG_NO_RUINS + ruin_tags = RUIN_HUMAN \ No newline at end of file