diff --git a/code/game/objects/effects/spawners/corpsespawner.dm b/code/game/objects/effects/spawners/corpsespawner.dm index 6f3a6f7e48e..f03bb1f894f 100644 --- a/code/game/objects/effects/spawners/corpsespawner.dm +++ b/code/game/objects/effects/spawners/corpsespawner.dm @@ -450,3 +450,16 @@ /obj/landmark/corpse/russian/ranged corpsehelmet = /obj/item/clothing/head/ushanka + +/obj/landmark/corpse/skeleton/miner + name = "Fallen Miner" + corpseuniform = /obj/item/clothing/under/rank/miner + corpsesuit = /obj/item/clothing/suit/space/void/mining + corpseshoes = /obj/item/clothing/shoes/color/brown + corpsegloves = /obj/item/clothing/gloves/thick + corpseradio = /obj/item/device/radio/headset/headset_cargo + corpseglasses = /obj/item/clothing/glasses/powered/meson + corpsemask = /obj/item/clothing/mask/breath + corpsebelt = /obj/item/storage/belt/utility + corpseback = /obj/item/storage/backpack + injury_level = 1 diff --git a/code/game/objects/structures/crates_lockers/largecrate.dm b/code/game/objects/structures/crates_lockers/largecrate.dm index 55b62bf7e9a..753218c1944 100644 --- a/code/game/objects/structures/crates_lockers/largecrate.dm +++ b/code/game/objects/structures/crates_lockers/largecrate.dm @@ -6,6 +6,19 @@ matter = list(MATERIAL_WOOD = 10) density = TRUE +/obj/structure/largecrate/Initialize(mapload) + ..() + return mapload ? INITIALIZE_HINT_LATELOAD : INITIALIZE_HINT_NORMAL + +/obj/structure/largecrate/LateInitialize() + . = ..() + + //stuff any items on tile into contents when initialized + var/obj/item/I + for(I in src.loc) + if(I.density || I.anchored || I == src) continue + I.forceMove(src) + /obj/structure/largecrate/attack_hand(mob/user) to_chat(user, span_notice("You need a crowbar to pry this open!")) return diff --git a/code/game/turfs/unsimulated.dm b/code/game/turfs/unsimulated.dm index af4ccda684f..c0b4928b321 100644 --- a/code/game/turfs/unsimulated.dm +++ b/code/game/turfs/unsimulated.dm @@ -22,6 +22,7 @@ icon = 'icons/turf/floors.dmi' icon_state = "Floor3" is_simulated = FALSE + initial_flooring = null /turf/floor/dummy/airless oxygen = 0 @@ -30,6 +31,27 @@ /turf/floor/dummy/shuttle_ceiling icon_state = "reinforced" +/turf/floor/dummy/lino + icon_state = "lino" + +/turf/floor/dummy/lino/airless + oxygen = 0 + nitrogen = 0 + +/turf/floor/dummy/cult + icon_state = "cult" + +/turf/floor/dummy/cult/airless + oxygen = 0 + nitrogen = 0 + +/turf/floor/dummy/freezer + icon_state = "freezerfloor" + +/turf/floor/dummy/freezer/airless + oxygen = 0 + nitrogen = 0 + /turf/mask name = "mask" icon = 'icons/turf/walls.dmi' diff --git a/code/modules/mining/drilling/cave_generator.dm b/code/modules/mining/drilling/cave_generator.dm index 8ee8b155901..d08f18b7f1f 100644 --- a/code/modules/mining/drilling/cave_generator.dm +++ b/code/modules/mining/drilling/cave_generator.dm @@ -12,6 +12,9 @@ #define CAVE_COOLDOWN 5 MINUTES #define CAVE_COLLAPSE 3 MINUTES +#define POI_SIZE_SMALL 1 //several of these smaller pois are allowed to spawn +#define POI_SIZE_LARGE 2 //only one of these larger pois are allowed to spawn + // Cave generator statuses #define CAVE_CLOSED 0 #define CAVE_GENERATING 1 @@ -206,17 +209,28 @@ pois_placed = list() pois_placed_pos = list() - // Get pool of points of interest for current seismic level - var/list/datum/map_template/cave_pois/pool = list() - if (!length(pool_pois)) - stack_trace("pool_pois is of 0 length!") - for(var/datum/map_template/cave_pois/cave_poi_tmpl as anything in pool_pois) - if(cave_poi_tmpl.min_seismic_lvl >= seismic_lvl) - pool += cave_poi_tmpl.type - pool[cave_poi_tmpl.type] = cave_poi_tmpl.spawn_prob - - // Place a few pois on the map - var/N_pois = rand(2, 4) + // Get pools of points of interest for current seismic_lvl + var/list/datum/map_template/cave_pois/small_pool = list() + var/list/datum/map_template/cave_pois/big_pool = list() + for(var/datum/map_template/cave_pois/cave_poi_tmpl in pool_pois) + if(cave_poi_tmpl.min_seismic_lvl <= seismic_lvl && cave_poi_tmpl.max_seismic_lvl >= seismic_lvl) + if(cave_poi_tmpl.size == POI_SIZE_LARGE) + big_pool += cave_poi_tmpl.type + big_pool[cave_poi_tmpl.type] = cave_poi_tmpl.spawn_prob + else + small_pool += cave_poi_tmpl.type + small_pool[cave_poi_tmpl.type] = cave_poi_tmpl.spawn_prob + + var/N_pois_small = rand(3, 4) + var/N_pois_large = rand(0, 1) + if(seismic_lvl <= 3)//lower levels only get a few pois + N_pois_small = rand(2, 3) + generate_pool_pois(N_pois_small, small_pool)// Place a few pois on the map + if(N_pois_large) + generate_pool_pois(N_pois_large, big_pool) + +//generates pois for a specific pool +/obj/cave_generator/proc/generate_pool_pois(N_pois, var/list/pool) for(var/i = 1 to N_pois) var/poi_path = pickweight_n_take(pool) var/datum/map_template/cave_pois/poi = new poi_path() @@ -361,7 +375,7 @@ status = CAVE_GENERATING spawn(0) - // Generate the map for the given seismic level + // Generate the map for the given seismic_lvl generate_map(seismic_lvl) // Place the up ladder on a free spot in the cave diff --git a/code/modules/mining/mining_turret.dm b/code/modules/mining/mining_turret.dm index 4a7de5a5da6..c270110cbd3 100644 --- a/code/modules/mining/mining_turret.dm +++ b/code/modules/mining/mining_turret.dm @@ -72,12 +72,13 @@ if(!check_trajectory(L, src)) return TURRET_NOT_TARGET - if(emagged) // If emagged not even the dead get a rest - return L.stat ? TURRET_SECONDARY_TARGET : TURRET_PRIORITY_TARGET - if(L.stat == DEAD) return TURRET_NOT_TARGET + //the dead can now rest (to spare the mc from processing infinite turret spam) + if(emagged) + return L.stat ? TURRET_SECONDARY_TARGET : TURRET_PRIORITY_TARGET + if(!isgolem(L)) // Only target golems return TURRET_NOT_TARGET @@ -129,6 +130,17 @@ //Shooting Code: A.launch(target, def_zone) +/obj/machinery/porta_turret/mining/rogue + name = "malfunctioning mining turret" + desc = "A fully automated anti golem platform ...wait, why is it pointing at-" + //rusty + color = "#a48e70" + health = 45 + shot_delay = 10 + + emagged = TRUE + anchored = TRUE + #undef TURRET_PRIORITY_TARGET #undef TURRET_SECONDARY_TARGET #undef TURRET_NOT_TARGET diff --git a/code/modules/mob/living/carbon/superior_animal/golem/golem.dm b/code/modules/mob/living/carbon/superior_animal/golem/golem.dm index 5147003260b..7a55fde7c20 100644 --- a/code/modules/mob/living/carbon/superior_animal/golem/golem.dm +++ b/code/modules/mob/living/carbon/superior_animal/golem/golem.dm @@ -87,7 +87,7 @@ . = ..() // Spawn ores - if(mineral) + if(mineral && loc) var/nb_ores = CEILING((mineral.result_amount + rand(-3, 3)) * oremult, 1) for(var/i in 1 to nb_ores) new mineral.ore(loc) diff --git a/code/modules/mob/living/carbon/superior_animal/golem/types/plasma.dm b/code/modules/mob/living/carbon/superior_animal/golem/types/plasma.dm index 5723d62fb29..e3d3486490d 100644 --- a/code/modules/mob/living/carbon/superior_animal/golem/types/plasma.dm +++ b/code/modules/mob/living/carbon/superior_animal/golem/types/plasma.dm @@ -44,11 +44,11 @@ visible_message(span_danger("\The [src] starts glowing!")) icon_state = "golem_plasma_explosion" spawn(det_time) - // Plasma ball on location - visible_message(span_danger("\The [src] explodes into a ball of burning plasma!")) - for(var/turf/floor/target_tile as anything in RANGE_TURFS(2, get_turf(src))) - new /obj/effect/decal/cleanable/liquid_fuel(target_tile, 2, 1) - target_tile.hotspot_expose((T20C * 2) + 380, 500) // From flamethrower code + if(loc)//don't explode in nullspace idiot + visible_message(span_danger("\The [src] explodes into a ball of burning plasma!")) + for(var/turf/floor/target_tile as anything in RANGE_TURFS(2, loc))// Plasma ball on location + new /obj/effect/decal/cleanable/liquid_fuel(target_tile, 2, 1) + target_tile.hotspot_expose((T20C * 2) + 380, 500) // From flamethrower code . = ..() /mob/living/carbon/superior_animal/golem/plasma/UnarmedAttack(atom/A, proximity) diff --git a/maps/submaps/cave_pois/cave_pois.dm b/maps/submaps/cave_pois/cave_pois.dm index 7e796e23487..d83d391e0a7 100644 --- a/maps/submaps/cave_pois/cave_pois.dm +++ b/maps/submaps/cave_pois/cave_pois.dm @@ -1,6 +1,7 @@ #define PROB_HIGH 15 #define PROB_MID 10 #define PROB_LOW 5 +#define PROB_VERY_LOW 3 /datum/map_template/cave_pois name = null @@ -11,20 +12,22 @@ template_flags = 0 // No duplicates by default var/spawn_prob = 0 - var/min_seismic_lvl = 1 // Minimal seismic level for the poi to spawn + var/min_seismic_lvl = 1 // the poi will start spawning at this seismic level and above + var/max_seismic_lvl = 6 // the poi will stop spawing above this seismic level var/size_x = 0 var/size_y = 0 - + var/size = POI_SIZE_SMALL // determines which spawn pool this poi is added to /datum/map_template/cave_pois/New() mappath += (prefix + suffix) ..() // Neutral rooms - +// Low-tier ruins with maint lvl. loot /datum/map_template/cave_pois/neutral spawn_prob = PROB_HIGH min_seismic_lvl = 1 + max_seismic_lvl = 4 size_x = 5 size_y = 5 @@ -52,11 +55,45 @@ id = "cave_neutral5" suffix = "neutral5.dmm" -// Huts +/datum/map_template/cave_pois/neutral/neutral6 + name = "neutral 6" + id = "cave_neutral6" + suffix = "neutral6.dmm" + +/datum/map_template/cave_pois/neutral/neutral7 + name = "neutral 7" + id = "cave_neutral7" + suffix = "neutral7.dmm" + +//large maint-lvl generic ruins +/datum/map_template/cave_pois/neutral/big + min_seismic_lvl = 2 + max_seismic_lvl = 5 + spawn_prob = PROB_MID + size_x = 25 + size_y = 25 + size = POI_SIZE_LARGE + name = "big neutral 1" + id = "cave_bigneutral1" + suffix = "neutral_big1.dmm" + +/datum/map_template/cave_pois/neutral/big/bigneutral2 + name = "big neutral 2" + id = "cave_bigneutral2" + suffix = "neutral_big2.dmm" + +/datum/map_template/cave_pois/neutral/big/bigneutral3 + name = "big neutral 3" + id = "cave_bigneutral3" + suffix = "neutral_big3.dmm" +// Huts +// Mid-tier ruins with maint+ level loot +//appears on seismic lvls 2-5 /datum/map_template/cave_pois/hut spawn_prob = PROB_MID - min_seismic_lvl = 3 + min_seismic_lvl = 2 + max_seismic_lvl = 5 size_x = 7 size_y = 7 @@ -74,17 +111,169 @@ id = "cave_hut3" suffix = "hut3.dmm" -// Crashed pod +/datum/map_template/cave_pois/hut/hutnest + name = "nest hut" + id = "cave_hut_nest" + suffix = "hut_nest.dmm" + spawn_prob = PROB_LOW + +/datum/map_template/cave_pois/hut/hutshrine + name = "shrine hut" + id = "cave_hut_shrine" + suffix = "hut_shrine.dmm" + spawn_prob = PROB_LOW -/datum/map_template/cave_pois/crashed_pod - name = "crashed pod" - id = "cave_crashed_pod" - suffix = "crashed_pod.dmm" + +//spacewrecks +//dangerous mid-tier ruins with deepmaint tier loot +//appears on seismic 4-6 +/datum/map_template/cave_pois/spacewreck + name = "crashed escape shuttle" + id = "cave_spacewrecks1" + suffix = "spacewrecks1.dmm" spawn_prob = PROB_MID + size = POI_SIZE_LARGE min_seismic_lvl = 4 + size_x = 13 + size_y = 24 + +/datum/map_template/cave_pois/spacewreck/spacewreck2 + name = "crashed cargo hauler" + id = "cave_spacewrecks2" + suffix = "spacewrecks2.dmm" + size_x = 18 + +/datum/map_template/cave_pois/spacewreck/spacewreck3 + name = "survival pod" + id = "cave_spacewrecks3" + suffix = "spacewrecks3.dmm" size_x = 12 size_y = 16 +/datum/map_template/cave_pois/spacewreck/spacewreck4 + name = "overrun mining trawler" + id = "cave_spacewrecks4" + suffix = "spacewrecks4.dmm" + size_x = 18 + size_y = 23 + +/datum/map_template/cave_pois/spacewreck/spacewreck5 + name = "intercepted smuggler" + id = "cave_spacewrecks5" + suffix = "spacewrecks5.dmm" + size_x = 26 + size_y = 19 + +/datum/map_template/cave_pois/spacewreck/spacewreck6 + name = "crashed military frigate" + id = "cave_spacewrecks6" + suffix = "spacewrecks6.dmm" + size_x = 27 + size_y = 17 + + +// Serbian (military) wrecks +//rare and dangerous ruins with uncommon combat-themed loot +//appears on seismic 5-6 +/datum/map_template/cave_pois/serbian + name = "military wreck" + id = "cave_serbian1" + suffix = "serbian1.dmm" + spawn_prob = PROB_LOW + min_seismic_lvl = 5 + size_x = 25 + size_y = 25 + size = POI_SIZE_LARGE + +/datum/map_template/cave_pois/serbian/serbian2 + name = "military wreck 2" + id = "cave_serbian2" + suffix = "serbian2.dmm" + +/datum/map_template/cave_pois/serbian/serbian3 + name = "military wreck 3" + id = "cave_serbian3" + suffix = "serbian3.dmm" + +//small serbian chunks +//spawns alongside other ruins on seismic 4, replaces other chunks on seismic 5 +/datum/map_template/cave_pois/serbian_small + name = "small military 1" + id = "cave_serbian_tiny1" + suffix = "serbian_tiny1.dmm" + spawn_prob = PROB_MID + min_seismic_lvl = 4 + size_x = 5 + size_y = 5 + +/datum/map_template/cave_pois/serbian_small/small2 + name = "small military 2" + id = "cave_serbian_tiny2" + suffix = "serbian_tiny2.dmm" + +/datum/map_template/cave_pois/serbian_small/small3 + name = "small military 3" + id = "cave_serbian_tiny3" + suffix = "serbian_tiny3.dmm" + +/datum/map_template/cave_pois/serbian_small/small4 + name = "small military 4" + id = "cave_serbian_tiny4" + suffix = "serbian_tiny4.dmm" + +// Onestar ruins +//rare and very dangerous ruins with onestar loot +//only appears on seismic lvl. 6 +/datum/map_template/cave_pois/onestar + name = "onestar reeducation camp" + id = "cave_onestar1" + suffix = "onestar1.dmm" + spawn_prob = PROB_VERY_LOW + min_seismic_lvl = 6 + size_x = 25 + size_y = 25 + size = POI_SIZE_LARGE + +/datum/map_template/cave_pois/onestar/security + name = "onestar security checkpoint" + id = "cave_onestar2" + suffix = "onestar2.dmm" + +/datum/map_template/cave_pois/onestar/monitor + name = "onestar monitoring outpost" + id = "cave_onestar3" + suffix = "onestar3.dmm" + +/datum/map_template/cave_pois/onestar/med + name = "onestar medical clinic" + id = "cave_onestar4" + suffix = "onestar4.dmm" + +//tiny, low loot onestar chunks that replace contemporary small chunks at depth 6 +/datum/map_template/cave_pois/onestar_small + name = "small onestar chunk" + id = "cave_onestar_tiny1" + suffix = "onestar_tiny1.dmm" + spawn_prob = PROB_MID + min_seismic_lvl = 6 + size_x = 5 + size_y = 5 + +/datum/map_template/cave_pois/onestar_small/small2 + name = "small onestar chunk 2" + id = "cave_onestar_tiny2" + suffix = "onestar_tiny2.dmm" + +/datum/map_template/cave_pois/onestar_small/small3 + name = "small onestar chunk 3" + id = "cave_onestar_tiny3" + suffix = "onestar_tiny3.dmm" + +/datum/map_template/cave_pois/onestar_small/small4 + name = "small onestar chunk 4" + id = "cave_onestar_tiny4" + suffix = "onestar_tiny4.dmm" + #undef PROB_HIGH #undef PROB_MID #undef PROB_LOW diff --git a/maps/submaps/cave_pois/crashed_pod.dmm b/maps/submaps/cave_pois/crashed_pod_emergency.dmm similarity index 100% rename from maps/submaps/cave_pois/crashed_pod.dmm rename to maps/submaps/cave_pois/crashed_pod_emergency.dmm diff --git a/maps/submaps/cave_pois/hut1.dmm b/maps/submaps/cave_pois/hut1.dmm index 5556601efaa..a2330fa38d5 100644 --- a/maps/submaps/cave_pois/hut1.dmm +++ b/maps/submaps/cave_pois/hut1.dmm @@ -6,6 +6,8 @@ /obj/spawner/junkfood/rotten/low_chance, /obj/spawner/junkfood/low_chance, /obj/spawner/junkfood, +/obj/spawner/junkfood/rotten/low_chance, +/obj/spawner/junkfood/low_chance, /turf/floor/tiled/dark, /area/asteroid/cave) "b" = ( @@ -15,13 +17,19 @@ /obj/structure/table/rack, /obj/spawner/voidsuit, /obj/spawner/gun/energy_cheap/low_chance, -/obj/spawner/gun/energy_cheap/low_chance, +/obj/item/tank/oxygen, +/obj/spawner/powercell/low_chance, +/obj/spawner/powercell/low_chance, /turf/floor/tiled/dark, /area/asteroid/cave) "d" = ( /obj/structure/table/marble, /obj/spawner/pack/tech_loot/onestar, /obj/spawner/booze, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot/low_chance, +/obj/spawner/pack/tech_loot/low_chance, /turf/floor/tiled/dark, /area/asteroid/cave) "f" = ( diff --git a/maps/submaps/cave_pois/hut2.dmm b/maps/submaps/cave_pois/hut2.dmm index 9765dc5c1a8..a3bb7ec18d3 100644 --- a/maps/submaps/cave_pois/hut2.dmm +++ b/maps/submaps/cave_pois/hut2.dmm @@ -1,7 +1,5 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/obj/spawner/material/resources, -/obj/spawner/material/resources, /turf/floor/asteroid, /area/asteroid/cave) "b" = ( @@ -15,6 +13,14 @@ /obj/structure/closet/crate/freezer, /obj/spawner/junkfood, /obj/spawner/junkfood, +/obj/spawner/junkfood, +/obj/spawner/junkfood/low_chance, +/obj/spawner/junkfood/low_chance, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"e" = ( +/obj/spawner/junk, +/obj/spawner/traps/low_chance, /turf/floor/tiled/dark, /area/asteroid/cave) "f" = ( @@ -31,12 +37,15 @@ /obj/item/stack/material/glass/reinforced{ amount = 10 }, +/obj/spawner/material/resources, +/obj/spawner/material/resources, /turf/floor/tiled/dark, /area/asteroid/cave) "h" = ( /obj/structure/bed, /obj/item/bedsheet/rainbow, /obj/effect/decal/cleanable/cobweb2, +/obj/spawner/oddities/low_chance, /turf/floor/carpet, /area/asteroid/cave) "i" = ( @@ -68,8 +77,11 @@ "C" = ( /obj/structure/table/rack, /obj/spawner/voidsuit, -/obj/spawner/gun/energy_cheap/low_chance, /obj/spawner/gun/energy_cheap, +/obj/spawner/powercell/low_chance, +/obj/spawner/powercell/low_chance, +/obj/spawner/powercell/low_chance, +/obj/spawner/gun_parts/low_chance, /turf/floor/tiled/dark, /area/asteroid/cave) "G" = ( @@ -87,6 +99,11 @@ "U" = ( /turf/wall/low/with_glass/reinforced, /area/asteroid/cave) +"X" = ( +/mob/living/simple_animal/hostile/hivebot/range, +/obj/spawner/junk, +/turf/floor/tiled/dark, +/area/asteroid/cave) "Z" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 @@ -107,7 +124,7 @@ b (2,1,1) = {" b i -p +I c p f @@ -115,8 +132,8 @@ b "} (3,1,1) = {" c -p -G +e +X b I d diff --git a/maps/submaps/cave_pois/hut3.dmm b/maps/submaps/cave_pois/hut3.dmm index 3828649d5f6..fb5be7f0b48 100644 --- a/maps/submaps/cave_pois/hut3.dmm +++ b/maps/submaps/cave_pois/hut3.dmm @@ -25,6 +25,7 @@ pixel_y = -2 }, /obj/spawner/booze, +/obj/spawner/booze, /turf/floor/wood, /area/asteroid/cave) "i" = ( @@ -40,10 +41,10 @@ /area/asteroid/cave) "p" = ( /obj/structure/table/rack/shelf, -/obj/spawner/powercell, -/obj/spawner/powercell, -/obj/spawner/powercell, /obj/effect/decal/cleanable/cobweb, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost/low_chance, +/obj/spawner/medical/low_chance, /turf/floor/tiled/steel/brown_platform, /area/asteroid/cave) "r" = ( @@ -54,6 +55,7 @@ /obj/structure/closet/crate/freezer, /obj/spawner/junkfood, /obj/spawner/junkfood, +/obj/spawner/junkfood, /turf/floor/tiled/dark, /area/asteroid/cave) "u" = ( @@ -75,16 +77,21 @@ /area/asteroid/cave) "D" = ( /obj/structure/table/rack, -/obj/spawner/material, +/obj/spawner/material/ore, +/obj/spawner/material/ore, +/obj/spawner/material/ore, /turf/floor/asteroid, /area/asteroid/cave) "G" = ( /obj/structure/table/rack/shelf, /obj/spawner/pouch, -/obj/spawner/pouch, /obj/machinery/light{ dir = 8 }, +/obj/spawner/pouch/low_chance, +/obj/spawner/cloth/holster/low_chance, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/voidsuit/damaged/low_chance, /turf/floor/tiled/steel/brown_platform, /area/asteroid/cave) "I" = ( @@ -92,9 +99,15 @@ /obj/spawner/voidsuit, /obj/spawner/gun/energy_cheap/low_chance, /obj/spawner/gun/energy_cheap, +/obj/spawner/powercell/low_chance, +/obj/spawner/powercell/low_chance, +/obj/spawner/powercell, +/obj/spawner/powercell, +/obj/spawner/powercell, /turf/floor/tiled/dark, /area/asteroid/cave) "K" = ( +/obj/landmark/corpse/skeleton/maint, /turf/floor/wood, /area/asteroid/cave) "L" = ( @@ -111,6 +124,8 @@ /obj/item/stack/material/glass/reinforced{ amount = 10 }, +/obj/spawner/material, +/obj/spawner/material/resources, /turf/floor/tiled/steel/brown_platform, /area/asteroid/cave) "N" = ( @@ -118,8 +133,7 @@ /turf/floor/tiled/dark, /area/asteroid/cave) "Y" = ( -/obj/structure/table/rack, -/obj/spawner/material/resources, +/obj/item/tool/pickaxe/drill, /turf/floor/asteroid, /area/asteroid/cave) "Z" = ( @@ -128,9 +142,9 @@ (1,1,1) = {" a -a Y D +D b N b diff --git a/maps/submaps/cave_pois/hut_nest.dmm b/maps/submaps/cave_pois/hut_nest.dmm new file mode 100644 index 00000000000..9280896f9fb --- /dev/null +++ b/maps/submaps/cave_pois/hut_nest.dmm @@ -0,0 +1,297 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/turf/wall/reinforced, +/area/map_template/spider_nest) +"c" = ( +/obj/machinery/door/airlock/external, +/turf/floor/tiled/steel/techfloor, +/area/map_template/spider_nest) +"d" = ( +/obj/structure/closet/secure_closet/personal/scientist, +/obj/item/clothing/gloves/latex, +/obj/item/hand_labeler, +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"f" = ( +/obj/structure/computerframe{ + anchored = 1; + dir = 4 + }, +/turf/floor/tiled/white/danger, +/area/map_template/spider_nest) +"g" = ( +/obj/effect/spider/stickyweb, +/obj/spawner/pack/junk_machine, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"h" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers, +/obj/item/storage/box/syringes{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"j" = ( +/obj/structure/sign/biohazard, +/turf/wall/reinforced, +/area/map_template/spider_nest) +"n" = ( +/obj/effect/spider/stickyweb, +/obj/machinery/door/airlock/external, +/turf/floor/tiled/steel/techfloor, +/area/map_template/spider_nest) +"o" = ( +/obj/structure/closet/random/medsupply, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"r" = ( +/turf/wall/low/with_glass/smart, +/area/map_template/spider_nest) +"t" = ( +/obj/structure/bed/chair/comfy/purp{ + dir = 8 + }, +/obj/spawner/junkfood, +/obj/spawner/junkfood, +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/tiled/white/danger, +/area/map_template/spider_nest) +"v" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Xenobiology Operating Room"; + req_access = list(55) + }, +/obj/effect/spider/stickyweb, +/turf/floor/tiled/steel/techfloor_grid, +/area/map_template/spider_nest) +"w" = ( +/mob/living/carbon/superior_animal/giant_spider, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"x" = ( +/obj/effect/spider/stickyweb, +/obj/spawner/junk, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"y" = ( +/obj/structure/table/rack/shelf, +/obj/spawner/cloth/armor, +/obj/spawner/gun/energy_cheap, +/turf/floor/tiled/white/danger, +/area/map_template/spider_nest) +"A" = ( +/mob/living/carbon/superior_animal/giant_spider/hunter, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"B" = ( +/obj/structure/table/rack/shelf, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/tool/advanced, +/obj/spawner/tool_upgrade/low_chance, +/turf/floor/tiled/white/danger, +/area/map_template/spider_nest) +"D" = ( +/obj/landmark/corpse/doctor, +/obj/effect/decal/cleanable/blood, +/obj/item/material/shard, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/vomit, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"E" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/floor/asteroid, +/area/template_noop) +"F" = ( +/obj/effect/decal/cleanable/blood, +/obj/spawner/pack/junk_machine, +/turf/floor/asteroid, +/area/template_noop) +"G" = ( +/mob/living/carbon/superior_animal/giant_spider/nurse, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"H" = ( +/obj/machinery/optable{ + name = "Xenobiology Operating Table" + }, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"J" = ( +/obj/structure/table/standard, +/obj/item/tool/saw/circular{ + pixel_y = -3 + }, +/obj/item/reagent_containers/food/snacks/monkeycube{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/snacks/monkeycube{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"L" = ( +/obj/item/stool, +/turf/floor/asteroid, +/area/template_noop) +"M" = ( +/obj/spawner/pack/tech_loot, +/obj/structure/sign/department/xenolab{ + pixel_y = 32 + }, +/turf/floor/asteroid, +/area/template_noop) +"O" = ( +/obj/structure/table/standard{ + flipped = 1 + }, +/obj/item/folder/blue, +/turf/floor/tiled/white/danger, +/area/map_template/spider_nest) +"U" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/spider/stickyweb, +/obj/spawner/lowkeyrandom, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"V" = ( +/obj/structure/table/standard, +/obj/spawner/soda, +/turf/floor/asteroid, +/area/template_noop) +"W" = ( +/obj/effect/spider/stickyweb, +/obj/spawner/booze, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) +"X" = ( +/turf/floor/asteroid, +/area/template_noop) +"Y" = ( +/obj/spawner/junk, +/turf/floor/asteroid, +/area/template_noop) +"Z" = ( +/obj/effect/spider/stickyweb, +/turf/floor/tiled/white/violetcorener, +/area/map_template/spider_nest) + +(1,1,1) = {" +b +b +r +r +b +b +X +X +X +"} +(2,1,1) = {" +b +f +x +g +W +b +b +j +X +"} +(3,1,1) = {" +b +t +Z +w +Z +c +D +n +E +"} +(4,1,1) = {" +b +O +G +B +y +b +b +b +M +"} +(5,1,1) = {" +b +b +v +b +b +b +F +Y +X +"} +(6,1,1) = {" +b +d +Z +w +U +b +V +L +X +"} +(7,1,1) = {" +b +o +A +Z +H +b +Y +X +X +"} +(8,1,1) = {" +b +h +g +g +J +b +X +X +X +"} +(9,1,1) = {" +b +b +r +r +b +b +X +X +X +"} diff --git a/maps/submaps/cave_pois/hut_shrine.dmm b/maps/submaps/cave_pois/hut_shrine.dmm new file mode 100644 index 00000000000..27e56027eb0 --- /dev/null +++ b/maps/submaps/cave_pois/hut_shrine.dmm @@ -0,0 +1,169 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/turf/wall/reinforced, +/area/template_noop) +"c" = ( +/obj/machinery/door/unpowered/simple/uranium, +/turf/template_noop, +/area/template_noop) +"d" = ( +/turf/wall/frontier, +/area/template_noop) +"e" = ( +/obj/structure/bed/chair/wood, +/obj/effect/decal/cleanable/cobweb, +/obj/spawner/junk/low_chance, +/obj/item/book/ritual/cruciform, +/turf/floor/wood/airless, +/area/template_noop) +"f" = ( +/obj/item/trash/candle, +/turf/floor/wood/airless, +/area/template_noop) +"g" = ( +/obj/item/trash/candle, +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/wood/airless, +/area/template_noop) +"h" = ( +/turf/wall/low/frontier, +/area/template_noop) +"i" = ( +/obj/machinery/power/nt_obelisk, +/obj/effect/floor_decal/spline/fancy/wood/three_quarters, +/obj/structure/sign/faction/neotheology_old{ + pixel_y = -32 + }, +/turf/floor/tiled/steel/bar_light, +/area/template_noop) +"j" = ( +/obj/spawner/credits/low_chance, +/obj/spawner/credits/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/obj/structure/table/woodentable, +/obj/spawner/oddities/low_chance, +/obj/spawner/credits/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/carpet/bcarpet/airless, +/area/template_noop) +"q" = ( +/obj/structure/bed/chair/wood, +/obj/spawner/junk/low_chance, +/turf/floor/wood/airless, +/area/template_noop) +"E" = ( +/obj/spawner/credits/low_chance, +/obj/spawner/credits/low_chance, +/obj/spawner/junkfood/rotten, +/obj/spawner/junkfood/rotten/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/obj/structure/table/woodentable, +/obj/spawner/oddities/low_chance, +/obj/item/book/ritual/cruciform, +/obj/spawner/credits/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/carpet/bcarpet/airless, +/area/template_noop) +"I" = ( +/obj/structure/bed/chair/wood, +/obj/spawner/junk/low_chance, +/obj/spawner/junk/low_chance, +/turf/floor/wood/airless, +/area/template_noop) +"L" = ( +/turf/floor/wood/airless, +/area/template_noop) +"M" = ( +/obj/spawner/credits/low_chance, +/obj/spawner/credits/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/obj/spawner/credits/low_chance, +/obj/structure/table/woodentable, +/obj/spawner/oddities/low_chance, +/obj/spawner/credits/low_chance, +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/carpet/bcarpet/airless, +/area/template_noop) +"R" = ( +/obj/item/trash/candle, +/obj/item/tool/sword/nt, +/turf/floor/wood/airless, +/area/template_noop) +"W" = ( +/obj/effect/decal/cleanable/graffiti/graffiti_neotheo, +/turf/wall/reinforced, +/area/template_noop) +"X" = ( +/obj/structure/bed/chair/wood, +/obj/spawner/junk/low_chance, +/obj/item/book/ritual/cruciform, +/turf/floor/wood/airless, +/area/template_noop) + +(1,1,1) = {" +b +b +d +d +d +b +b +"} +(2,1,1) = {" +W +e +q +f +f +g +b +"} +(3,1,1) = {" +d +I +q +M +h +h +d +"} +(4,1,1) = {" +c +L +R +E +h +i +d +"} +(5,1,1) = {" +d +q +X +j +h +h +d +"} +(6,1,1) = {" +W +q +q +f +f +g +b +"} +(7,1,1) = {" +b +b +d +d +d +b +b +"} diff --git a/maps/submaps/cave_pois/neutral1.dmm b/maps/submaps/cave_pois/neutral1.dmm index 244fecf348a..3bf1cfbd655 100644 --- a/maps/submaps/cave_pois/neutral1.dmm +++ b/maps/submaps/cave_pois/neutral1.dmm @@ -68,6 +68,6 @@ c O O O -b +h x "} diff --git a/maps/submaps/cave_pois/neutral2.dmm b/maps/submaps/cave_pois/neutral2.dmm index 9ddfd6aeed3..f3320b0e348 100644 --- a/maps/submaps/cave_pois/neutral2.dmm +++ b/maps/submaps/cave_pois/neutral2.dmm @@ -1,6 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /mob/living/simple_animal/hostile/carp, +/obj/spawner/scrap/sparse/low_chance, /turf/floor/plating/under/airless, /area/asteroid/cave) "b" = ( @@ -70,5 +71,5 @@ p p c c -b +g "} diff --git a/maps/submaps/cave_pois/neutral3.dmm b/maps/submaps/cave_pois/neutral3.dmm index 1495f35ae35..5d9bbd1098c 100644 --- a/maps/submaps/cave_pois/neutral3.dmm +++ b/maps/submaps/cave_pois/neutral3.dmm @@ -29,6 +29,10 @@ "l" = ( /turf/floor/asteroid, /area/asteroid/cave) +"u" = ( +/obj/spawner/scrap/sparse/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) "N" = ( /turf/wall/low/with_glass/smart, /area/asteroid/cave) @@ -45,7 +49,7 @@ b c e f -b +u "} (3,1,1) = {" c @@ -64,7 +68,7 @@ g (5,1,1) = {" g l -b +u a b "} diff --git a/maps/submaps/cave_pois/neutral4.dmm b/maps/submaps/cave_pois/neutral4.dmm index 4d039a04e08..138ef99bc45 100644 --- a/maps/submaps/cave_pois/neutral4.dmm +++ b/maps/submaps/cave_pois/neutral4.dmm @@ -40,7 +40,7 @@ (1,1,1) = {" a a -e +h D e "} @@ -61,7 +61,7 @@ D (4,1,1) = {" d h -e +h d b "} diff --git a/maps/submaps/cave_pois/neutral5.dmm b/maps/submaps/cave_pois/neutral5.dmm index 1fe1cafafd1..987ab0ceea7 100644 --- a/maps/submaps/cave_pois/neutral5.dmm +++ b/maps/submaps/cave_pois/neutral5.dmm @@ -22,6 +22,7 @@ /obj/spawner/junk, /obj/spawner/junk, /obj/spawner/traps/wire_splicing/low_chance, +/obj/spawner/scrap/sparse/low_chance, /turf/floor/plating/under/airless, /area/asteroid/cave) "j" = ( @@ -49,6 +50,11 @@ /obj/structure/girder, /turf/floor/plating/under/airless, /area/asteroid/cave) +"S" = ( +/obj/spawner/junk, +/obj/spawner/scrap/sparse/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) (1,1,1) = {" h @@ -65,7 +71,7 @@ k n "} (3,1,1) = {" -k +S f i l diff --git a/maps/submaps/cave_pois/neutral6.dmm b/maps/submaps/cave_pois/neutral6.dmm new file mode 100644 index 00000000000..64800a65dd1 --- /dev/null +++ b/maps/submaps/cave_pois/neutral6.dmm @@ -0,0 +1,101 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/wall/reinforced, +/area/template_noop) +"b" = ( +/turf/wall/low/with_glass/smart, +/area/template_noop) +"c" = ( +/turf/wall, +/area/template_noop) +"d" = ( +/obj/structure/lattice, +/turf/floor/asteroid, +/area/template_noop) +"e" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/mob/living/simple_animal/hostile/carp, +/turf/floor/tiled/techmaint/airless, +/area/template_noop) +"f" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/template_noop) +"g" = ( +/obj/structure/table/standard, +/obj/spawner/lowkeyrandom, +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/template_noop) +"h" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/template_noop) +"i" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/techmaint/airless, +/area/template_noop) +"j" = ( +/obj/machinery/door/airlock/maintenance_common{ + name = "Service Maintenance"; + req_access = list(12) + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/template_noop) +"k" = ( +/turf/floor/plating/under/airless, +/area/template_noop) +"l" = ( +/turf/floor/asteroid, +/area/template_noop) +"m" = ( +/obj/spawner/traps, +/turf/floor/tiled/techmaint/airless, +/area/template_noop) +"z" = ( +/obj/structure/lattice, +/mob/living/simple_animal/hostile/carp, +/turf/floor/asteroid, +/area/template_noop) +"J" = ( +/obj/structure/girder, +/turf/floor/asteroid, +/area/template_noop) + +(1,1,1) = {" +d +f +z +k +l +"} +(2,1,1) = {" +a +c +c +j +a +"} +(3,1,1) = {" +b +e +h +m +a +"} +(4,1,1) = {" +b +g +i +i +a +"} +(5,1,1) = {" +a +a +a +a +J +"} diff --git a/maps/submaps/cave_pois/neutral7.dmm b/maps/submaps/cave_pois/neutral7.dmm new file mode 100644 index 00000000000..b72d37489ce --- /dev/null +++ b/maps/submaps/cave_pois/neutral7.dmm @@ -0,0 +1,101 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/railing{ + dir = 4; + tag = "icon-railing0 (EAST)" + }, +/obj/structure/lattice, +/mob/living/simple_animal/hostile/carp, +/turf/floor/asteroid, +/area/template_noop) +"b" = ( +/obj/structure/catwalk, +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/template_noop) +"c" = ( +/obj/structure/catwalk, +/turf/floor/plating/under/airless, +/area/template_noop) +"d" = ( +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/obj/spawner/junkfood/rotten, +/turf/floor/plating/under/airless, +/area/template_noop) +"e" = ( +/obj/spawner/traps, +/turf/floor/tiled/techmaint/airless, +/area/template_noop) +"f" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/template_noop) +"g" = ( +/turf/wall/reinforced, +/area/template_noop) +"h" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_common{ + name = "Service Maintenance"; + req_access = list(12) + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/template_noop) +"k" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/techmaint/airless, +/area/template_noop) +"l" = ( +/turf/floor/plating/under/airless, +/area/template_noop) +"J" = ( +/obj/structure/lattice, +/turf/floor/asteroid, +/area/template_noop) +"O" = ( +/obj/structure/lattice, +/mob/living/simple_animal/hostile/carp, +/turf/floor/asteroid, +/area/template_noop) +"S" = ( +/turf/floor/asteroid, +/area/template_noop) + +(1,1,1) = {" +a +f +J +J +l +"} +(2,1,1) = {" +b +g +g +g +f +"} +(3,1,1) = {" +c +h +e +g +O +"} +(4,1,1) = {" +d +g +k +g +S +"} +(5,1,1) = {" +J +g +g +g +S +"} diff --git a/maps/submaps/cave_pois/neutral_big1.dmm b/maps/submaps/cave_pois/neutral_big1.dmm new file mode 100644 index 00000000000..ac5a3cc8c68 --- /dev/null +++ b/maps/submaps/cave_pois/neutral_big1.dmm @@ -0,0 +1,1118 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ab" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ac" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ad" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"ae" = ( +/turf/wall/low/with_glass/smart, +/area/asteroid/cave) +"af" = ( +/turf/floor/plating/airless, +/area/asteroid/cave) +"ag" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ah" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ai" = ( +/obj/machinery/door/airlock/maintenance_common{ + name = "Service Maintenance"; + req_access = list(12) + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"aj" = ( +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"ak" = ( +/obj/machinery/light/small, +/obj/spawner/traps/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"al" = ( +/obj/machinery/light/small, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"am" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"an" = ( +/obj/structure/closet/emcloset, +/turf/floor/tiled/techmaint_perforated/airless, +/area/asteroid/cave) +"ao" = ( +/obj/spawner/pack/machine, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ap" = ( +/obj/machinery/door/airlock/maintenance_interior{ + name = "Reserve Storage"; + req_access = list(12) + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"ar" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"as" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"au" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"av" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aw" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/steel/cargo/airless, +/area/asteroid/cave) +"ax" = ( +/obj/spawner/scrap/sparse/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"ay" = ( +/obj/structure/table/rack, +/obj/spawner/ammo/lowcost/low_chance, +/obj/spawner/ammo/lowcost/low_chance, +/obj/spawner/ammo, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"az" = ( +/turf/wall, +/area/asteroid/cave) +"aA" = ( +/obj/structure/table/rack, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aB" = ( +/obj/spawner/traps/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aC" = ( +/obj/structure/table/rack, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aD" = ( +/obj/structure/table/rack, +/obj/spawner/boxes, +/obj/spawner/boxes, +/obj/spawner/boxes/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aE" = ( +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/obj/spawner/boxes/low_chance, +/obj/spawner/boxes/low_chance, +/obj/spawner/boxes/low_chance, +/turf/floor/tiled/steel/gray_perforated/airless, +/area/asteroid/cave) +"aF" = ( +/obj/structure/catwalk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aG" = ( +/obj/spawner/pack/tech_loot, +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aH" = ( +/obj/spawner/closet/tech/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aL" = ( +/obj/machinery/door/airlock/maintenance_common{ + name = "Service Maintenance"; + req_access = list(12) + }, +/turf/floor/tiled/steel/techfloor_grid/airless, +/area/asteroid/cave) +"aM" = ( +/obj/spawner/traps/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aN" = ( +/obj/structure/railing{ + dir = 1; + tag = "icon-railing0 (NORTH)" + }, +/obj/spawner/junk/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aQ" = ( +/obj/structure/railing{ + dir = 1; + tag = "icon-railing0 (NORTH)" + }, +/obj/structure/railing{ + dir = 4; + tag = "icon-railing0 (EAST)" + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aS" = ( +/obj/spawner/traps/wire_splicing/low_chance, +/obj/spawner/junk/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aT" = ( +/obj/spawner/junk/low_chance, +/obj/spawner/junk/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aW" = ( +/obj/spawner/traps/wire_splicing/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aX" = ( +/obj/structure/railing{ + dir = 4; + tag = "icon-railing0 (EAST)" + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aY" = ( +/obj/structure/sign/securearea{ + name = "EXPLOSION HAZARD"; + pixel_y = 32 + }, +/turf/floor/tiled/techmaint_panels/airless, +/area/asteroid/cave) +"aZ" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/techmaint_panels/airless, +/area/asteroid/cave) +"ba" = ( +/obj/spawner/scrap/dense/low_chance, +/turf/floor/tiled/techmaint_panels/airless, +/area/asteroid/cave) +"bb" = ( +/obj/structure/reagent_dispensers/fueltank/huge, +/obj/structure/sign/securearea{ + name = "EXPLOSION HAZARD"; + pixel_y = 32 + }, +/turf/floor/tiled/techmaint_panels/airless, +/area/asteroid/cave) +"bc" = ( +/obj/spawner/junk/low_chance, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bd" = ( +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/tiled/techmaint_panels/airless, +/area/asteroid/cave) +"be" = ( +/obj/structure/catwalk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bf" = ( +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bg" = ( +/obj/structure/table/rack, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot/low_chance, +/obj/spawner/pack/tech_loot/low_chance, +/obj/spawner/pack/tech_loot/low_chance, +/turf/floor/tiled/steel/gray_platform/airless, +/area/asteroid/cave) +"bh" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/steel/airless, +/area/asteroid/cave) +"bi" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/floor/tiled/steel/cargo/airless, +/area/asteroid/cave) +"bl" = ( +/obj/spawner/junk/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bm" = ( +/obj/structure/catwalk, +/obj/spawner/traps/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bn" = ( +/obj/structure/table/rack, +/obj/spawner/material/building, +/obj/spawner/material/building, +/obj/spawner/material/building/low_chance, +/obj/spawner/material/building/low_chance, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bo" = ( +/turf/floor/tiled/steel/airless, +/area/asteroid/cave) +"bq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bs" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bt" = ( +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/obj/spawner/traps/wire_splicing/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bu" = ( +/obj/structure/closet/oldstyle, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot/low_chance, +/obj/spawner/pack/tech_loot/low_chance, +/obj/spawner/pack/tech_loot/low_chance, +/obj/spawner/pack/tech_loot/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bv" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/spawner/junk/low_chance, +/turf/floor/tiled/steel/airless, +/area/asteroid/cave) +"bC" = ( +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bD" = ( +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bE" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"bG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bI" = ( +/obj/machinery/camera/network/second_section{ + dir = 1 + }, +/obj/spawner/junk/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bJ" = ( +/obj/structure/railing{ + dir = 1; + tag = "icon-railing0 (NORTH)" + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bL" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"bN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/spawner/scrap/dense, +/mob/living/simple_animal/hostile/bear, +/turf/floor/tiled/steel/airless, +/area/asteroid/cave) +"mW" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/steel/cargo/airless, +/area/asteroid/cave) +"rp" = ( +/turf/mineral/random, +/area/asteroid/cave) +"yw" = ( +/obj/structure/lattice, +/mob/living/simple_animal/hostile/carp, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"zb" = ( +/turf/cave_mineral, +/area/asteroid/cave) +"zd" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"HQ" = ( +/obj/effect/floor_decal/asteroid, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"JG" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"JT" = ( +/obj/structure/catwalk, +/mob/living/simple_animal/hostile/bear, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"NB" = ( +/obj/spawner/junk, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"Oq" = ( +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Ul" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) + +(1,1,1) = {" +ag +ah +ag +ac +zb +zb +zb +rp +zb +zb +zb +zb +zb +zb +HQ +ab +ab +aF +aF +aF +aF +ab +ac +ac +ac +"} +(2,1,1) = {" +ag +mW +ab +ac +zb +zb +rp +rp +rp +zb +zb +zb +zb +HQ +ac +ab +ag +ag +ab +ag +ad +ad +ad +ad +ab +"} +(3,1,1) = {" +ah +aj +ag +HQ +zb +zb +zb +zb +zb +zb +rp +zb +zb +ac +ac +aF +ad +aY +ah +bl +bq +ar +bG +ag +ac +"} +(4,1,1) = {" +ab +ah +ab +zb +zb +zb +rp +zb +zb +zb +zb +HQ +ac +JG +ac +aF +ad +aZ +ah +ab +bE +aj +ah +ab +ac +"} +(5,1,1) = {" +HQ +ac +zb +rp +zb +zb +zb +zb +zb +HQ +ac +ab +ab +ac +aF +aF +ad +ba +ah +ab +aj +aj +bl +ad +ag +"} +(6,1,1) = {" +zb +zb +rp +rp +zb +ab +ab +ab +ac +ac +ab +ab +ad +ab +ac +ac +ad +bb +bd +az +NB +ah +Ul +ad +ac +"} +(7,1,1) = {" +zb +zb +zb +zb +ab +ab +ac +ab +ab +ab +ah +ah +ad +ad +ad +ad +ad +ad +ag +ac +ao +ah +bI +ad +ac +"} +(8,1,1) = {" +zb +rp +zb +HQ +ab +ab +ac +ac +ab +ah +ah +Ul +az +am +aj +bL +ad +HQ +zb +zb +ag +ap +ad +ad +ab +"} +(9,1,1) = {" +zb +zb +HQ +ab +ab +ab +ac +ac +ad +Ul +ah +aw +ad +az +aG +aB +ad +zb +zb +zb +ae +bm +ae +ab +ac +"} +(10,1,1) = {" +ag +ag +ag +ad +ad +ad +ab +ab +ad +an +aj +aj +aA +az +az +aL +ad +bc +zb +HQ +ad +be +ad +ag +ag +"} +(11,1,1) = {" +ab +ah +ah +ah +bi +ad +ac +ac +ad +ao +aj +bE +aA +az +aH +aM +ag +ag +ab +ad +ad +JT +Ul +ab +ac +"} +(12,1,1) = {" +ab +ag +ag +ad +ai +ad +ac +ac +ag +ao +ah +aj +ax +az +yw +ab +ab +ab +be +bm +bs +be +bJ +ab +HQ +"} +(13,1,1) = {" +ac +ab +ab +ad +am +ad +ab +ab +ab +ao +as +aj +am +ag +ab +zb +zb +ab +Oq +bf +bt +bC +ah +ab +zb +"} +(14,1,1) = {" +zb +aa +ac +ae +ah +ae +ac +ac +ag +ag +ad +ai +ag +ag +ab +zb +zb +ag +ag +ad +ad +ad +ag +ab +HQ +"} +(15,1,1) = {" +HQ +ab +ab +ae +bi +ab +ac +ac +ac +ac +ad +bE +aB +ai +ab +zb +ab +ag +az +bh +bo +aE +bD +ac +zb +"} +(16,1,1) = {" +zb +ac +ab +af +ah +ae +ac +ac +ag +ad +ad +ar +az +ag +ah +aN +bl +ad +ad +ad +Ul +ah +ab +zb +zb +"} +(17,1,1) = {" +zb +zb +ab +ad +ak +ad +ab +ab +ag +ab +ah +ah +aC +az +bE +aN +aS +ad +bg +bn +ab +ab +ab +zb +zb +"} +(18,1,1) = {" +zb +zb +ac +ae +aj +ae +ac +ab +ad +ap +az +az +az +az +ar +aN +aT +ad +bg +ah +ah +ab +ac +zb +zb +"} +(19,1,1) = {" +zb +zb +ac +ae +bE +ae +ac +ad +ad +aj +au +ax +ax +az +aj +aN +bl +ad +bg +bo +ah +ab +ac +zb +zb +"} +(20,1,1) = {" +zb +zb +ac +ae +aj +ae +ac +ad +am +aj +ar +ay +aD +az +be +bJ +bl +ad +bh +bh +bu +bu +ab +ab +zb +"} +(21,1,1) = {" +zb +HQ +ab +ad +al +ad +ab +ad +aj +bE +aj +ah +ah +az +aK +bJ +ah +ad +ad +ad +ad +ag +ag +ab +zb +"} +(22,1,1) = {" +HQ +ac +ac +ae +ah +ae +ac +ad +am +aj +aj +ah +ab +ag +am +bJ +aW +az +bN +az +bv +ag +ah +ab +HQ +"} +(23,1,1) = {" +ag +ac +ac +ab +ah +ae +ac +ad +ad +ar +av +zd +ab +ag +aj +bJ +bl +az +bj +az +bj +az +bj +ac +zb +"} +(24,1,1) = {" +ah +ah +ab +ab +ab +ag +ac +ac +ad +ap +az +az +yw +ab +aa +aQ +aX +az +ah +ah +ah +ah +ab +HQ +zb +"} +(25,1,1) = {" +ag +ad +ae +ac +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ab +ab +ab +ag +ab +ab +ab +ab +ab +zb +zb +"} diff --git a/maps/submaps/cave_pois/neutral_big2.dmm b/maps/submaps/cave_pois/neutral_big2.dmm new file mode 100644 index 00000000000..ecc20dcaf9c --- /dev/null +++ b/maps/submaps/cave_pois/neutral_big2.dmm @@ -0,0 +1,1004 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/cave_mineral, +/area/asteroid/cave) +"ab" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ac" = ( +/obj/structure/railing, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ad" = ( +/turf/wall/low/with_glass/smart, +/area/asteroid/cave) +"ae" = ( +/obj/spawner/structures/common/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"af" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ag" = ( +/obj/machinery/door/airlock/maintenance_common{ + name = "Service Maintenance"; + req_access = list(12) + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"ah" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ai" = ( +/obj/spawner/junk/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aj" = ( +/obj/machinery/light/small, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ak" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"al" = ( +/obj/spawner/electronics/low_chance, +/obj/spawner/junkfood/rotten, +/obj/spawner/junkfood/rotten, +/obj/spawner/junkfood/rotten, +/obj/spawner/junk/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"am" = ( +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"an" = ( +/turf/wall, +/area/asteroid/cave) +"ao" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ap" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aq" = ( +/obj/spawner/scrap/sparse/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ar" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"as" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"at" = ( +/obj/structure/railing{ + dir = 4; + tag = "icon-railing0 (EAST)" + }, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"au" = ( +/obj/structure/railing{ + dir = 4; + tag = "icon-railing0 (EAST)" + }, +/obj/structure/railing, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"av" = ( +/obj/spawner/pack/machine, +/obj/spawner/pack/tech_loot/low_chance, +/obj/spawner/pack/tech_loot/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aw" = ( +/obj/spawner/pack/machine, +/obj/spawner/booze/low_chance, +/obj/spawner/booze/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ax" = ( +/obj/spawner/pack/machine, +/turf/floor/tiled/techmaint_panels/airless, +/area/asteroid/cave) +"ay" = ( +/obj/machinery/light/small, +/obj/spawner/scrap/sparse, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"az" = ( +/obj/spawner/traps, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aA" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aB" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aC" = ( +/obj/structure/table/rack, +/obj/spawner/contraband/low_chance, +/obj/spawner/tank, +/obj/spawner/tank, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aD" = ( +/obj/spawner/pack/machine, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aE" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/spawner/pack/machine, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aF" = ( +/turf/floor/tiled/steel/airless, +/area/asteroid/cave) +"aG" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aI" = ( +/obj/structure/table/rack, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/turf/floor/tiled/techmaint_panels/airless, +/area/asteroid/cave) +"aJ" = ( +/obj/spawner/junk/low_chance, +/obj/machinery/light/small, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aK" = ( +/obj/structure/table/rack/shelf, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/pack/tech_loot/low_chance, +/obj/spawner/pack/tech_loot/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/spawner/scrap/dense, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_medical{ + name = "Chemistry Maintenance"; + req_access = list(33) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "MedbayTotalLockdown"; + layer = 2.6; + name = "Medbay Total Lockdown"; + opacity = 0 + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"aO" = ( +/obj/structure/railing{ + dir = 1; + tag = "icon-railing0 (NORTH)" + }, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aR" = ( +/obj/structure/catwalk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aU" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aV" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/steel/airless, +/area/asteroid/cave) +"aW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aX" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aY" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/steel/gray_platform/airless, +/area/asteroid/cave) +"aZ" = ( +/obj/spawner/junk/low_chance, +/obj/structure/catwalk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ba" = ( +/obj/structure/table/rack, +/obj/spawner/pack/tech_loot, +/obj/spawner/boxes, +/turf/floor/tiled/steel/gray_platform/airless, +/area/asteroid/cave) +"bb" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/tiled/steel/airless, +/area/asteroid/cave) +"bc" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/steel/gray_platform/airless, +/area/asteroid/cave) +"be" = ( +/obj/structure/catwalk, +/mob/living/simple_animal/hostile/carp, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bf" = ( +/obj/structure/table/rack, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/boxes, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bg" = ( +/obj/spawner/pack/machine, +/turf/floor/tiled/steel/gray_platform/airless, +/area/asteroid/cave) +"bh" = ( +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/structure/table/rack, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bi" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/smart, +/area/asteroid/cave) +"bj" = ( +/obj/structure/table/standard, +/obj/item/folder/blue, +/obj/item/hand_labeler, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/turf/floor/tiled/steel/gray_platform/airless, +/area/asteroid/cave) +"jj" = ( +/obj/structure/lattice, +/mob/living/simple_animal/hostile/carp, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"of" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"rl" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"tL" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"EG" = ( +/obj/spawner/junk, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"FM" = ( +/obj/effect/floor_decal/asteroid, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Hn" = ( +/obj/structure/catwalk, +/obj/spawner/junk/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Kn" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Vp" = ( +/obj/structure/railing, +/obj/effect/floor_decal/asteroid, +/turf/floor/asteroid/cave, +/area/asteroid/cave) + +(1,1,1) = {" +aa +of +of +of +ab +af +of +of +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +of +of +of +ab +ab +af +ab +"} +(2,1,1) = {" +aa +FM +ab +af +aX +aX +of +aa +aa +aa +aa +aa +aa +aa +of +ak +ak +aX +aX +of +of +aX +ak +aX +ab +"} +(3,1,1) = {" +aa +aa +of +of +ao +ab +ab +FM +aa +aa +aa +aa +aa +aa +of +aX +af +aU +ak +ab +ab +aU +tL +aX +of +"} +(4,1,1) = {" +aa +aa +aa +ab +ab +of +of +aa +aa +aa +aa +aa +aa +of +of +ab +af +ax +ak +of +ab +am +af +ab +FM +"} +(5,1,1) = {" +aa +aa +of +jj +ab +of +aa +aa +aa +aa +of +of +of +of +of +ab +af +ap +ak +of +ab +ab +of +aa +aa +"} +(6,1,1) = {" +aa +of +ab +ab +ab +of +aa +aa +aa +of +aX +aH +ai +aX +of +aX +ak +ag +ak +ak +aX +ab +aa +aa +aa +"} +(7,1,1) = {" +FM +ab +ab +of +ab +ab +of +of +of +of +aX +ai +af +ak +ab +of +ak +aV +ba +bf +ab +of +of +aa +aa +"} +(8,1,1) = {" +aX +aX +ad +ak +ak +ab +ab +aX +ab +of +ak +af +Kn +ak +ab +ab +ak +aV +af +af +ab +ab +ab +aa +aa +"} +(9,1,1) = {" +of +ab +ae +al +ak +ak +ak +aX +ab +ab +an +af +aJ +aX +ab +ab +ak +aF +bb +ai +af +aX +ab +of +aa +"} +(10,1,1) = {" +of +ab +ao +am +ap +as +ai +af +aA +aX +ak +ai +af +ab +of +ab +ak +aY +bc +bg +bj +aX +ab +of +of +"} +(11,1,1) = {" +FM +aX +ag +an +an +an +an +an +an +ak +aD +af +ab +ai +aX +ak +ak +an +ad +ad +an +aX +of +of +FM +"} +(12,1,1) = {" +aa +of +ab +ab +of +of +of +ac +ay +ak +aE +ab +ab +aj +ak +aL +aO +of +of +of +of +of +of +FM +aa +"} +(13,1,1) = {" +aa +aa +ab +of +of +at +at +au +az +ag +af +ab +ab +af +ag +af +aO +of +of +of +ar +of +aa +aa +aa +"} +(14,1,1) = {" +aa +Vp +ah +af +af +af +am +ap +am +ak +ai +af +Kn +ai +an +aX +of +of +ai +af +of +of +aa +aa +aa +"} +(15,1,1) = {" +of +ac +ai +an +an +an +an +an +ag +ak +aB +aI +aI +ai +ab +of +of +aX +as +af +aO +of +aa +aa +aa +"} +(16,1,1) = {" +FM +ac +af +an +aq +aq +an +ao +aA +an +an +an +aX +of +of +of +ab +an +aW +bh +aO +of +of +aa +aa +"} +(17,1,1) = {" +aa +of +af +ad +ai +af +an +av +ab +ao +an +ab +of +af +of +of +aX +an +ag +aX +aX +aX +of +aa +aa +"} +(18,1,1) = {" +aa +aa +af +ad +of +of +an +aw +ab +aC +an +of +of +of +ab +aX +aR +aZ +be +ak +ab +ab +of +of +aa +"} +(19,1,1) = {" +aa +FM +ai +an +of +of +an +an +an +an +aX +of +of +ab +ao +an +ag +ad +ak +ak +ab +ab +ab +of +FM +"} +(20,1,1) = {" +aa +aa +ah +ag +ab +ab +ag +am +ap +EG +aG +ab +of +af +ao +an +Hn +aO +of +ak +of +of +of +of +aa +"} +(21,1,1) = {" +aa +aa +aj +an +of +ab +aX +ax +as +am +af +ab +ab +af +ax +an +aW +aO +of +bi +of +of +ab +aa +aa +"} +(22,1,1) = {" +aa +of +af +ad +ar +of +an +an +an +an +ag +an +ax +ap +aK +aX +ab +of +of +bi +ab +of +ab +aa +aa +"} +(23,1,1) = {" +FM +of +ab +ad +of +ab +ab +an +aB +am +af +an +an +an +an +aX +ab +of +ar +aX +of +ab +aX +ab +aa +"} +(24,1,1) = {" +aa +ab +ab +an +ab +ab +an +an +an +an +ai +aG +ao +af +rl +aR +aZ +of +of +aX +ab +af +aX +aX +ab +"} +(25,1,1) = {" +aa +ab +af +aX +aX +aX +an +ab +ab +an +ab +ab +ab +an +an +aN +aX +of +of +of +ab +ab +af +ab +of +"} diff --git a/maps/submaps/cave_pois/neutral_big3.dmm b/maps/submaps/cave_pois/neutral_big3.dmm new file mode 100644 index 00000000000..637157094c8 --- /dev/null +++ b/maps/submaps/cave_pois/neutral_big3.dmm @@ -0,0 +1,1113 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ad" = ( +/obj/spawner/pack/machine, +/turf/floor/tiled/dark/danger/airless, +/area/asteroid/cave) +"ae" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"af" = ( +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"ag" = ( +/obj/spawner/pack/machine, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"ah" = ( +/obj/spawner/junkfood/rotten, +/turf/floor/tiled/dark/danger/airless, +/area/asteroid/cave) +"an" = ( +/obj/spawner/scrap/sparse/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aq" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ar" = ( +/obj/spawner/scrap/dense, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"as" = ( +/obj/spawner/junkfood/rotten, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"at" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"az" = ( +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/obj/spawner/junk, +/turf/floor/tiled/dark/danger/airless, +/area/asteroid/cave) +"aA" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"aC" = ( +/obj/spawner/junk, +/turf/floor/tiled/dark/danger/airless, +/area/asteroid/cave) +"aE" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/tiled/dark/danger/airless, +/area/asteroid/cave) +"aI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aJ" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aP" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aQ" = ( +/obj/structure/lattice, +/obj/spawner/junk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aR" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aZ" = ( +/turf/floor/tiled/dark/danger/airless, +/area/asteroid/cave) +"bb" = ( +/obj/machinery/light/small, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bd" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/smart, +/area/asteroid/cave) +"bf" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"bg" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bh" = ( +/obj/structure/railing{ + dir = 1; + tag = "icon-railing0 (NORTH)" + }, +/obj/spawner/junkfood/rotten, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bi" = ( +/obj/spawner/traps, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"bl" = ( +/obj/structure/sign/atmos_co2{ + pixel_y = 32 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bn" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bo" = ( +/obj/spawner/junk/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bp" = ( +/obj/structure/table/reinforced, +/obj/item/stack/material/glass{ + amount = 120 + }, +/obj/spawner/junk, +/turf/floor/tiled/dark/techfloor_grid/airless, +/area/asteroid/cave) +"bq" = ( +/obj/structure/table/reinforced, +/obj/item/stack/material/steel{ + amount = 120 + }, +/obj/spawner/junk, +/turf/floor/tiled/dark/techfloor_grid/airless, +/area/asteroid/cave) +"br" = ( +/obj/structure/table/reinforced, +/obj/item/tank/emergency_oxygen{ + pixel_x = -8 + }, +/obj/item/tank/emergency_oxygen{ + pixel_x = -8 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/spawner/junk, +/turf/floor/tiled/dark/techfloor_grid/airless, +/area/asteroid/cave) +"bs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Wasting Room" + }, +/turf/floor/tiled/dark/techfloor_grid/airless, +/area/asteroid/cave) +"bt" = ( +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"bw" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/plasma, +/area/asteroid/cave) +"bx" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"by" = ( +/obj/structure/table/reinforced, +/obj/item/tank/emergency_oxygen/double, +/obj/machinery/light/small, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bA" = ( +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bC" = ( +/turf/cave_mineral, +/area/asteroid/cave) +"bK" = ( +/obj/structure/catwalk, +/obj/structure/sign/atmos_co2{ + pixel_y = 32 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bS" = ( +/obj/spawner/junk/low_chance, +/turf/floor/plating/airless, +/area/asteroid/cave) +"bW" = ( +/obj/machinery/door/airlock/maintenance_engineering{ + name = "Engineering Maintenance"; + req_access = list(10) + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"bX" = ( +/obj/structure/catwalk, +/obj/structure/sign/atmos_o2{ + pixel_x = -32 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ca" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"cc" = ( +/obj/machinery/firealarm{ + pixel_y = 28 + }, +/turf/floor/tiled/dark/techfloor/airless, +/area/asteroid/cave) +"ci" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_engineering{ + name = "Atmospherics Maintenance"; + req_access = list(24) + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"ck" = ( +/turf/floor/tiled/dark/techfloor/airless, +/area/asteroid/cave) +"cn" = ( +/obj/spawner/pack/machine, +/turf/floor/tiled/techmaint_panels/airless, +/area/asteroid/cave) +"cp" = ( +/obj/structure/table/rack, +/obj/spawner/lowkeyrandom, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"cv" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"cz" = ( +/obj/structure/table/reinforced, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"cA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/spawner/tank, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"cE" = ( +/obj/structure/railing{ + dir = 1; + tag = "icon-railing0 (NORTH)" + }, +/obj/spawner/powercell/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cF" = ( +/obj/structure/railing{ + dir = 4; + tag = "icon-railing0 (EAST)" + }, +/obj/structure/railing{ + dir = 1; + tag = "icon-railing0 (NORTH)" + }, +/obj/spawner/traps/wire_splicing/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cI" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/obj/structure/railing{ + dir = 4; + tag = "icon-railing0 (EAST)" + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cJ" = ( +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/obj/structure/railing, +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cP" = ( +/obj/structure/railing{ + dir = 4; + tag = "icon-railing0 (EAST)" + }, +/obj/spawner/traps/wire_splicing/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cT" = ( +/obj/structure/railing, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cV" = ( +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cW" = ( +/obj/structure/catwalk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cY" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cZ" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4; + tag = "icon-railing0 (EAST)" + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"db" = ( +/obj/structure/sign/vacuum, +/turf/wall/reinforced, +/area/asteroid/cave) +"dc" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "atmos_airlock_door_int"; + locked = 1; + name = "Internal Atmospherics Airlock" + }, +/turf/floor/tiled/steel/cargo/airless, +/area/asteroid/cave) +"dd" = ( +/obj/structure/railing{ + dir = 1; + tag = "icon-railing0 (NORTH)" + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"df" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/rack, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"dh" = ( +/turf/wall, +/area/asteroid/cave) +"di" = ( +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/turf/floor/plating/airless, +/area/asteroid/cave) +"dj" = ( +/turf/wall/low/with_glass/smart, +/area/asteroid/cave) +"iy" = ( +/obj/effect/floor_decal/asteroid, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"lj" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/dark/danger/airless, +/area/asteroid/cave) +"uE" = ( +/obj/structure/railing{ + dir = 1; + tag = "icon-railing0 (NORTH)" + }, +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"zf" = ( +/obj/spawner/scrap/dense, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"EQ" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/dark/danger/airless, +/area/asteroid/cave) +"NP" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/steel/cargo/airless, +/area/asteroid/cave) +"Oa" = ( +/obj/structure/railing, +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Tj" = ( +/obj/structure/railing{ + dir = 8; + tag = "icon-railing0 (WEST)" + }, +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Yu" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/plating/under/airless, +/area/asteroid/cave) + +(1,1,1) = {" +bn +bx +ae +aa +aa +aa +bn +bn +bn +ae +iy +bC +bC +bC +iy +aa +aa +aa +bn +iy +bC +aa +bx +ae +bn +"} +(2,1,1) = {" +bn +NP +bn +aa +aa +aA +aA +bs +aA +aA +bn +iy +bC +bn +bn +aA +aA +aA +aA +aa +aa +bn +bn +bx +bx +"} +(3,1,1) = {" +bx +bt +ae +bx +aa +aA +Oa +bt +aP +aA +aA +aA +bn +aA +aA +aA +ar +aq +aA +aA +bn +bn +aa +aa +iy +"} +(4,1,1) = {" +bn +bx +aJ +ae +bn +aA +bl +aA +Tj +aA +at +aA +ae +aA +cn +bt +dd +cT +bt +dj +aa +aR +aa +bC +bC +"} +(5,1,1) = {" +aa +bn +bx +bd +aa +bd +an +bx +bx +aA +af +bW +bf +aA +cn +bt +cE +cT +bt +dj +aa +aa +iy +bC +bC +"} +(6,1,1) = {" +bn +bx +bx +aA +bn +aA +aA +aA +bx +aA +aA +aA +bt +aA +aA +cv +cF +cZ +ca +aA +aa +aa +bC +bC +bC +"} +(7,1,1) = {" +bn +Yu +bo +aA +aa +bn +bn +aA +aq +aA +bS +aA +cW +bh +aA +cW +cW +cW +bt +aA +aa +bC +bC +bC +bC +"} +(8,1,1) = {" +bn +bx +bx +bd +aa +bn +bn +aA +ar +as +bx +cT +cW +aA +aA +bt +cW +cW +ag +aA +aa +bC +bC +bC +bC +"} +(9,1,1) = {" +ae +bx +bx +aA +aA +aA +aA +aA +aA +aA +ae +aA +cW +aA +cn +ca +cW +cW +bt +dj +aa +iy +bC +bC +bC +"} +(10,1,1) = {" +aa +bx +bx +aZ +lj +bd +bn +bw +aQ +bn +bn +aA +bK +aA +cn +aP +cW +cW +ca +dj +bn +aa +bC +bC +bC +"} +(11,1,1) = {" +aa +bx +bx +ad +aE +bd +bn +bw +bn +aa +aa +ae +bn +aA +aA +cz +cW +cW +bt +aA +aA +aa +aa +bC +bC +"} +(12,1,1) = {" +bn +bx +bx +aZ +lj +bd +bn +bw +bn +bn +aR +aa +aa +ar +aA +cA +cW +cW +bt +df +aA +bn +bn +aa +bC +"} +(13,1,1) = {" +aa +bx +bx +lj +dj +aA +aA +aA +ae +bx +aa +aa +aa +ae +aA +aA +cI +cW +db +aA +aA +ae +bn +aa +iy +"} +(14,1,1) = {" +bn +bx +bx +EQ +dj +aq +bx +bn +ae +bx +aa +aa +bn +bo +bx +bW +cW +cW +dc +bx +bx +bx +bn +aR +aa +"} +(15,1,1) = {" +aa +bn +bx +ah +dj +bn +bx +aq +aA +cW +aA +aA +aA +aA +aA +aA +cJ +cV +aA +dh +aA +ae +bn +aa +iy +"} +(16,1,1) = {" +aa +bn +bx +az +aA +ae +ar +bx +dj +cW +cW +bX +cW +dj +zf +ae +cT +cW +dj +di +aA +bn +bn +iy +bC +"} +(17,1,1) = {" +aa +bn +bx +aC +dj +bn +bx +bo +dj +bA +aA +bt +ca +aA +aA +aA +cT +cW +aA +aA +aA +aa +aa +bC +bC +"} +(18,1,1) = {" +aa +bx +aJ +EQ +dj +bn +bo +bo +aA +bo +aA +bf +bt +bi +cp +aA +cT +cW +uE +dj +bn +aa +bC +bC +bC +"} +(19,1,1) = {" +aa +Yu +bx +lj +dj +aA +aA +aA +aA +aA +aA +aA +aA +ci +aA +aA +Oa +cW +dd +dj +bn +aa +aa +bC +bC +"} +(20,1,1) = {" +aa +bx +bx +aZ +aZ +bd +aJ +bx +bn +bn +bn +aA +ck +ck +bp +aA +cT +cW +aA +aA +aA +aA +ae +aa +bC +"} +(21,1,1) = {" +bn +bx +bx +ad +aZ +bd +bn +aa +aR +aa +bn +aA +ck +ck +bq +aA +cT +cW +bi +bW +at +aA +bn +aa +iy +"} +(22,1,1) = {" +bn +bx +bx +aZ +EQ +bd +bn +aa +aa +bn +bn +aA +cc +ck +br +aA +bx +cY +bt +aA +aA +aA +bn +aa +aa +"} +(23,1,1) = {" +aa +bn +bx +aJ +aA +aA +aa +aa +aa +ae +aA +aA +bg +bx +by +aA +cP +cZ +aP +aA +bn +bn +bn +ae +bn +"} +(24,1,1) = {" +aa +bn +bx +bx +dh +aI +iy +bC +aa +bb +ae +bn +bn +bn +bx +ci +cW +cW +bt +aA +aa +aa +bx +ae +bn +"} +(25,1,1) = {" +aa +aa +aa +bn +bn +iy +bC +bC +bC +iy +aa +aa +aa +aa +ae +aA +aA +dj +dj +aA +aa +aa +bx +ar +bn +"} diff --git a/maps/submaps/cave_pois/onestar1.dmm b/maps/submaps/cave_pois/onestar1.dmm new file mode 100644 index 00000000000..ced90ecd644 --- /dev/null +++ b/maps/submaps/cave_pois/onestar1.dmm @@ -0,0 +1,1388 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"am" = ( +/turf/floor/wood/airless, +/area/asteroid/cave) +"an" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ao" = ( +/obj/structure/catwalk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aq" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/spawner/junk/low_chance, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"as" = ( +/obj/structure/salvageable/os/data, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"aw" = ( +/turf/wall/low/with_glass/reinforced, +/area/asteroid/cave) +"ay" = ( +/obj/structure/railing/grey, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"aA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"aF" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aH" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/warning, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"aI" = ( +/obj/machinery/door/window/northleft, +/obj/effect/floor_decal/industrial/warning, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"aJ" = ( +/obj/spawner/junk, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"aN" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"aY" = ( +/obj/machinery/door/window/northright{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"bc" = ( +/obj/structure/bed, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"bh" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"bi" = ( +/obj/effect/damagedfloor/fire, +/obj/effect/decal/cleanable/ash, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"bj" = ( +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"bm" = ( +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"bq" = ( +/obj/spawner/medical, +/obj/machinery/light{ + dir = 4 + }, +/obj/spawner/medical, +/obj/structure/largecrate, +/obj/spawner/firstaid, +/obj/spawner/firstaid, +/obj/structure/window/reinforced, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"bu" = ( +/obj/structure/table/onestar, +/obj/spawner/junkfood/rotten, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"by" = ( +/obj/item/flamethrower/full, +/obj/structure/table/onestar, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"bA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"bB" = ( +/obj/structure/sign/faction/one_star_old, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"bE" = ( +/turf/floor/dirt/airless, +/area/asteroid/cave) +"bL" = ( +/obj/structure/closet/emcloset, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"bN" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"bV" = ( +/obj/structure/table/onestar, +/obj/item/paper_bin, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"cV" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"ee" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 4 + }, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"en" = ( +/obj/structure/salvageable/os/console_broken{ + dir = 4 + }, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"eC" = ( +/obj/machinery/door/window/northleft, +/obj/effect/floor_decal/industrial/warning, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"eT" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"fs" = ( +/obj/effect/damagedfloor/fire, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"fv" = ( +/obj/structure/sign/derelict3{ + pixel_y = 32 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"fH" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"gY" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"hO" = ( +/obj/structure/largecrate, +/obj/spawner/material/building, +/obj/spawner/material/building/low_chance, +/obj/spawner/material/resources/rare/low_chance, +/obj/spawner/material/building, +/obj/spawner/material/building, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"hU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"hX" = ( +/obj/structure/bed/chair/custom/onestar/red{ + dir = 8 + }, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"hY" = ( +/obj/structure/lattice, +/turf/mineral, +/area/asteroid/cave) +"ic" = ( +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"if" = ( +/obj/structure/sign/derelict1{ + pixel_x = 32 + }, +/obj/structure/bed/chair/custom/onestar/red{ + dir = 8 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"iq" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"jc" = ( +/obj/structure/bed, +/obj/landmark/corpse/skeleton, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"jd" = ( +/obj/spawner/junk, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"jj" = ( +/obj/spawner/junkfood/rotten, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"jv" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ku" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/spawner/junk/low_chance, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"kH" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"nT" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"oN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"pA" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"pI" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"rd" = ( +/obj/structure/catwalk, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"rT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"sf" = ( +/obj/structure/sign/faction/one_star, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"ss" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/onestar/tier1/mineral, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"sz" = ( +/obj/item/material/shard, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"sD" = ( +/obj/effect/damagedfloor/fire, +/obj/landmark/corpse/skeleton, +/obj/item/remains/human, +/obj/effect/decal/cleanable/ash, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"sF" = ( +/obj/spawner/junkfood/rotten, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"ue" = ( +/obj/structure/closet/onestar/tier1, +/obj/structure/window/reinforced, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"um" = ( +/obj/structure/sign/derelict2{ + pixel_y = -32 + }, +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"uK" = ( +/obj/machinery/light, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"uX" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/warning, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"ve" = ( +/obj/effect/damagedfloor/fire, +/obj/structure/closet/onestar/tier1, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"vD" = ( +/obj/structure/bed, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"vJ" = ( +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"vQ" = ( +/obj/structure/bed, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"vW" = ( +/obj/structure/lattice, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"wL" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"wX" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"xb" = ( +/obj/structure/table/onestar, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"xh" = ( +/obj/effect/damagedfloor/fire, +/obj/item/remains/human, +/obj/effect/decal/cleanable/ash, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"ym" = ( +/obj/structure/bed, +/obj/spawner/oddities/low_chance, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"yr" = ( +/obj/machinery/light_construct{ + dir = 1 + }, +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"zo" = ( +/obj/structure/table/onestar, +/obj/item/deck/cards, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"zE" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"zJ" = ( +/obj/structure/table/onestar, +/obj/machinery/chemical_dispenser/beer, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"zM" = ( +/obj/structure/table/onestar, +/obj/machinery/chemical_dispenser/soda, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"Bc" = ( +/obj/structure/table/onestar, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Bv" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"BZ" = ( +/turf/mineral, +/area/asteroid/cave) +"CY" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 8 + }, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"Di" = ( +/obj/machinery/door/airlock/sandstone{ + name = "OneStar Airlock" + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Dm" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"DP" = ( +/obj/item/beach_ball/holoball, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"DU" = ( +/obj/landmark/corpse/one_star, +/obj/structure/bed/chair/custom/onestar/red, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"DW" = ( +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"Ex" = ( +/obj/item/remains/human, +/mob/living/simple_animal/hostile/onestar_custodian/engineer, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"EL" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ES" = ( +/obj/structure/bed/chair/custom/onestar/red{ + dir = 1 + }, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"Gn" = ( +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Gu" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"Hn" = ( +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"HN" = ( +/obj/structure/closet/onestar/tier2/medical, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Jl" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Jx" = ( +/obj/spawner/junkfood/rotten, +/turf/floor/wood/airless, +/area/asteroid/cave) +"Kz" = ( +/obj/spawner/soda, +/turf/floor/wood/airless, +/area/asteroid/cave) +"Lj" = ( +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Lk" = ( +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"LL" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/floor/tiled/dark/techfloor/airless, +/area/asteroid/cave) +"Mb" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Mm" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"Mq" = ( +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"Nd" = ( +/obj/structure/closet/onestar/tier2/mineral, +/obj/structure/window/reinforced, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"Ny" = ( +/obj/machinery/power/os_turret/laser, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"NG" = ( +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"NK" = ( +/obj/machinery/light/floor, +/obj/spawner/junkfood/rotten, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"OP" = ( +/obj/effect/damagedfloor/fire, +/obj/landmark/corpse/skeleton, +/obj/item/remains/human, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"PY" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Rv" = ( +/obj/structure/flora/tree/dead, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"So" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/spawner/pack/rare/low_chance, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"SI" = ( +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"TK" = ( +/obj/machinery/light/floor, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"TW" = ( +/obj/machinery/constructable_frame/machine_frame/vertical, +/obj/spawner/junkfood/rotten, +/obj/spawner/junkfood/rotten, +/obj/spawner/junkfood/rotten, +/obj/item/material/shard, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"Ul" = ( +/obj/structure/catwalk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Ux" = ( +/obj/machinery/door/window/northright{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/spawner/junk/low_chance, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Wd" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Wf" = ( +/obj/structure/table/onestar, +/obj/item/pen/red, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Wo" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"WA" = ( +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Yp" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/external, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"YF" = ( +/obj/structure/closet/onestar/tier1, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"YQ" = ( +/obj/item/material/shard, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"YT" = ( +/obj/effect/damagedfloor/fire, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"YW" = ( +/obj/structure/table/onestar, +/obj/spawner/gun/shotgun, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"YZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/onestar/tier2, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Zh" = ( +/obj/effect/decal/cleanable/ash, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Zt" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/holohoop, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"ZC" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/spawner/junk/low_chance, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) + +(1,1,1) = {" +nT +nT +nT +BZ +BZ +BZ +BZ +BZ +nT +nT +nT +nT +nT +nT +nT +nT +nT +BZ +BZ +BZ +BZ +BZ +BZ +nT +nT +"} +(2,1,1) = {" +nT +Wd +zE +nT +BZ +BZ +BZ +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +nT +BZ +BZ +BZ +BZ +nT +nT +nT +"} +(3,1,1) = {" +nT +zE +EL +Wd +nT +BZ +nT +Wd +Mq +aw +Mq +jv +Ul +Jl +Mq +aw +Mq +nT +nT +BZ +zE +nT +EL +nT +nT +"} +(4,1,1) = {" +nT +zE +EL +Mq +Mq +Mq +Mq +Mq +Mq +zE +Mq +Mq +Yp +Mq +Mq +zE +Mq +Mq +Mq +Mq +Mq +Mq +Mq +zE +nT +"} +(5,1,1) = {" +nT +Wd +EL +ss +NG +Nd +hO +hO +Mq +LL +Bv +Hn +Hn +Hn +aF +LL +Mq +sD +sD +xh +bi +ve +Mq +Wd +nT +"} +(6,1,1) = {" +nT +nT +Mq +SI +Ny +aJ +pA +SI +Mq +NG +NG +Hn +Hn +vJ +NG +NG +Mq +OP +xh +YT +Ex +Hn +vW +Wd +nT +"} +(7,1,1) = {" +nT +nT +Mq +aJ +SI +SI +SI +SI +Di +NK +sz +bu +Bc +Wf +bV +TK +Mq +xh +YT +Zh +fs +Hn +vW +zE +zE +"} +(8,1,1) = {" +nT +Wd +Mq +ue +NG +bq +jd +YF +Mq +TW +jj +Hn +YQ +if +bu +bL +Mq +OP +xh +YT +Hn +by +Mq +zE +nT +"} +(9,1,1) = {" +Wd +EL +Mq +Mq +Mq +Mq +Mq +Mq +Mq +Mq +Mq +aw +Di +Mq +Mq +Mq +Mq +Mq +Mq +Mq +Wo +eT +Mq +EL +nT +"} +(10,1,1) = {" +nT +zE +Mq +jc +bh +Hn +wL +bA +Dm +an +fH +bA +aA +Hn +aq +vQ +Mq +bc +bh +oN +kH +rT +Dm +Wd +nT +"} +(11,1,1) = {" +nT +nT +Mq +aN +aY +Hn +pI +rd +ao +ao +ao +rd +hU +Hn +uX +aN +Mq +aN +Ux +Hn +pI +rd +ao +Wd +nT +"} +(12,1,1) = {" +nT +BZ +Mq +Mq +Mq +cV +PY +sf +Mq +Di +Mq +sf +Hn +uK +Mq +Mq +Mq +Mq +Mq +bm +PY +bB +EL +nT +nT +"} +(13,1,1) = {" +BZ +BZ +Mq +bc +bh +Hn +Hn +Mq +en +WA +as +Mq +Hn +Hn +aq +bc +Mq +vD +ZC +Hn +Hn +EL +zE +nT +nT +"} +(14,1,1) = {" +BZ +BZ +Mq +aN +aY +Hn +Hn +aw +hX +DW +DW +aw +Hn +Hn +aH +aN +Mq +aN +aY +Hn +Hn +zE +zE +zE +nT +"} +(15,1,1) = {" +BZ +hY +Mq +Mq +Mq +fv +Hn +aw +ES +Ny +DU +aw +Hn +um +Mq +Mq +Mq +Mq +Mq +Hn +zE +zE +Wd +Wd +nT +"} +(16,1,1) = {" +BZ +BZ +Mq +aN +Lj +Hn +Hn +aw +DW +DW +DW +aw +Hn +Hn +aI +aN +Mq +aN +Gn +Hn +Hn +zE +zE +Wd +nT +"} +(17,1,1) = {" +BZ +BZ +Mq +bc +iq +Hn +Hn +Mq +HN +YZ +YW +Mq +Hn +Hn +aq +vQ +Mq +ym +ZC +Hn +Hn +Mq +zE +Wd +nT +"} +(18,1,1) = {" +BZ +BZ +Mq +Mq +Mq +cV +Hn +sf +aw +Mq +aw +sf +Hn +uK +Mq +Mq +Mq +Mq +Mq +yr +Hn +bB +zE +nT +nT +"} +(19,1,1) = {" +nT +Wd +Mq +aN +Lj +Lk +Hn +am +am +Zt +bE +ay +Hn +Lk +eC +aN +Mq +aN +Lj +Hn +Hn +zE +zE +Wd +nT +"} +(20,1,1) = {" +nT +zE +Mq +jc +bh +Hn +Hn +wX +am +bE +DP +ay +Hn +Hn +aq +ym +Mq +bc +ku +Hn +Hn +wX +zE +zE +nT +"} +(21,1,1) = {" +nT +EL +Mq +Mq +Mq +Mq +Mq +xb +am +Rv +bE +ee +Mq +Di +Mq +Mq +Mq +Mq +Mq +Mq +Mq +bE +zE +zE +nT +"} +(22,1,1) = {" +nT +zE +zE +Gu +ic +gY +Mq +zJ +Jx +bE +sF +zo +Mq +bj +Mq +Mb +zE +Mm +bN +gY +Mq +bE +zE +Wd +Wd +"} +(23,1,1) = {" +nT +Wd +zE +zE +bj +bj +Mq +zM +Kz +bE +bE +CY +Mq +So +Mq +Wd +zE +zE +bj +bj +Mq +sF +zE +zE +nT +"} +(24,1,1) = {" +nT +nT +Wd +zE +zE +zE +Mq +Mq +Mq +Mq +Mq +Mq +Mq +Mq +EL +Wd +Wd +Wd +zE +zE +Mq +Mq +EL +Wd +nT +"} +(25,1,1) = {" +nT +nT +nT +nT +nT +Wd +Wd +nT +BZ +BZ +BZ +BZ +BZ +nT +nT +nT +nT +nT +nT +BZ +BZ +BZ +nT +nT +nT +"} diff --git a/maps/submaps/cave_pois/onestar2.dmm b/maps/submaps/cave_pois/onestar2.dmm new file mode 100644 index 00000000000..26bb1a1390b --- /dev/null +++ b/maps/submaps/cave_pois/onestar2.dmm @@ -0,0 +1,1479 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ag" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ah" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"an" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark, +/obj/structure/barricade, +/obj/effect/decal/cleanable/blood/drip, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"ao" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/remains/human, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"as" = ( +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"au" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"ax" = ( +/obj/structure/sign/faction/one_star, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"ay" = ( +/obj/structure/railing/grey, +/obj/machinery/light/floor, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"aA" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"aJ" = ( +/obj/structure/noticeboard, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"aK" = ( +/obj/machinery/door/airlock/sandstone{ + name = "OneStar Airlock" + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"aN" = ( +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aQ" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aR" = ( +/obj/effect/floor_decal/industrial/loading, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"aT" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"aU" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 8 + }, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + dir = 8; + pixel_x = -28 + }, +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"bd" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"bl" = ( +/obj/structure/sign/faction/one_star_old, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"bm" = ( +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bq" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"bs" = ( +/obj/structure/closet/onestar/tier2, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bt" = ( +/obj/structure/table/onestar, +/obj/item/paper_bin, +/obj/item/pen, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bu" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"bv" = ( +/obj/machinery/light/floor, +/obj/item/remains/human, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"by" = ( +/obj/structure/sign/derelict3{ + pixel_y = 32 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"bE" = ( +/turf/floor/dirt/airless, +/area/asteroid/cave) +"bG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/onestar, +/obj/item/stamp/denied, +/obj/item/pen, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"bN" = ( +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"co" = ( +/obj/structure/window/reinforced{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/onestar, +/obj/item/remains/human, +/obj/item/pen, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"cK" = ( +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"dO" = ( +/obj/structure/table/onestar, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/folder/red, +/turf/floor/tiled/dark/techfloor/airless, +/area/asteroid/cave) +"dS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"eD" = ( +/obj/structure/closet/onestar/tier2/medical, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"fa" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"fy" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"fz" = ( +/obj/landmark/corpse/skeleton, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"gf" = ( +/obj/machinery/power/os_turret, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"gK" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"ib" = ( +/obj/structure/table/onestar, +/turf/floor/tiled/dark/techfloor/airless, +/area/asteroid/cave) +"jl" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/paper/crumpled, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"ju" = ( +/obj/structure/sign/derelict1{ + pixel_x = 32 + }, +/obj/machinery/constructable_frame/machine_frame/vertical, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"jG" = ( +/obj/spawner/scrap/dense, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"kb" = ( +/obj/structure/window/reinforced{ + dir = 6 + }, +/obj/structure/table/onestar, +/obj/item/clothing/accessory/medal/conduct, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"ku" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"kx" = ( +/obj/spawner/junk, +/obj/structure/table/onestar, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"kF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/item/pen, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"lj" = ( +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"mJ" = ( +/obj/spawner/junk, +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"nC" = ( +/obj/item/pen, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"nF" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"nI" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"nR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/onestar, +/obj/item/modular_computer/laptop, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"oc" = ( +/obj/effect/floor_decal/industrial/danger, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"pa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/onestar, +/obj/item/stamp/chameleon, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"pb" = ( +/obj/structure/cyberplant{ + desc = "One of those famous OneStar holoplants! Add to your Space a bit of the comfort from old Earth, by buying this blue buddy. A nuclear battery and a rugged case guarantee that your flower will survive journey to another galaxy, and variety of plant types won't let you to get bored along the way!"; + name = "OneStar \"Iridescent\"" + }, +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"pj" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"pS" = ( +/obj/item/remains/human, +/obj/item/clothing/accessory/blue, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"qp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/machinery/light{ + dir = 1 + }, +/obj/landmark/corpse/one_star, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"qq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"qw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 6 + }, +/obj/structure/table/onestar, +/obj/item/device/lighting/toggleable/lamp, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"rb" = ( +/obj/structure/table/onestar, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"sB" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"sD" = ( +/obj/structure/window/reinforced{ + dir = 6 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/landmark/corpse/one_star, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"tl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/paper/crumpled, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"up" = ( +/obj/machinery/light_construct, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"uQ" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"vG" = ( +/obj/spawner/junkfood/rotten, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"vL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/salvageable/os/console_broken{ + dir = 4 + }, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"wg" = ( +/obj/machinery/light, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"wF" = ( +/obj/spawner/junk, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"wI" = ( +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"xc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/accessory/red, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"xf" = ( +/obj/structure/table/onestar, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/folder/red, +/turf/floor/tiled/dark/techfloor/airless, +/area/asteroid/cave) +"yJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"zc" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"zj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/onestar, +/obj/item/device/taperecorder, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"zC" = ( +/obj/structure/medical_stand, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"Ae" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"Ax" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"AS" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"Bj" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"BH" = ( +/obj/structure/largecrate, +/obj/item/paper, +/obj/item/paper, +/obj/item/paper, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"BI" = ( +/obj/effect/floor_decal/industrial/warning, +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Cs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light, +/obj/landmark/corpse/one_star, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"Dc" = ( +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Ej" = ( +/obj/structure/table/onestar, +/obj/item/phone, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"ES" = ( +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"Fb" = ( +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"Fz" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"FA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/remains/human, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"Gb" = ( +/obj/machinery/vending/coffee, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"Gt" = ( +/obj/machinery/light, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"GP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/onestar, +/obj/item/stamp/denied, +/obj/structure/barricade, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"GZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/onestar, +/obj/item/stamp/denied, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Hc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/salvageable/os/console_broken{ + dir = 8 + }, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"HY" = ( +/obj/structure/salvageable/os/computer, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"It" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/onestar, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/gun/projectile/handmade_pistol, +/obj/spawner/ammo, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"JA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/onestar, +/obj/item/device/lighting/toggleable/lamp, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"JB" = ( +/turf/mineral, +/area/asteroid/cave) +"Km" = ( +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"Kw" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"KW" = ( +/obj/item/paper/crumpled, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"KX" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"La" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/onestar, +/obj/item/paper_bin, +/obj/item/pen, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Lz" = ( +/obj/structure/railing/grey, +/turf/floor/dirt/airless, +/area/asteroid/cave) +"LE" = ( +/obj/structure/closet/emcloset, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"LY" = ( +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"ME" = ( +/obj/structure/sign/department/medbay{ + pixel_x = 32 + }, +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"NH" = ( +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"NQ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"Oz" = ( +/obj/structure/sign/faction/one_star, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"OV" = ( +/obj/structure/sign/faction/one_star_old, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"Pb" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"Pc" = ( +/obj/structure/table/onestar, +/obj/machinery/light/floor, +/obj/item/storage/lunchbox/rainbow, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Qe" = ( +/obj/structure/sign/derelict2{ + pixel_y = 32 + }, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"Qn" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 4 + }, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"QE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 6 + }, +/obj/structure/table/onestar, +/obj/item/paper_bin, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"Rf" = ( +/obj/structure/salvageable/os/machine{ + dir = 8 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Rg" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/spawner/oddities/low_chance, +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"Rn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"Ss" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/mob/living/simple_animal/hostile/roomba/boomba, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/cafe/airless, +/area/asteroid/cave) +"SV" = ( +/obj/structure/table/onestar, +/obj/item/device/lighting/toggleable/lamp, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"UT" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Vu" = ( +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"VG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/item/lipstick/black, +/turf/floor/tiled/dark/brown_platform/airless, +/area/asteroid/cave) +"VK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 6 + }, +/obj/structure/table/onestar, +/obj/item/paper_bin, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"VQ" = ( +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Xm" = ( +/obj/structure/table/onestar, +/obj/item/pen/reagent/sleepy, +/turf/floor/tiled/dark/brown_perforated/airless, +/area/asteroid/cave) +"XL" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"Yv" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/obj/landmark/corpse/skeleton, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"Yy" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/spawner/medical, +/obj/machinery/light_construct, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"Ze" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"Zy" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) + +(1,1,1) = {" +JB +JB +JB +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +UT +UT +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +UT +UT +Zy +Zy +"} +(2,1,1) = {" +JB +JB +Zy +ag +UT +Kw +UT +Zy +Zy +Zy +UT +ag +ah +UT +Zy +Zy +Zy +Zy +Zy +Zy +Zy +ag +Kw +ah +UT +"} +(3,1,1) = {" +JB +Zy +UT +ES +ES +ES +ES +ES +ES +ES +ES +ES +ah +ah +Zy +Zy +Zy +Zy +Zy +Zy +ah +ES +ag +ag +UT +"} +(4,1,1) = {" +JB +Zy +ah +aJ +bv +VG +nF +LY +sD +vL +Pc +ES +Vu +ah +UT +ag +Zy +Zy +UT +ah +VQ +ES +aQ +ah +Zy +"} +(5,1,1) = {" +Zy +UT +UT +ES +pa +VK +as +nR +qw +FA +Xm +ES +Vu +Vu +ah +ES +ES +ES +ES +ES +ag +ag +ah +UT +Zy +"} +(6,1,1) = {" +Zy +ah +aQ +bl +as +KW +Dc +BH +Fz +nC +Ej +ES +Vu +KX +up +ES +pb +bb +bd +ah +ah +UT +Zy +Zy +Zy +"} +(7,1,1) = {" +Zy +ah +wI +aK +as +as +as +as +jl +Ae +Rn +ES +Qe +pj +Vu +aK +Bj +mJ +Km +ah +UT +UT +Zy +Zy +Zy +"} +(8,1,1) = {" +Zy +ah +Vu +ES +by +as +KW +as +as +La +Hc +ES +Vu +Vu +fa +ES +Km +uQ +Km +ah +ah +ag +Zy +Zy +Zy +"} +(9,1,1) = {" +UT +ah +Kw +ES +bG +QE +as +KW +as +GP +It +ES +pj +Vu +Vu +ES +aK +bN +aK +bN +aK +ES +Zy +Zy +Zy +"} +(10,1,1) = {" +Zy +UT +ah +ES +qp +kF +tl +as +BI +an +Cs +ES +aA +Vu +Vu +ES +Ss +bN +fy +bN +Rg +ES +UT +Zy +Zy +"} +(11,1,1) = {" +Zy +Zy +UT +ES +yJ +xc +qq +as +Fz +ao +yJ +ES +Vu +Vu +pj +ES +ES +ES +ES +ES +ES +ES +ah +Zy +Zy +"} +(12,1,1) = {" +Zy +Zy +Zy +ES +zj +co +as +as +KW +JA +GZ +ES +KX +Vu +Vu +NQ +Gb +bN +bs +bm +bs +ES +UT +Zy +Zy +"} +(13,1,1) = {" +Zy +Zy +Zy +ES +HY +pS +dS +as +as +as +as +ES +Vu +AS +Vu +vG +oc +aK +bm +cK +bt +ES +Zy +Zy +Zy +"} +(14,1,1) = {" +Zy +Zy +UT +ES +SV +kb +sB +gK +as +ju +Rf +ES +AS +pj +fz +XL +kx +bN +Pb +Qn +rb +ES +Zy +Zy +Zy +"} +(15,1,1) = {" +Zy +ag +ag +ES +ES +ES +ES +ES +aK +ES +ES +Oz +Vu +Vu +Vu +bN +bN +bN +xf +ib +bN +ES +UT +Zy +Zy +"} +(16,1,1) = {" +Zy +UT +ah +bq +KX +Vu +Ze +Vu +Vu +fa +Vu +fz +Vu +fz +pj +aN +aR +ku +ku +aT +aR +ah +ah +UT +Zy +"} +(17,1,1) = {" +Zy +ah +ah +Vu +Vu +Vu +Vu +Vu +pj +Vu +pj +Vu +AS +gf +AS +bN +bN +bN +bN +bN +OV +ah +ah +Zy +Zy +"} +(18,1,1) = {" +Zy +Zy +ah +ah +Vu +ME +pj +Vu +Vu +pj +AS +KX +fz +pj +Vu +Yv +aT +ku +ku +nI +aN +ah +ah +Zy +Zy +"} +(19,1,1) = {" +Zy +Zy +UT +ag +aK +bN +bN +Ax +Ax +Ax +au +ax +Vu +AS +bN +bN +ib +dO +bN +bN +bN +ES +ah +UT +Zy +"} +(20,1,1) = {" +Zy +Zy +ah +bm +cK +zC +bN +bE +bE +bE +bE +ay +fz +Gt +bN +bs +aU +wg +bN +zc +bu +ES +UT +UT +Zy +"} +(21,1,1) = {" +JB +Zy +UT +ah +bm +Yy +bN +bE +bE +bE +bE +Lz +fa +oc +aK +bm +cK +bm +bN +lj +NH +ag +Zy +Zy +JB +"} +(22,1,1) = {" +JB +Zy +Zy +ah +ah +eD +bN +jG +wF +bE +bE +Lz +Vu +LE +bN +rb +bt +bs +bN +Fb +ah +UT +Zy +JB +JB +"} +(23,1,1) = {" +JB +JB +Zy +Zy +UT +ES +ES +ES +ES +ES +ES +ES +ES +ES +ES +ES +ES +ES +ES +ah +ah +UT +Zy +JB +JB +"} +(24,1,1) = {" +JB +JB +Zy +Zy +Zy +Zy +ag +ah +Zy +Zy +Zy +Zy +UT +ah +ES +aQ +UT +Zy +UT +Zy +Zy +Zy +JB +JB +JB +"} +(25,1,1) = {" +JB +JB +JB +Zy +Zy +Zy +UT +UT +Zy +Zy +Zy +Zy +Zy +UT +ag +ah +Zy +Zy +Zy +Zy +JB +JB +JB +JB +JB +"} diff --git a/maps/submaps/cave_pois/onestar3.dmm b/maps/submaps/cave_pois/onestar3.dmm new file mode 100644 index 00000000000..07cc3d6f6fd --- /dev/null +++ b/maps/submaps/cave_pois/onestar3.dmm @@ -0,0 +1,1113 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ab" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ac" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ad" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ae" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"af" = ( +/obj/spawner/junk, +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"ag" = ( +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"ah" = ( +/mob/living/simple_animal/hostile/carp, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"ai" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"aj" = ( +/obj/structure/sign/derelict3, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"ak" = ( +/obj/machinery/door/airlock/sandstone{ + name = "OneStar Airlock" + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"al" = ( +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"an" = ( +/obj/structure/closet/onestar, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"ao" = ( +/obj/structure/bed/chair/custom/onestar, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"ap" = ( +/obj/spawner/junk, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aq" = ( +/obj/structure/sign/derelict1, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"as" = ( +/obj/structure/sign/derelict2, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"au" = ( +/turf/wall/low/with_glass/reinforced, +/area/asteroid/cave) +"av" = ( +/obj/structure/closet/onestar/tier2/mineral, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"aw" = ( +/obj/landmark/corpse/one_star, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"ax" = ( +/obj/structure/salvageable/os/computer, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"ay" = ( +/obj/structure/salvageable/os/console_broken, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"az" = ( +/obj/structure/salvageable/os/console, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"aA" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"aB" = ( +/obj/structure/bed/chair/custom/onestar/red{ + dir = 1 + }, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"aC" = ( +/obj/structure/closet/onestar/tier1/mineral/empty, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"aD" = ( +/obj/effect/floor_decal/industrial/loading, +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"aE" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"aF" = ( +/obj/structure/salvageable/os/machine, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"aG" = ( +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"aH" = ( +/obj/structure/salvageable/os/data, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"aI" = ( +/obj/structure/catwalk, +/obj/structure/ore_box, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aJ" = ( +/obj/structure/catwalk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aK" = ( +/obj/structure/closet/onestar/tier1/mineral, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"aL" = ( +/turf/mineral, +/area/asteroid/cave) +"aM" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/inflatable/wall, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aP" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/inflatable/wall, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aQ" = ( +/obj/structure/inflatable/wall, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aR" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"aS" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/inflatable/wall, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aT" = ( +/obj/structure/catwalk, +/obj/structure/inflatable/door, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aU" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/inflatable/wall, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aV" = ( +/turf/mineral/random, +/area/asteroid/cave) +"aW" = ( +/obj/structure/inflatable/door, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aX" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + icon_state = "direction_med" + }, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"aY" = ( +/obj/structure/sign/directions/evac{ + dir = 8; + icon_state = "direction_evac" + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + icon_state = "direction_eng"; + pixel_y = 10 + }, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"aZ" = ( +/obj/spawner/junk, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"ba" = ( +/obj/spawner/structures/os, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bb" = ( +/obj/item/gun/projectile/handmade_pistol, +/obj/item/ammo_casing/pistol/scrap, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"bc" = ( +/obj/spawner/junk, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"bd" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"be" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"bf" = ( +/obj/item/remains, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bg" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bh" = ( +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bi" = ( +/obj/item/storage/bag/ore, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bj" = ( +/obj/structure/catwalk, +/obj/item/storage/bag/ore, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bk" = ( +/obj/structure/inflatable/door, +/obj/structure/catwalk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bl" = ( +/obj/structure/lattice, +/obj/item/tool/pickaxe/onestar, +/obj/landmark/corpse/one_star/void, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bI" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"bJ" = ( +/obj/structure/table/onestar, +/obj/machinery/door/blast/shutters, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bQ" = ( +/obj/effect/floor_decal/industrial/loading, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"bT" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 8 + }, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"bY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/floor/tiled/techmaint_cargo/airless, +/area/asteroid/cave) +"cg" = ( +/obj/machinery/power/os_turret/laser, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"ch" = ( +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"cI" = ( +/obj/spawner/scrap/dense, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cN" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"dd" = ( +/obj/structure/closet/onestar/tier1, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"fR" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"in" = ( +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"jf" = ( +/mob/living/carbon/superior_animal/stalker, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"nf" = ( +/obj/spawner/junk, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"pB" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"qP" = ( +/obj/structure/catwalk, +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"rh" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"sD" = ( +/obj/machinery/power/os_turret, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"uZ" = ( +/obj/spawner/junk, +/obj/structure/sign/faction/one_star{ + pixel_x = 32 + }, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"xe" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"xf" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"xF" = ( +/obj/machinery/power/os_turret/laser, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"Cm" = ( +/obj/spawner/structures/os, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"FJ" = ( +/obj/structure/salvageable/os/server, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"In" = ( +/obj/structure/sign/faction/one_star{ + pixel_y = 32 + }, +/obj/structure/closet/onestar/tier1, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"QQ" = ( +/obj/spawner/structures/os, +/obj/structure/sign/faction/one_star_old{ + pixel_y = 32 + }, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"Rx" = ( +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"Tw" = ( +/obj/machinery/door/blast/shutters, +/turf/wall/low/with_glass/reinforced, +/area/asteroid/cave) +"Vr" = ( +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"ZH" = ( +/obj/machinery/door/blast/regular, +/turf/wall/low/with_glass/reinforced, +/area/asteroid/cave) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ac +ab +ac +ab +aa +aa +aa +aL +aL +aL +aL +aL +aL +aL +aL +"} +(2,1,1) = {" +aa +aa +aa +ab +ab +aa +ab +ab +ab +ab +ac +ad +ac +ab +aa +aa +aL +aL +aL +aL +aL +aL +aL +aL +aL +"} +(3,1,1) = {" +aa +aa +ab +ab +ac +ab +ac +pB +ac +ag +ac +ag +ab +ab +aa +aa +ac +ag +ag +ag +ag +ag +ag +ag +aL +"} +(4,1,1) = {" +aa +ab +ab +ac +ac +ac +ac +ac +ai +ag +ae +ag +ab +aa +aa +ac +ac +ag +aF +aF +aR +FJ +aR +ag +aL +"} +(5,1,1) = {" +ab +ab +ad +ac +pB +ag +ag +ag +ag +ag +be +ag +ag +ag +ag +ag +ag +ag +nf +bh +bh +bh +fR +ag +aL +"} +(6,1,1) = {" +aa +ad +ac +ac +xf +ag +aw +bb +an +aY +ch +cg +ch +bg +bh +bh +xe +bh +bh +bh +aR +bh +FJ +ag +aL +"} +(7,1,1) = {" +aa +ab +ac +ac +ch +ag +an +af +dd +aG +ch +ch +ch +aG +In +bh +bh +sD +bh +bh +aH +bh +aR +ag +aL +"} +(8,1,1) = {" +ab +ad +pB +ch +ai +ag +dd +bc +an +aG +ba +ch +ba +aG +ax +aB +bh +bh +bh +bh +aR +bh +FJ +ag +aL +"} +(9,1,1) = {" +ab +ag +ag +ag +ag +ag +aG +bd +aG +aq +aR +ch +ba +aG +ay +aB +bh +uZ +ba +al +aH +bh +FJ +ag +aL +"} +(10,1,1) = {" +ab +ab +ag +ap +rh +ag +aZ +ch +ch +aG +ba +ch +aR +aG +aR +aB +bh +ag +aH +bh +bh +bh +fR +ag +aL +"} +(11,1,1) = {" +ab +ac +ag +rh +in +aj +ch +ch +ch +aG +ch +Vr +ch +aG +az +aB +bh +ag +ag +ag +ag +ag +ag +ag +aL +"} +(12,1,1) = {" +ab +ac +ag +ah +in +aX +ch +ch +ch +aG +ch +ch +ch +aG +QQ +Rx +bh +ag +aI +aI +aM +aQ +aL +aL +aL +"} +(13,1,1) = {" +ab +ac +ak +in +in +ak +ch +jf +ch +ak +ch +ch +aZ +aG +ag +ZH +ZH +ag +aI +aJ +aN +aS +aL +aV +aL +"} +(14,1,1) = {" +ab +ac +ag +in +ah +ag +ch +ch +ch +aG +aR +ch +aZ +aZ +aA +bQ +bY +aD +aJ +aJ +aJ +aT +aJ +aW +aa +"} +(15,1,1) = {" +ab +ac +ag +ap +in +ag +ao +ch +ch +aG +aR +ch +ch +aZ +ag +ag +ag +ag +aJ +qP +aJ +aT +aJ +aW +aa +"} +(16,1,1) = {" +ab +cI +ag +ap +rh +ag +ao +ch +ch +aG +ba +ch +ch +ch +aA +bI +bY +aE +aJ +aJ +aO +aU +aL +aQ +aL +"} +(17,1,1) = {" +ab +ad +ag +ag +ag +ag +ao +ch +ch +aG +as +Tw +bJ +bJ +ag +ZH +ZH +ag +aJ +bj +aP +aV +aL +aV +aL +"} +(18,1,1) = {" +ab +ab +ac +ch +cN +ag +ch +ch +ch +ch +aG +bf +bT +bT +bi +bh +bi +ag +ab +aJ +aQ +aL +aL +aL +aL +"} +(19,1,1) = {" +ab +ab +ac +ac +ai +au +aZ +ch +ch +ch +aG +bh +xe +bh +bh +bh +aK +ag +aL +bk +aL +aV +aL +aL +aL +"} +(20,1,1) = {" +aa +ab +aa +ac +ac +au +aZ +aZ +aZ +ch +ak +bh +bh +xF +al +bh +av +ag +aL +ab +bl +aL +aL +aL +aL +"} +(21,1,1) = {" +aa +ab +aa +aa +ac +au +aZ +aZ +aZ +ch +aG +bh +bh +bh +bh +bh +aC +ag +ab +aL +aL +aL +aL +aL +aL +"} +(22,1,1) = {" +aa +ab +aa +aa +ac +au +Cm +Cm +aZ +aZ +aG +av +av +aR +aR +ba +aK +ag +ab +ab +aL +aL +aL +aL +aL +"} +(23,1,1) = {" +aa +ac +ab +ab +ab +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aL +aL +aL +aL +aL +aL +aL +"} +(24,1,1) = {" +aa +ab +aa +aa +aL +aL +aa +aL +aL +aL +aL +aa +ac +ac +ac +ac +aa +aL +aL +aL +aL +aL +aL +aL +aL +"} +(25,1,1) = {" +aa +aa +aa +aL +aL +aL +aa +aa +aL +aL +aL +aa +aa +ac +aa +aa +aL +aL +aL +aL +aL +aL +aL +aL +aL +"} diff --git a/maps/submaps/cave_pois/onestar4.dmm b/maps/submaps/cave_pois/onestar4.dmm new file mode 100644 index 00000000000..d30c2c6d2ab --- /dev/null +++ b/maps/submaps/cave_pois/onestar4.dmm @@ -0,0 +1,1169 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/mineral, +/area/asteroid/cave) +"ab" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ac" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ad" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ae" = ( +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"af" = ( +/mob/living/simple_animal/hostile/onestar_custodian, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"ag" = ( +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"ah" = ( +/obj/spawner/junk, +/obj/structure/sign/derelict2{ + pixel_y = 32 + }, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"ai" = ( +/obj/spawner/scrap/dense, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aj" = ( +/obj/machinery/door/airlock/sandstone{ + name = "OneStar Airlock" + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"ak" = ( +/obj/structure/closet/onestar/tier3/medical, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"al" = ( +/obj/machinery/bodyscanner, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"am" = ( +/obj/machinery/body_scanconsole, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"an" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 1 + }, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"ao" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 4 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"ap" = ( +/obj/structure/salvageable/os/data, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"aq" = ( +/obj/structure/bed/chair/custom/onestar/red, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"ar" = ( +/obj/structure/salvageable/os/implant_container, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"as" = ( +/obj/structure/table/onestar, +/obj/structure/window/basic, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"at" = ( +/obj/structure/table/onestar, +/obj/machinery/door/window/southright, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"au" = ( +/obj/structure/railing, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"av" = ( +/mob/living/carbon/superior_animal/stalker, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"aw" = ( +/obj/structure/catwalk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ax" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/external, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ay" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"az" = ( +/obj/machinery/light/floor, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"aA" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aB" = ( +/obj/structure/sign/derelict2, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"aC" = ( +/obj/machinery/vending/cola, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"aD" = ( +/obj/machinery/vending/coffee, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"aE" = ( +/obj/machinery/optable, +/obj/landmark/corpse/one_star, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aF" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"aG" = ( +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"aH" = ( +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aI" = ( +/obj/structure/window/basic, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aJ" = ( +/obj/structure/window/basic, +/obj/structure/bed/chair/custom/onestar/red, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aK" = ( +/obj/structure/closet/onestar/tier1/medical, +/obj/item/reagent_containers/blood/empty, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aL" = ( +/obj/structure/closet/onestar/tier1/medical, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aM" = ( +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 2 + }, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aN" = ( +/obj/structure/medical_stand, +/obj/effect/decal/cleanable/blood, +/obj/structure/salvageable/os/implant_container, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aO" = ( +/obj/structure/table/onestar, +/obj/spawner/surgery_tool, +/obj/spawner/surgery_tool, +/obj/spawner/surgery_tool, +/obj/spawner/surgery_tool/low_chance, +/obj/item/reagent_containers/blood/OMinus, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aP" = ( +/obj/spawner/junk, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"aQ" = ( +/obj/spawner/soda, +/obj/spawner/soda, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"aR" = ( +/obj/machinery/vending/cigarette, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"aS" = ( +/obj/structure/sign/examroom, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"aT" = ( +/obj/structure/sign/directions/evac{ + dir = 8; + icon_state = "direction_evac" + }, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"aU" = ( +/obj/spawner/scrap/sparse, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"aW" = ( +/obj/structure/noticeboard, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"aX" = ( +/obj/spawner/junk, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"aY" = ( +/obj/spawner/medical/low_chance, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"aZ" = ( +/obj/spawner/junk, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"ba" = ( +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"bb" = ( +/obj/item/reagent_containers/blood/OMinus, +/obj/spawner/medical/low_chance, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"bc" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bd" = ( +/obj/spawner/medical/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"be" = ( +/obj/item/reagent_containers/blood/OMinus, +/obj/spawner/medical/low_chance, +/obj/spawner/junk, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"bf" = ( +/obj/structure/table/onestar, +/obj/spawner/surgery_tool, +/obj/spawner/surgery_tool, +/obj/spawner/surgery_tool, +/obj/spawner/surgery_tool, +/obj/spawner/surgery_tool/low_chance, +/obj/item/reagent_containers/blood/OMinus, +/obj/spawner/medical, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"bg" = ( +/obj/structure/table/onestar, +/obj/item/tool/screwdriver/combi_driver/onestar, +/obj/item/tool/crowbar/onestar, +/obj/spawner/prothesis_one_star, +/obj/spawner/prothesis_one_star, +/obj/spawner/medical, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"bh" = ( +/obj/spawner/junk, +/obj/spawner/junk, +/obj/spawner/junk, +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bi" = ( +/obj/item/bodybag, +/obj/item/reagent_containers/glass/bottle/antitoxin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe/spaceacillin, +/obj/item/reagent_containers/syringe/spaceacillin, +/obj/structure/table/onestar, +/obj/spawner/medical, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"bj" = ( +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/syringe/spaceacillin, +/obj/structure/table/onestar, +/obj/spawner/medical, +/obj/spawner/medical, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"bk" = ( +/obj/spawner/junkfood, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"bl" = ( +/obj/spawner/medical/low_chance, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"bm" = ( +/obj/spawner/junkfood, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bn" = ( +/obj/structure/lattice, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bo" = ( +/obj/spawner/junk, +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bp" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bq" = ( +/obj/spawner/soda, +/obj/structure/bed/chair/custom/onestar, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"br" = ( +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"bs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bK" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cH" = ( +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"dz" = ( +/mob/living/simple_animal/hostile/onestar_custodian/engineer, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"fO" = ( +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"fU" = ( +/obj/structure/medical_stand, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"gj" = ( +/obj/machinery/optable, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"iR" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 4 + }, +/obj/spawner/medical/low_chance, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"jY" = ( +/obj/spawner/soda, +/obj/spawner/soda, +/obj/landmark/corpse/skeleton, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"kC" = ( +/obj/structure/table/onestar, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"mY" = ( +/obj/landmark/corpse/skeleton, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"ou" = ( +/obj/structure/table/onestar, +/obj/spawner/medical/low_chance, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"ph" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 1 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"qh" = ( +/obj/structure/bed/chair/custom/onestar{ + dir = 8 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"rh" = ( +/obj/spawner/junk, +/obj/structure/sign/derelict3{ + pixel_y = 32 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"sM" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"uc" = ( +/obj/machinery/power/os_turret/laser, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"wo" = ( +/obj/structure/table/onestar, +/obj/spawner/medical, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"wz" = ( +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"xQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"Cu" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/derelict/white_small_edges/airless, +/area/asteroid/cave) +"CH" = ( +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"EA" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Ff" = ( +/obj/structure/closet/onestar/tier2/medical, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"IF" = ( +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Lk" = ( +/obj/structure/sign/derelict1{ + pixel_y = 32 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Mo" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"Vj" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"YB" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair/custom/onestar{ + dir = 1 + }, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +Vj +Vj +Vj +Vj +Vj +Vj +Vj +aa +aa +aa +aa +aa +Vj +ab +ab +Vj +Vj +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +Vj +Vj +ab +ab +Vj +ab +ab +Vj +Vj +aa +aa +aa +Vj +Vj +ab +Vj +Vj +Vj +"} +(3,1,1) = {" +aa +aa +aa +Vj +aa +Vj +Vj +Vj +Vj +Vj +ab +ab +ab +ab +ab +Vj +Vj +ad +ab +ab +ab +ac +ac +ac +ab +"} +(4,1,1) = {" +aa +ab +ac +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ad +ad +bn +ab +ad +au +aw +ay +ad +bK +ac +ab +"} +(5,1,1) = {" +ab +ab +bK +ag +aP +aC +aD +ag +Ff +aA +aM +aO +ag +bK +ac +ac +ac +ad +bp +aw +bs +ad +ac +ab +Vj +"} +(6,1,1) = {" +Vj +Vj +ac +ag +sM +jY +aQ +ag +wz +aI +wz +bf +ag +ac +ac +ac +ac +ad +au +aw +ay +ad +ab +Vj +Vj +"} +(7,1,1) = {" +Vj +Vj +ac +aj +ae +aX +ae +aj +wz +aJ +wz +wz +ag +ac +ac +ac +ac +ag +au +aw +ay +ag +ac +ab +ab +"} +(8,1,1) = {" +Vj +ab +ac +ag +ae +br +ae +ag +aA +aJ +fU +gj +ag +bh +bh +bo +ai +ag +ag +ax +ag +ag +ad +ad +Vj +"} +(9,1,1) = {" +Vj +ab +ac +ag +ou +av +ae +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aT +br +br +br +ae +bl +ad +Vj +"} +(10,1,1) = {" +Vj +ab +ac +ag +wo +br +ae +ag +wz +af +aM +bg +ag +bi +aP +ap +ap +aG +Lk +br +br +aP +ae +ad +ab +"} +(11,1,1) = {" +Vj +ab +ac +aj +br +br +br +Mo +wz +aI +wz +xQ +ag +bj +fO +ae +aP +aG +rh +sM +br +ae +az +ad +ab +"} +(12,1,1) = {" +ab +Vj +ac +ag +aP +br +aP +ag +dz +aJ +aN +aE +ag +ak +ae +ae +aq +as +sM +mY +EA +ae +Cu +ad +Vj +"} +(13,1,1) = {" +ab +ab +ac +ag +kC +br +ae +ag +ag +ag +ag +ag +ag +ae +ae +uc +aq +as +br +sM +mY +aP +ae +ad +ab +"} +(14,1,1) = {" +Vj +ab +ac +ag +aP +aY +aP +ag +aZ +aK +aL +aL +ag +al +ae +fO +ae +at +mY +br +br +ae +ac +ad +ab +"} +(15,1,1) = {" +Vj +Vj +ac +aj +br +br +br +aj +wz +aH +wz +dz +ag +am +ae +aP +ar +aG +aF +ae +YB +ae +bd +ab +Vj +"} +(16,1,1) = {" +Vj +ab +ac +ag +ae +br +ae +ag +ba +aL +aL +aL +ag +an +ae +ae +ar +aW +bq +ae +ph +ae +ad +ab +Vj +"} +(17,1,1) = {" +Vj +ac +ac +ag +ah +br +aP +ag +ag +ag +ag +ag +ag +aG +aS +aj +aG +aG +aC +bk +ph +bl +ac +ab +Vj +"} +(18,1,1) = {" +ab +ab +ac +ac +br +aY +br +br +br +br +br +br +br +br +EA +br +ao +ao +ao +ae +ae +ae +ad +ab +Vj +"} +(19,1,1) = {" +ab +ac +ac +ac +br +br +br +br +br +br +br +br +br +aY +br +ae +ae +aP +ae +ae +bl +ae +ad +Vj +Vj +"} +(20,1,1) = {" +ab +ac +ad +ag +ac +br +br +ag +ag +ag +ag +ag +aB +bk +bl +ae +qh +qh +qh +ae +ph +ae +ad +ab +ab +"} +(21,1,1) = {" +ab +ac +ac +ag +ac +ac +IF +ag +bb +be +wz +aU +ag +bk +bk +ae +ao +iR +ao +ae +ph +ae +ad +Vj +ab +"} +(22,1,1) = {" +ab +ab +ac +ag +br +CH +ac +ag +bc +bc +ac +ac +ag +aR +bk +ae +ae +ae +ae +bl +ae +cH +ad +Vj +Vj +"} +(23,1,1) = {" +ab +ab +bK +ag +ai +ab +ac +ag +ac +ab +ab +bc +ag +ag +bK +ad +ag +ad +ag +ag +ag +ag +ag +ab +ab +"} +(24,1,1) = {" +ab +ab +ad +ag +ad +ab +ab +ac +bd +ab +ac +ac +ab +ad +bm +Vj +ab +ab +ab +aa +aa +Vj +ab +Vj +Vj +"} +(25,1,1) = {" +Vj +ab +ac +ab +ab +Vj +ab +ab +Vj +Vj +Vj +Vj +Vj +Vj +Vj +Vj +Vj +Vj +aa +aa +aa +aa +ab +Vj +aa +"} diff --git a/maps/submaps/cave_pois/onestar_tiny1.dmm b/maps/submaps/cave_pois/onestar_tiny1.dmm new file mode 100644 index 00000000000..bfc6f5a0631 --- /dev/null +++ b/maps/submaps/cave_pois/onestar_tiny1.dmm @@ -0,0 +1,88 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"c" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"d" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"g" = ( +/obj/structure/sign/faction/one_star_old, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"j" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"w" = ( +/obj/spawner/mob/roomba, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"z" = ( +/obj/spawner/junk, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"E" = ( +/obj/structure/lattice, +/obj/structure/girder, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"I" = ( +/obj/spawner/structures/os, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"L" = ( +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"S" = ( +/obj/structure/lattice, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"Y" = ( +/obj/spawner/mob/roomba, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Z" = ( +/obj/structure/lattice, +/obj/spawner/junk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) + +(1,1,1) = {" +a +E +j +d +a +"} +(2,1,1) = {" +d +L +z +w +j +"} +(3,1,1) = {" +Z +g +I +L +L +"} +(4,1,1) = {" +L +c +j +L +Z +"} +(5,1,1) = {" +L +S +Y +E +a +"} diff --git a/maps/submaps/cave_pois/onestar_tiny2.dmm b/maps/submaps/cave_pois/onestar_tiny2.dmm new file mode 100644 index 00000000000..ba16a2265ac --- /dev/null +++ b/maps/submaps/cave_pois/onestar_tiny2.dmm @@ -0,0 +1,84 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"b" = ( +/turf/mineral, +/area/asteroid/cave) +"c" = ( +/obj/effect/decal/cleanable/rubble, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"e" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + layer = 2.6; + name = "Breach Pod Door"; + opacity = 0; + dir = 4 + }, +/obj/spawner/mob/roomba, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"h" = ( +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"k" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"o" = ( +/obj/spawner/mob/roomba, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"B" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"G" = ( +/obj/machinery/power/os_turret, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"Q" = ( +/obj/spawner/structures/os, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) + +(1,1,1) = {" +b +c +b +c +o +"} +(2,1,1) = {" +h +h +k +h +B +"} +(3,1,1) = {" +a +Q +G +e +c +"} +(4,1,1) = {" +h +h +h +k +c +"} +(5,1,1) = {" +c +o +c +B +b +"} diff --git a/maps/submaps/cave_pois/onestar_tiny3.dmm b/maps/submaps/cave_pois/onestar_tiny3.dmm new file mode 100644 index 00000000000..f940987a0ad --- /dev/null +++ b/maps/submaps/cave_pois/onestar_tiny3.dmm @@ -0,0 +1,78 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"g" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"j" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"u" = ( +/obj/spawner/mob/roomba, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"C" = ( +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"F" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"I" = ( +/obj/machinery/power/os_turret, +/turf/floor/tiled/derelict/white_big_edges/airless, +/area/asteroid/cave) +"O" = ( +/obj/structure/door_assembly, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Q" = ( +/obj/item/remains/human, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"T" = ( +/obj/structure/closet/onestar/tier1/normal, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"W" = ( +/obj/structure/closet/onestar/tier1/special, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) + +(1,1,1) = {" +g +C +O +C +C +"} +(2,1,1) = {" +F +j +a +u +C +"} +(3,1,1) = {" +C +T +I +Q +g +"} +(4,1,1) = {" +g +u +a +W +C +"} +(5,1,1) = {" +C +C +g +C +C +"} diff --git a/maps/submaps/cave_pois/onestar_tiny4.dmm b/maps/submaps/cave_pois/onestar_tiny4.dmm new file mode 100644 index 00000000000..b3465118bc3 --- /dev/null +++ b/maps/submaps/cave_pois/onestar_tiny4.dmm @@ -0,0 +1,95 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/decal/cleanable/graffiti/graffiti_onestar, +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"g" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"j" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"l" = ( +/obj/spawner/mob/roomba, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"p" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"u" = ( +/obj/spawner/mob/roomba, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"v" = ( +/obj/spawner/scrap/dense, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"C" = ( +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"F" = ( +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"I" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"O" = ( +/obj/spawner/junk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Q" = ( +/obj/spawner/structures/os, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) +"T" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/derelict/airless, +/area/asteroid/cave) +"V" = ( +/turf/wall/untinted/onestar, +/area/asteroid/cave) +"W" = ( +/obj/structure/table/onestar, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/tiled/derelict/red_white_edges/airless, +/area/asteroid/cave) + +(1,1,1) = {" +u +O +g +O +I +"} +(2,1,1) = {" +F +F +V +u +v +"} +(3,1,1) = {" +p +T +C +C +C +"} +(4,1,1) = {" +l +j +a +W +Q +"} +(5,1,1) = {" +I +O +g +j +I +"} diff --git a/maps/submaps/cave_pois/serbian1.dmm b/maps/submaps/cave_pois/serbian1.dmm new file mode 100644 index 00000000000..3687626894b --- /dev/null +++ b/maps/submaps/cave_pois/serbian1.dmm @@ -0,0 +1,1376 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/item/tool/wrench/big_wrench, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"aw" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/template_noop) +"aH" = ( +/obj/spawner/scrap/dense, +/turf/floor/plating/under/airless, +/area/template_noop) +"aJ" = ( +/turf/cave_mineral, +/area/template_noop) +"aK" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = list(150) + }, +/turf/floor/tiled/white, +/area/template_noop) +"bi" = ( +/turf/floor/asteroid/cave, +/area/template_noop) +"by" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"bB" = ( +/turf/floor/plating/under/airless, +/area/template_noop) +"bG" = ( +/obj/spawner/lowkeyrandom, +/obj/machinery/light{ + dir = 1 + }, +/obj/spawner/pack/rare, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"cW" = ( +/obj/structure/closet, +/obj/item/clothing/under/turtleneck, +/obj/item/clothing/shoes/magboots/merc, +/obj/spawner/pack/cloth, +/obj/spawner/pack/cloth, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"du" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"dI" = ( +/obj/structure/table/standard, +/obj/item/deck/cards, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"dN" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/template_noop) +"dU" = ( +/obj/spawner/junkfood/rotten, +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"eg" = ( +/obj/item/storage/deferred/crate/alcohol, +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/tiled/white, +/area/template_noop) +"eo" = ( +/obj/item/stool, +/obj/effect/decal/cleanable/vomit, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"fb" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 5; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 15 + }, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"fM" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/floor/tiled/white, +/area/template_noop) +"gN" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l" + }, +/turf/floor/asteroid/cave, +/area/template_noop) +"ip" = ( +/obj/spawner/scrap/dense, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"iw" = ( +/obj/machinery/light, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"iY" = ( +/obj/structure/table/standard, +/obj/item/packageWrap, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/floor/tiled/white, +/area/template_noop) +"js" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/spawner/booze/low_chance, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"jP" = ( +/obj/structure/table/rack, +/obj/spawner/tool/advanced/low_chance, +/obj/spawner/tool/advanced/low_chance, +/obj/spawner/tool_upgrade/low_chance, +/obj/spawner/tool_upgrade, +/obj/spawner/tool, +/obj/spawner/tool, +/obj/spawner/tool/advanced/low_chance, +/obj/spawner/tool_upgrade/low_chance, +/obj/spawner/tool_upgrade/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"kc" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"kl" = ( +/obj/machinery/shower{ + pixel_y = 32 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"kx" = ( +/obj/spawner/closet/maintloot/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"kO" = ( +/obj/structure/table/standard, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/floor/tiled/white, +/area/template_noop) +"kW" = ( +/obj/spawner/junk, +/turf/floor/tiled/white/techfloor_grid/airless, +/area/template_noop) +"lA" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/tiled/white, +/area/template_noop) +"lO" = ( +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"mZ" = ( +/obj/structure/closet/emcloset, +/obj/spawner/rig/damaged/low_chance, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/rig_module/rare/low_chance, +/obj/spawner/rig_module/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"nu" = ( +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 1 + }, +/obj/spawner/gun/energy_cheap/low_chance, +/obj/spawner/gun/cheap/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"oL" = ( +/obj/structure/closet, +/obj/item/tool/pickaxe/diamonddrill, +/obj/item/tool/pickaxe/diamonddrill, +/obj/item/storage/backpack/military, +/obj/spawner/pack/rare/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"oX" = ( +/obj/spawner/junkfood/rotten, +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"qa" = ( +/obj/structure/window/basic{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"qe" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"qA" = ( +/obj/structure/closet, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/spawner/pack/cloth, +/obj/spawner/rig/damaged/low_chance, +/obj/spawner/pack/cloth, +/obj/spawner/voidsuit/damaged/low_chance, +/turf/floor/plating/under/airless, +/area/template_noop) +"qL" = ( +/obj/item/modular_computer/console, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"qX" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"rd" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/item/clothing/head/ushanka, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"ru" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/floor/airless, +/area/template_noop) +"rL" = ( +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/standard, +/turf/floor/tiled/white, +/area/template_noop) +"sg" = ( +/obj/structure/closet, +/obj/spawner/ammo, +/obj/spawner/ammo, +/obj/spawner/ammo, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/rare_loot, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"ss" = ( +/obj/structure/table/rack, +/obj/item/storage/deferred/meds, +/obj/spawner/surgery_tool/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost/low_chance, +/obj/spawner/medical_lowcost/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"sN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"tv" = ( +/obj/structure/table/rack, +/obj/spawner/gun/shotgun/low_chance, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"tK" = ( +/obj/item/remains/human, +/obj/item/clothing/shoes/magboots/merc, +/obj/item/clothing/under/turtleneck, +/obj/item/clothing/head/ushanka, +/turf/floor/tiled/white, +/area/template_noop) +"um" = ( +/obj/item/stool, +/turf/floor/dummy/airless{ + icon_state = "cult"; + name = "plating" + }, +/area/template_noop) +"vt" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"vz" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/machinery/light, +/obj/item/material/kitchen/rollingpin, +/turf/floor/tiled/white, +/area/template_noop) +"vP" = ( +/obj/machinery/mech_recharger, +/obj/spawner/exosuit/damaged, +/obj/spawner/exosuit_equipment/low_chance, +/obj/spawner/exosuit_equipment/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"wR" = ( +/obj/structure/table/rack, +/obj/spawner/pouch/low_chance, +/obj/spawner/pouch/low_chance, +/obj/spawner/pouch/low_chance, +/obj/spawner/pouch, +/obj/spawner/pouch/low_chance, +/obj/spawner/cloth/belt/low_chance, +/obj/spawner/cloth/belt/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"wU" = ( +/obj/machinery/door/airlock/maintenance_interior{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/dummy/airless{ + icon_state = "cult"; + name = "plating" + }, +/area/template_noop) +"wX" = ( +/obj/structure/table/standard, +/obj/item/folder/cyan, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"xN" = ( +/obj/spawner/soda/low_chance, +/turf/floor/tiled/white, +/area/template_noop) +"yE" = ( +/obj/machinery/door/airlock/maintenance_interior{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"yJ" = ( +/obj/item/stool, +/obj/spawner/booze/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"zg" = ( +/obj/structure/table/standard, +/obj/spawner/booze/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"zJ" = ( +/obj/item/stool, +/obj/spawner/junkfood/rotten, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"zM" = ( +/obj/item/stool, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"zT" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/floor/asteroid/cave, +/area/template_noop) +"As" = ( +/obj/item/stool, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"Bq" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"Bv" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/item/clothing/under/serbiansuit/brown, +/obj/spawner/oddities/low_chance, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"Bz" = ( +/obj/item/stool, +/obj/spawner/booze/low_chance, +/turf/floor/plating/under/airless, +/area/template_noop) +"BQ" = ( +/obj/structure/table/standard, +/turf/floor/tiled/white, +/area/template_noop) +"CY" = ( +/obj/machinery/light, +/obj/spawner/closet/maintloot/low_chance, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"Di" = ( +/obj/spawner/closet/maintloot, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"DP" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/spawner/oddities/low_chance, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"Ee" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"Eg" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/dummy/airless{ + icon_state = "cult"; + name = "plating" + }, +/area/template_noop) +"Eo" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/item/clothing/under/serbiansuit, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"EL" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/reinforced, +/area/template_noop) +"Fj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/floor/tiled/white, +/area/template_noop) +"FH" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/tiled/white/techfloor_grid/airless, +/area/template_noop) +"FS" = ( +/turf/floor/tiled/white, +/area/template_noop) +"Ga" = ( +/obj/machinery/shower{ + pixel_y = 32 + }, +/obj/item/soap/deluxe, +/obj/structure/curtain/open/shower, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"Gy" = ( +/obj/spawner/scrap/sparse, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"Hn" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/template_noop) +"Hs" = ( +/obj/spawner/closet/maintloot/low_chance, +/turf/floor/plating/under/airless, +/area/template_noop) +"Ib" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/tiled/white, +/area/template_noop) +"IG" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/plating/under/airless, +/area/template_noop) +"Jp" = ( +/obj/spawner/junkfood/rotten, +/turf/floor/tiled/white, +/area/template_noop) +"Km" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/template_noop) +"La" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"Mb" = ( +/obj/structure/table/standard, +/obj/item/device/lighting/toggleable/lamp, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"Nt" = ( +/obj/structure/sink/kitchen{ + pixel_y = 26 + }, +/turf/floor/tiled/white, +/area/template_noop) +"Ou" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder/portable, +/turf/floor/tiled/white, +/area/template_noop) +"Pa" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/soda{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/floor/tiled/white, +/area/template_noop) +"Pp" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"PH" = ( +/obj/machinery/shower{ + pixel_y = 32 + }, +/obj/structure/curtain/open/shower, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "freezerfloor" + }, +/area/template_noop) +"PN" = ( +/obj/structure/table/standard, +/obj/item/deck/cards, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"PO" = ( +/obj/spawner/junk, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"Rh" = ( +/obj/structure/mirror/antag{ + pixel_x = -28 + }, +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 2 + }, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"RC" = ( +/obj/spawner/junk, +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"So" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/floor/dummy/freezer/airless, +/area/template_noop) +"Sy" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"Vq" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/tiled/white/techfloor_grid/airless, +/area/template_noop) +"Vt" = ( +/obj/spawner/junk, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"VJ" = ( +/turf/floor/dummy/lino/airless, +/area/template_noop) +"Wj" = ( +/obj/spawner/junk, +/turf/floor/tiled/white, +/area/template_noop) +"WC" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/floor/plating/under/airless, +/area/template_noop) +"WH" = ( +/obj/structure/table/standard, +/obj/item/device/lighting/toggleable/lamp, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"Xm" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r" + }, +/turf/floor/asteroid/cave, +/area/template_noop) +"Xv" = ( +/obj/spawner/junk/low_chance, +/turf/floor/plating/under/airless, +/area/template_noop) +"Yj" = ( +/obj/structure/table/standard, +/obj/item/storage/deferred/rations, +/obj/machinery/light, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"Yp" = ( +/obj/item/stool, +/obj/spawner/junkfood/rotten, +/turf/floor/dummy/lino/airless, +/area/template_noop) +"YW" = ( +/turf/floor/dummy/cult/airless, +/area/template_noop) +"YZ" = ( +/turf/wall/reinforced, +/area/template_noop) +"Zt" = ( +/obj/structure/table/rack, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun/energy_cheap/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts, +/turf/floor/dummy/cult/airless, +/area/template_noop) +"ZY" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/cult/airless, +/area/template_noop) + +(1,1,1) = {" +aJ +aJ +aJ +aJ +aJ +bi +aJ +aJ +aJ +aJ +bi +aJ +aJ +aJ +aJ +aJ +aJ +bi +bi +bi +bi +bi +bi +bi +bi +"} +(2,1,1) = {" +aJ +aJ +aJ +aJ +bi +bi +bi +aJ +aJ +bi +bi +bi +aJ +aJ +aJ +aJ +bi +bi +bi +YZ +YZ +YZ +YZ +bi +bi +"} +(3,1,1) = {" +aJ +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +YZ +YZ +Ee +WH +ru +gN +bi +"} +(4,1,1) = {" +bi +Hn +YZ +YZ +YZ +EL +YZ +YZ +Km +Hn +bi +bi +Hn +Hn +Km +YZ +YZ +EL +YZ +qL +sN +YW +ru +zT +bi +"} +(5,1,1) = {" +bi +bB +Eg +Vt +YW +YW +La +ip +bB +bB +Hn +Hn +aw +IG +bB +YW +La +YW +qe +YW +oX +ZY +ru +gN +bi +"} +(6,1,1) = {" +Hn +Km +YZ +YZ +YZ +YZ +YZ +YZ +YZ +YZ +wU +YZ +YZ +YZ +YZ +YZ +YZ +YZ +YZ +YZ +YZ +Pp +ru +zT +bi +"} +(7,1,1) = {" +bi +Hn +YZ +cW +VJ +Yp +PN +As +YZ +kx +YW +vP +YW +mZ +YZ +Fj +lA +BQ +rL +kO +YZ +vt +ru +Xm +bi +"} +(8,1,1) = {" +bi +aw +YZ +Mb +VJ +VJ +VJ +iw +YZ +nu +YW +YW +ae +kx +YZ +Jp +Jp +tK +xN +fM +YZ +YZ +YZ +bi +bi +"} +(9,1,1) = {" +bi +Hn +YZ +by +VJ +kc +VJ +js +YZ +wR +ZY +um +zJ +zM +YZ +Nt +Ib +Wj +xN +iY +YZ +YZ +Hn +bi +aJ +"} +(10,1,1) = {" +bi +bi +YZ +js +VJ +VJ +VJ +DP +YZ +oL +YW +wX +zg +Yj +YZ +Ou +FS +FS +FS +vz +YZ +bi +Hn +aJ +aJ +"} +(11,1,1) = {" +bi +Hn +YZ +js +VJ +VJ +VJ +rd +YZ +qA +bB +Bz +zM +yJ +YZ +Pa +FS +FS +eg +aK +YZ +Hn +Hn +aJ +aJ +"} +(12,1,1) = {" +Hn +Km +YZ +YZ +YZ +Eg +YZ +YZ +Km +Hn +Hn +bB +bB +kx +YZ +YZ +YZ +wU +YZ +YZ +Km +Hn +aJ +aJ +aJ +"} +(13,1,1) = {" +Hn +bB +Eg +YW +Sy +YW +Vt +YW +wU +Xv +Hn +Hn +IG +Vt +yE +ZY +Sy +YW +Vt +bB +Hn +bi +aJ +aJ +aJ +"} +(14,1,1) = {" +Km +YZ +YZ +YZ +YZ +Eg +YZ +YZ +YZ +Hs +bB +bB +bB +kx +YZ +YZ +YZ +Eg +YZ +Km +bB +Hn +bi +aJ +aJ +"} +(15,1,1) = {" +Hn +aH +YZ +js +bB +Hn +bB +Eo +YZ +sg +ZY +zM +yJ +zM +YZ +So +RC +lO +Rh +bB +Km +Hn +Hn +aJ +aJ +"} +(16,1,1) = {" +bi +Hn +YZ +Bv +IG +bi +Hn +js +YZ +jP +YW +zg +dI +zg +YZ +So +lO +lO +PO +lO +YZ +bi +Hn +bi +aJ +"} +(17,1,1) = {" +bi +bi +YZ +js +bB +bi +bB +js +YZ +ss +YW +zJ +zM +zM +YZ +kl +kW +qa +YZ +qX +YZ +YZ +Hn +bi +aJ +"} +(18,1,1) = {" +bi +bi +YZ +Mb +VJ +bB +kc +iw +YZ +Zt +ZY +YW +YW +CY +YZ +Ga +FH +du +YZ +bG +YZ +YZ +YZ +bi +bi +"} +(19,1,1) = {" +bi +Hn +YZ +cW +VJ +eo +fb +eo +YZ +tv +YW +kx +Gy +Di +YZ +PH +Vq +du +YZ +Bq +YZ +vt +ru +gN +bi +"} +(20,1,1) = {" +bi +Km +YZ +YZ +Km +Km +Km +YZ +YZ +YZ +yE +YZ +YZ +YZ +YZ +YZ +YZ +YZ +YZ +YZ +YZ +Pp +ru +zT +bi +"} +(21,1,1) = {" +bi +bB +Eg +aw +dN +Hn +Hn +bB +bB +YW +YW +Sy +YW +ZY +bB +bB +WC +YW +qe +YW +dU +YW +ru +gN +bi +"} +(22,1,1) = {" +bi +Hn +YZ +YZ +YZ +Hn +bi +Hn +Km +EL +YZ +YZ +YZ +EL +Km +Hn +Km +EL +YZ +qL +sN +YW +ru +zT +bi +"} +(23,1,1) = {" +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +bi +aJ +aJ +bi +bi +bi +bi +YZ +YZ +wX +WH +ru +Xm +bi +"} +(24,1,1) = {" +bi +bi +bi +aJ +aJ +aJ +aJ +bi +bi +bi +bi +aJ +aJ +aJ +aJ +bi +aJ +aJ +bi +YZ +YZ +YZ +YZ +bi +bi +"} +(25,1,1) = {" +bi +bi +aJ +aJ +aJ +aJ +aJ +aJ +bi +bi +aJ +aJ +aJ +aJ +aJ +bi +aJ +aJ +aJ +bi +bi +bi +bi +bi +bi +"} diff --git a/maps/submaps/cave_pois/serbian2.dmm b/maps/submaps/cave_pois/serbian2.dmm new file mode 100644 index 00000000000..b808391d15b --- /dev/null +++ b/maps/submaps/cave_pois/serbian2.dmm @@ -0,0 +1,1386 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ah" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ao" = ( +/obj/structure/closet, +/obj/spawner/ammo, +/obj/spawner/ammo, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/lowcost/low_chance, +/obj/spawner/ammo/lowcost/low_chance, +/obj/spawner/ammo/lowcost/low_chance, +/obj/spawner/ammo/lowcost, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"ay" = ( +/obj/spawner/scrap/dense, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aP" = ( +/obj/structure/table/rack, +/obj/item/storage/deferred/meds, +/obj/machinery/light, +/obj/spawner/surgery_tool/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical_lowcost/low_chance, +/obj/spawner/medical_lowcost/low_chance, +/obj/spawner/firstaid/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"aU" = ( +/obj/spawner/scrap/dense, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bb" = ( +/obj/structure/table/rack, +/obj/spawner/toolbox, +/obj/spawner/electronics/low_chance, +/obj/spawner/electronics/low_chance, +/obj/spawner/tool/advanced/low_chance, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bm" = ( +/obj/machinery/door/airlock/maintenance_interior{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/dummy/airless{ + icon_state = "cult"; + name = "plating" + }, +/area/asteroid/cave) +"bs" = ( +/obj/machinery/light, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bE" = ( +/obj/structure/table/rack, +/obj/spawner/contraband/low_chance, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"dH" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"dO" = ( +/obj/structure/bed/chair/comfy/green, +/obj/spawner/booze/low_chance, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"eM" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"fy" = ( +/obj/structure/largecrate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"gt" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"hr" = ( +/obj/machinery/door/airlock/maintenance_interior{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"hs" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"ib" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/standard, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"iz" = ( +/obj/structure/table/standard, +/obj/item/deck/cards, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"ku" = ( +/obj/structure/table/woodentable, +/obj/item/folder/cyan, +/obj/item/stamp/denied, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"kG" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/material/kitchen/rollingpin, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"lo" = ( +/obj/structure/closet/emcloset, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/lowkeyrandom, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"mW" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"nC" = ( +/obj/structure/bed/chair, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"nI" = ( +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"nR" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/console{ + dir = 1 + }, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"oi" = ( +/obj/structure/table/standard, +/obj/item/packageWrap, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"oS" = ( +/obj/structure/table/rack, +/obj/spawner/tool_upgrade/low_chance, +/obj/spawner/tool_upgrade/low_chance, +/obj/spawner/tool_upgrade/low_chance, +/obj/spawner/tool/advanced/low_chance, +/obj/spawner/tool/advanced/low_chance, +/obj/spawner/toolbox/low_chance, +/obj/spawner/toolbox, +/obj/spawner/tool/advanced, +/obj/spawner/tool_upgrade/rare/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"pa" = ( +/obj/machinery/light{ + dir = 8 + }, +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"pm" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/dummy/airless{ + icon_state = "cult"; + name = "plating" + }, +/area/asteroid/cave) +"qk" = ( +/obj/structure/lattice, +/obj/spawner/junk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ss" = ( +/obj/spawner/junk, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"up" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"uv" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 5; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 15 + }, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"uQ" = ( +/obj/item/remains/human, +/obj/item/clothing/shoes/magboots/merc, +/obj/item/clothing/under/turtleneck, +/obj/item/clothing/head/ushanka, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"vM" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"wg" = ( +/obj/item/modular_computer/console{ + dir = 8 + }, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"wT" = ( +/obj/structure/closet, +/obj/spawner/cloth/shoes/low_chance, +/obj/spawner/contraband/low_chance, +/obj/spawner/pack/cloth, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"xf" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/spawner/junkfood/rotten, +/obj/spawner/junkfood/rotten, +/obj/spawner/junkfood/rotten, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"xp" = ( +/obj/spawner/junkfood/rotten, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"xN" = ( +/obj/structure/table/rack, +/obj/spawner/gun/cheap, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/pack/gun_loot/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"xO" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/item/clothing/head/ushanka, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"zc" = ( +/obj/structure/closet/emcloset, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/lowkeyrandom, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"zB" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"zC" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/spawner/booze/low_chance, +/obj/spawner/booze/low_chance, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"zO" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Ax" = ( +/obj/item/modular_computer/console{ + dir = 1 + }, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"Az" = ( +/obj/item/stool, +/obj/spawner/booze/low_chance, +/obj/spawner/booze/low_chance, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"AM" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/item/remains/human, +/obj/item/clothing/shoes/magboots/merc, +/obj/item/clothing/under/turtleneck, +/obj/item/clothing/head/ushanka, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"Bp" = ( +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"BD" = ( +/obj/machinery/light, +/obj/spawner/junk, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Dl" = ( +/obj/structure/table/rack, +/obj/spawner/gun/cheap, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun/normal/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"Dy" = ( +/obj/structure/table/rack, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun/cheap, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/pack/gun_loot/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"DH" = ( +/obj/machinery/light{ + dir = 4 + }, +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Ej" = ( +/obj/structure/table/standard, +/obj/item/folder/cyan, +/obj/spawner/credits/low_chance, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"EA" = ( +/obj/structure/table/rack, +/obj/spawner/material/building, +/obj/spawner/material/building, +/obj/spawner/material/building, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"Fb" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"Fs" = ( +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Gt" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/machinery/light, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"Hc" = ( +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"Hd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/dummy/airless{ + icon_state = "cult"; + name = "plating" + }, +/area/asteroid/cave) +"Js" = ( +/obj/structure/closet, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/spawner/cloth/masks/low_chance, +/obj/spawner/cloth/masks/low_chance, +/obj/spawner/cloth/masks/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"La" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Lz" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"LE" = ( +/obj/structure/closet, +/obj/item/clothing/under/turtleneck, +/obj/item/clothing/shoes/magboots/merc, +/obj/spawner/cloth/shoes/low_chance, +/obj/spawner/cloth/shoes/low_chance, +/obj/spawner/pack/cloth, +/obj/spawner/voidsuit/damaged/low_chance, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"Md" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Mf" = ( +/obj/structure/closet/firecloset, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/lowkeyrandom, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"ME" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/reinforced, +/area/asteroid/cave) +"Ns" = ( +/obj/structure/mirror/antag{ + pixel_x = -28 + }, +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 2 + }, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"NH" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"NQ" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"NR" = ( +/turf/floor/dummy/airless{ + icon_state = "cult"; + name = "plating" + }, +/area/asteroid/cave) +"Og" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Oz" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/obj/structure/noticeboard{ + pixel_x = 30 + }, +/obj/spawner/credits/low_chance, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"Pb" = ( +/obj/structure/lattice, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Pc" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/flask/barflask, +/obj/spawner/credits/low_chance, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"PT" = ( +/obj/structure/closet, +/obj/item/tool/pickaxe/diamonddrill, +/obj/item/tool/pickaxe/diamonddrill, +/obj/item/storage/backpack/military, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"Qn" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"Qo" = ( +/obj/spawner/junk, +/turf/floor/dummy/airless{ + icon_state = "cult"; + name = "plating" + }, +/area/asteroid/cave) +"Qq" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"QE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/dummy/airless{ + dir = 2; + icon_state = "dark" + }, +/area/asteroid/cave) +"QY" = ( +/obj/structure/table/standard, +/obj/item/device/lighting/toggleable/lamp, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"SV" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/northleft, +/obj/item/soap/deluxe, +/turf/floor/tiled/white/techfloor_grid/airless, +/area/asteroid/cave) +"Th" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Ur" = ( +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 8 + }, +/obj/spawner/pouch/low_chance, +/obj/spawner/pouch/low_chance, +/obj/spawner/pouch/low_chance, +/obj/spawner/pouch, +/obj/spawner/cloth/belt/low_chance, +/obj/spawner/cloth/belt/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"Uy" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"UT" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"VG" = ( +/obj/structure/lattice, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"VK" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"Xa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/spawner/junk, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"XL" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/dummy/airless{ + icon_state = "cult"; + name = "plating" + }, +/area/asteroid/cave) +"XS" = ( +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"Yy" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"YE" = ( +/obj/structure/table/standard, +/obj/item/device/lighting/toggleable/lamp, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"Ze" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"Zt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/deferred/crate/alcohol, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"Zy" = ( +/turf/cave_mineral, +/area/asteroid/cave) + +(1,1,1) = {" +Zy +Zy +Zy +Zy +Yy +Yy +Yy +Yy +Zy +Zy +Zy +Yy +Yy +Yy +Zy +Zy +Zy +Zy +Zy +Yy +Lz +UT +UT +Yy +Yy +"} +(2,1,1) = {" +Zy +Zy +Zy +Yy +Yy +Yy +Yy +Yy +Yy +Zy +Yy +Yy +Yy +Yy +Yy +Zy +Zy +Yy +Yy +Yy +Ze +ah +Uy +Yy +Yy +"} +(3,1,1) = {" +Yy +Zy +Yy +Yy +UT +La +ME +Ze +Ze +Ze +ME +Ze +Ze +Lz +UT +Yy +Yy +UT +UT +Lz +Ze +XL +Lz +UT +Yy +"} +(4,1,1) = {" +Yy +Yy +Yy +Yy +Yy +UT +ah +aU +Fs +DH +Fs +Fs +Fs +ah +ah +Pb +UT +Uy +ah +ah +Qo +Fs +Ze +Yy +Yy +"} +(5,1,1) = {" +Yy +Yy +UT +Yy +Yy +Yy +ah +Ze +Ze +Ze +Ze +Ze +XL +Ze +Ze +Ze +Ze +Ze +Ze +Ze +Ze +dH +Ze +Yy +Zy +"} +(6,1,1) = {" +UT +Lz +Ze +ah +UT +Yy +Yy +La +up +nC +Ej +Ze +NR +Ze +Js +PT +Ur +bb +Dl +QY +Ze +Fs +Ze +Yy +Zy +"} +(7,1,1) = {" +Yy +Uy +Ze +Fs +La +UT +Yy +UT +ah +ah +Ax +Ze +Hd +Ze +Bp +Bp +hs +Bp +Bp +ao +Ze +Fs +ME +Zy +Zy +"} +(8,1,1) = {" +Yy +Yy +Ze +aU +Ze +ah +Uy +Yy +Yy +La +Hc +XL +NR +bm +Bp +Bp +Bp +uQ +Bp +oS +Ze +Fs +Ze +Zy +Zy +"} +(9,1,1) = {" +Yy +UT +Ze +Fs +Ze +QE +ku +ah +Yy +UT +Ax +Ze +NR +Ze +Mf +zc +EA +Bp +hs +aP +Ze +ss +Ze +Zy +Zy +"} +(10,1,1) = {" +UT +Lz +Ze +bs +Ze +dO +nR +Qq +UT +Yy +ah +Lz +XL +Ze +Ze +Ze +fy +Bp +Bp +xN +Ze +eM +Ze +Yy +Zy +"} +(11,1,1) = {" +UT +ah +Ze +Fs +Ze +Oz +Pc +Hc +wg +Uy +ah +ah +Fs +Fs +pa +Ze +fy +Bp +Bp +Dy +Ze +Fs +ME +Yy +Yy +"} +(12,1,1) = {" +Lz +Ze +Ze +Fs +Ze +Ze +Ze +XL +Ze +Lz +ah +Lz +ME +Ze +Fs +Ze +Ze +bm +Ze +Ze +Ze +Fs +Ze +Lz +UT +"} +(13,1,1) = {" +UT +ay +Ze +Fs +XL +NR +pm +NR +NR +XL +Fs +ME +Yy +ME +Fs +Og +Fs +Fs +Th +Fs +Og +Fs +XL +ah +UT +"} +(14,1,1) = {" +Yy +UT +Ze +Fs +Ze +Ze +Ze +XL +Ze +Ze +Fs +Ze +ME +Ze +Fs +Ze +Lz +XL +Ze +Ze +Ze +Fs +Ze +Lz +Yy +"} +(15,1,1) = {" +Yy +Yy +Ze +dH +Ze +Fb +XS +XS +lo +Ze +Th +dH +Fs +Fs +ss +Lz +Yy +vM +xf +ib +Ze +Fs +ME +UT +Yy +"} +(16,1,1) = {" +Yy +Yy +Ze +bs +Ze +gt +ah +ah +uv +Ze +Ze +Ze +Og +Ze +Ze +Lz +VG +Yy +xp +Gt +Ze +Xa +Ze +Yy +Yy +"} +(17,1,1) = {" +Yy +Yy +Ze +Fs +Ze +ah +qk +Yy +xp +iz +Az +Ze +Fs +Ze +Ns +Ze +Lz +Uy +ah +oi +Ze +Fs +Ze +Yy +Zy +"} +(18,1,1) = {" +Yy +UT +Ze +ss +Ze +YE +ah +Yy +ah +zB +XS +XL +Fs +XL +nI +Qn +Ze +Ze +nI +kG +Ze +dH +Ze +Yy +Zy +"} +(19,1,1) = {" +Yy +Lz +Ze +Fs +Ze +XS +ah +ah +XS +XS +XS +Ze +BD +Ze +NH +SV +VK +Ze +Ze +Ze +Ze +eM +ME +Yy +Zy +"} +(20,1,1) = {" +Yy +ah +Ze +Fs +Ze +wT +LE +bE +xO +zC +gt +Ze +Fs +Ze +NQ +mW +nI +hr +Zt +AM +Ze +Fs +Ze +Yy +Zy +"} +(21,1,1) = {" +Yy +UT +Ze +Fs +Ze +Lz +Lz +Lz +Ze +Ze +Ze +Ze +Og +Ze +Ze +Ze +Ze +Ze +Ze +Ze +Lz +ay +Ze +Yy +Yy +"} +(22,1,1) = {" +Yy +ah +XL +Fs +ah +La +UT +UT +Uy +zO +Fs +Fs +Fs +Fs +Fs +Md +ss +Fs +dH +zO +ah +ah +Ze +UT +Yy +"} +(23,1,1) = {" +Yy +Lz +Ze +Ze +Ze +Lz +UT +Yy +UT +Lz +ME +Ze +Ze +Ze +ME +Ze +Ze +Ze +ME +Lz +UT +ah +Ze +Ze +UT +"} +(24,1,1) = {" +Zy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Zy +Zy +Yy +Yy +Yy +UT +ah +ah +UT +Yy +"} +(25,1,1) = {" +Zy +Zy +Yy +Yy +Zy +Zy +Zy +Zy +Yy +Yy +Yy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} diff --git a/maps/submaps/cave_pois/serbian3.dmm b/maps/submaps/cave_pois/serbian3.dmm new file mode 100644 index 00000000000..fdc2a1a2e3b --- /dev/null +++ b/maps/submaps/cave_pois/serbian3.dmm @@ -0,0 +1,1350 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ab" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"ac" = ( +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"ad" = ( +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"ae" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/reinforced, +/area/asteroid/cave) +"af" = ( +/obj/structure/noticeboard, +/turf/wall/reinforced, +/area/asteroid/cave) +"ag" = ( +/obj/structure/noticeboard{ + icon_state = "nboard00" + }, +/turf/wall/reinforced, +/area/asteroid/cave) +"ah" = ( +/obj/structure/sign/double/map/left, +/turf/wall/reinforced, +/area/asteroid/cave) +"ai" = ( +/obj/structure/sign/double/map/right, +/turf/wall/reinforced, +/area/asteroid/cave) +"aj" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"ak" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"al" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"am" = ( +/obj/structure/table/glass, +/obj/spawner/booze/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"an" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/soda{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/floor/tiled/white, +/area/asteroid/cave) +"ao" = ( +/obj/spawner/junk, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"ap" = ( +/obj/spawner/junk, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"aq" = ( +/obj/item/material/shard, +/obj/spawner/junk, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"ar" = ( +/obj/structure/bed/chair/comfy/black, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"as" = ( +/obj/structure/table/standard, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/white, +/area/asteroid/cave) +"at" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/floor/tiled/white, +/area/asteroid/cave) +"au" = ( +/turf/floor/tiled/white, +/area/asteroid/cave) +"av" = ( +/obj/spawner/scrap/dense, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aw" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/floor/tiled/white, +/area/asteroid/cave) +"ax" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ay" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"az" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = list(150) + }, +/obj/spawner/booze/low_chance, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/white, +/area/asteroid/cave) +"aA" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/spawner/junkfood/rotten/low_chance, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/white, +/area/asteroid/cave) +"aB" = ( +/turf/cave_mineral, +/area/asteroid/cave) +"aF" = ( +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"aG" = ( +/obj/item/paper/crumpled, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"aH" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror/antag{ + pixel_x = 28 + }, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"aI" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/spawner/oddities/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"aJ" = ( +/obj/spawner/closet/maintloot/beacon, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"aK" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/item/paper/crumpled, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"aL" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"aM" = ( +/obj/machinery/shower{ + dir = 8; + icon_state = "shower" + }, +/obj/structure/curtain/open/shower, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"aN" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/spawner/lowkeyrandom, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"aO" = ( +/obj/item/soap, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"aP" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aQ" = ( +/obj/structure/table/rack, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun/cheap/low_chance, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun/cheap, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/pack/gun_loot/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"aR" = ( +/obj/structure/computerframe{ + anchored = 1; + dir = 8 + }, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"aS" = ( +/obj/item/storage/deferred/rations, +/obj/structure/closet, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"aT" = ( +/obj/structure/closet, +/obj/spawner/pouch/low_chance, +/obj/spawner/pack/cloth, +/obj/spawner/pouch/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"aU" = ( +/obj/item/material/shard, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"aV" = ( +/obj/structure/closet, +/obj/item/clothing/gloves/fingerless, +/obj/spawner/pack/cloth, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"aW" = ( +/obj/structure/table/rack, +/obj/spawner/gun/cheap/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"aX" = ( +/obj/structure/closet/random/milsupply, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"aY" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/spawner/toy/plushie, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"aZ" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bb" = ( +/obj/machinery/door/airlock/maintenance_interior{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bc" = ( +/obj/item/material/shard, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bd" = ( +/obj/structure/table/glass, +/obj/structure/table/glass, +/obj/item/material/shard, +/obj/spawner/credits/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"be" = ( +/obj/spawner/pack/machine, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bf" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/spawner/booze/low_chance, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/white, +/area/asteroid/cave) +"bg" = ( +/obj/structure/table/reinforced, +/obj/spawner/junkfood/rotten, +/obj/spawner/booze/low_chance, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/white, +/area/asteroid/cave) +"bh" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bi" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bj" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/tiled/white, +/area/asteroid/cave) +"bk" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bl" = ( +/obj/structure/closet, +/obj/spawner/toy/plushie, +/obj/item/clothing/gloves/security/tactical, +/obj/spawner/pouch/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bm" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bn" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bo" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bp" = ( +/obj/spawner/junkfood/rotten/low_chance, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/white, +/area/asteroid/cave) +"bq" = ( +/obj/spawner/junkfood/rotten, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/white, +/area/asteroid/cave) +"br" = ( +/obj/item/material/shard, +/obj/item/material/shard, +/obj/spawner/junk, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bs" = ( +/obj/item/material/shard, +/obj/item/material/shard, +/obj/item/material/shard, +/obj/spawner/junk, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bt" = ( +/obj/structure/table/reinforced, +/obj/item/tray{ + pixel_y = 5 + }, +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/tiled/white, +/area/asteroid/cave) +"bu" = ( +/obj/spawner/junk, +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bv" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/spawner/junk, +/obj/structure/mirror/antag{ + pixel_x = 28 + }, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"bw" = ( +/obj/spawner/junk, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"bx" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"by" = ( +/obj/structure/table/rack, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun/cheap/low_chance, +/obj/spawner/gun/shotgun/low_chance, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun/normal, +/obj/spawner/gun_upgrade/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bz" = ( +/obj/structure/closet, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/spawner/booze, +/obj/spawner/booze, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bA" = ( +/obj/structure/closet, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 5; + pixel_y = 17 + }, +/obj/item/reagent_containers/food/drinks/flask/barflask, +/obj/spawner/booze, +/obj/spawner/booze, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bB" = ( +/obj/structure/closet, +/obj/spawner/pack/gun_adjacent_loot, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bC" = ( +/obj/structure/table/rack, +/obj/spawner/gun_parts, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bD" = ( +/obj/structure/table/rack, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun/normal/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bE" = ( +/obj/structure/table/rack, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/lowcost, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bF" = ( +/obj/structure/table/rack, +/obj/spawner/gun/shotgun/low_chance, +/obj/spawner/gun_upgrade/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bG" = ( +/obj/structure/table/rack, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/lowcost, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bH" = ( +/obj/spawner/gun_parts/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bJ" = ( +/obj/spawner/pack/machine, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"bK" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"bL" = ( +/obj/structure/table/rack, +/obj/spawner/pouch/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/lowcost, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bN" = ( +/obj/item/material/shard, +/obj/item/material/shard, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bO" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"bP" = ( +/obj/item/material/shard, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"bQ" = ( +/obj/item/material/shard, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"cH" = ( +/obj/structure/table/rack, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/lowcost, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"fz" = ( +/obj/structure/table/rack, +/obj/spawner/gun_parts, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"fF" = ( +/obj/structure/closet, +/obj/spawner/pack/cloth, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"gu" = ( +/obj/structure/table/rack, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"gv" = ( +/obj/structure/table/rack, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/pack/gun_loot, +/obj/spawner/gun_upgrade/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"iZ" = ( +/obj/structure/bed/chair/comfy/black, +/obj/spawner/credits/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"ko" = ( +/obj/structure/table/rack, +/obj/spawner/gun_parts, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"kZ" = ( +/obj/structure/table/glass, +/obj/spawner/credits/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"mq" = ( +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"rx" = ( +/obj/machinery/door/airlock/maintenance_interior{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"rS" = ( +/obj/structure/table/glass, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"zY" = ( +/obj/machinery/door/airlock/maintenance_interior{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"Aj" = ( +/obj/structure/table/rack, +/obj/spawner/gun/cheap/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/lowcost, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"AK" = ( +/obj/spawner/pack/machine/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Bo" = ( +/obj/structure/table/rack, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/gun/normal, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/pack/gun_loot/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Kc" = ( +/obj/structure/girder, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"My" = ( +/obj/spawner/pack/machine/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Nf" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/dummy/freezer/airless, +/area/asteroid/cave) +"RI" = ( +/obj/structure/closet, +/obj/spawner/pouch/low_chance, +/obj/spawner/pack/cloth, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"TP" = ( +/obj/structure/table/rack, +/obj/spawner/gun_upgrade/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Un" = ( +/obj/machinery/porta_turret{ + use_power = 0; + lethal = 1 + }, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"VA" = ( +/obj/structure/closet, +/obj/spawner/pack/gun_adjacent_loot, +/obj/spawner/pack/gun_adjacent_loot, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"We" = ( +/obj/structure/table/rack, +/obj/spawner/gun/cheap/low_chance, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun/cheap, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/pack/gun_loot/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Yp" = ( +/obj/structure/closet/secure_closet/rare_loot, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"YY" = ( +/obj/item/material/shard, +/obj/spawner/pack/machine/low_chance, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"Zm" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aB +aB +aB +aB +aB +aa +aa +aB +aB +aB +aB +aB +aB +"} +(2,1,1) = {" +aU +ab +aj +aj +ab +ab +ae +ab +ab +ab +aa +aa +aa +aB +aB +aB +aa +aa +aa +aa +aB +aB +aB +aB +aB +"} +(3,1,1) = {" +aa +ab +ac +ac +ab +an +bg +au +az +ab +ax +aa +aa +aB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +ab +ac +ac +ab +as +bp +bq +bt +ab +ax +ax +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ax +aa +"} +(5,1,1) = {" +aa +ab +aj +aj +ab +aA +bp +bp +bj +ab +aP +av +bi +ab +ab +ab +ab +Yp +We +by +aQ +bF +ab +ax +ax +"} +(6,1,1) = {" +aU +ab +ac +ac +ab +bf +at +aw +au +ab +aP +aK +ab +aK +ab +aN +ab +ac +ac +Un +ac +Bo +ab +ax +aa +"} +(7,1,1) = {" +aa +ae +bP +ac +ab +ab +ab +ab +Zm +ab +aP +Nf +ab +Nf +ab +zY +ab +ac +ac +ao +ac +gv +ab +aa +aa +"} +(8,1,1) = {" +aa +bi +bP +bP +AK +be +ao +ac +ao +aP +aF +bw +aF +bK +aF +aF +ab +rx +ab +ab +ab +ab +ab +ax +aa +"} +(9,1,1) = {" +aU +bi +bx +aP +aZ +ac +ac +ac +aP +aP +aG +aG +aF +aF +aF +aO +ab +ac +ko +bG +gu +bG +bi +ax +ax +"} +(10,1,1) = {" +aU +ae +YY +bQ +bx +be +be +aP +ao +ab +bv +aH +ab +aM +aM +aM +ab +ao +ao +ac +aP +aP +aP +aP +aa +"} +(11,1,1) = {" +aa +ab +be +bP +My +ao +My +aP +AK +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +mq +Kc +bk +ax +"} +(12,1,1) = {" +aa +af +ao +ac +ac +aP +ac +ac +ac +aL +ac +ac +ac +ao +ac +ac +bb +ac +ac +TP +aP +ax +rx +bH +aP +"} +(13,1,1) = {" +aa +ab +aP +aP +bx +AK +be +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +be +ac +Un +aP +bG +ab +bk +ax +"} +(14,1,1) = {" +ax +bi +aP +av +ab +ab +ab +ab +Zm +ab +aY +bO +aI +bO +aI +bm +ab +bB +aP +aP +ao +aW +ab +aa +aa +"} +(15,1,1) = {" +ax +aP +aP +ad +aS +bz +bA +ad +ad +ab +ad +ad +ad +ad +ad +aP +aP +aP +aP +bE +ac +bG +ab +aa +aa +"} +(16,1,1) = {" +ax +aP +aJ +ap +ad +ad +ad +ap +ad +ab +ad +ad +ad +ad +aP +aP +bi +bJ +ac +bC +ao +fz +ae +aa +aa +"} +(17,1,1) = {" +ax +bi +aJ +ad +al +al +ad +bh +ad +ab +ad +ad +bh +ad +aP +bn +ab +bB +ac +ac +aZ +bG +ab +aa +aB +"} +(18,1,1) = {" +aa +ag +ad +ad +kZ +am +kZ +ay +ad +Zm +ad +aP +aP +aP +ar +rS +ab +ac +ac +Un +ac +TP +ab +aB +aB +"} +(19,1,1) = {" +aa +ah +ad +ad +ad +iZ +kZ +ad +ad +ab +bk +bx +ad +ad +ad +bo +ab +VA +ac +cH +ac +bL +ae +aa +aB +"} +(20,1,1) = {" +aa +ai +ad +ad +ad +aR +am +ay +ad +bu +aP +RI +bl +aV +aT +fF +ab +aX +aZ +bD +ac +Aj +ab +aa +aB +"} +(21,1,1) = {" +aa +ae +ad +bh +ad +ad +bd +ay +bc +ax +bi +ab +ae +ab +ae +ab +ab +ab +ae +ab +ae +ab +ab +aa +aa +"} +(22,1,1) = {" +aa +ab +ad +ad +ad +ad +bc +br +bc +ax +aa +aa +aa +aa +aa +aB +aa +aa +aa +aa +aa +aa +aa +aa +aB +"} +(23,1,1) = {" +aa +ab +ak +ad +aq +bc +bc +bs +bk +bi +ax +aa +aa +aa +aa +aB +aB +aa +aa +aa +aa +aa +aa +aB +aB +"} +(24,1,1) = {" +aa +ab +ab +ae +ab +ae +bi +bi +bi +ax +ax +aa +aa +aa +aB +aB +aB +aB +aB +aa +aa +aB +aB +aB +aB +"} +(25,1,1) = {" +aa +aa +aU +aa +aU +bN +aU +bN +ax +ax +aa +aa +aa +aB +aB +aB +aB +aB +aB +aB +aa +aa +aB +aB +aB +"} diff --git a/maps/submaps/cave_pois/serbian_tiny1.dmm b/maps/submaps/cave_pois/serbian_tiny1.dmm new file mode 100644 index 00000000000..2ab0e3b7af8 --- /dev/null +++ b/maps/submaps/cave_pois/serbian_tiny1.dmm @@ -0,0 +1,103 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"e" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"f" = ( +/obj/spawner/scrap/sparse, +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"k" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"l" = ( +/obj/spawner/closet/maintloot, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"m" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/spawner/booze/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"n" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"r" = ( +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"v" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"D" = ( +/obj/structure/table/standard, +/obj/spawner/pouch/low_chance, +/obj/spawner/lowkeyrandom, +/obj/spawner/junk, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"I" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"L" = ( +/obj/spawner/scrap/dense, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"M" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"O" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"S" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"V" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/plating/under/airless, +/area/asteroid/cave) + +(1,1,1) = {" +I +f +L +v +v +"} +(2,1,1) = {" +k +M +e +l +v +"} +(3,1,1) = {" +k +n +O +r +V +"} +(4,1,1) = {" +M +D +S +m +v +"} +(5,1,1) = {" +e +v +v +v +v +"} diff --git a/maps/submaps/cave_pois/serbian_tiny2.dmm b/maps/submaps/cave_pois/serbian_tiny2.dmm new file mode 100644 index 00000000000..7499a2c00f5 --- /dev/null +++ b/maps/submaps/cave_pois/serbian_tiny2.dmm @@ -0,0 +1,103 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"g" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"j" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"p" = ( +/obj/spawner/junk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"s" = ( +/obj/spawner/closet/maintloot, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"u" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"v" = ( +/obj/spawner/scrap/sparse, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"C" = ( +/mob/living/simple_animal/hostile/bear, +/obj/spawner/junk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"F" = ( +/obj/spawner/booze/low_chance, +/obj/spawner/booze/low_chance, +/obj/structure/table/standard, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"I" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"O" = ( +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"Q" = ( +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) +"T" = ( +/obj/spawner/pack/machine, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"V" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/spawner/booze/low_chance, +/obj/structure/table/standard, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"W" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/spawner/junk, +/turf/floor/dummy/cult/airless, +/area/asteroid/cave) + +(1,1,1) = {" +p +O +u +I +C +"} +(2,1,1) = {" +F +V +g +u +I +"} +(3,1,1) = {" +a +g +a +a +j +"} +(4,1,1) = {" +s +T +a +W +Q +"} +(5,1,1) = {" +C +j +g +v +a +"} diff --git a/maps/submaps/cave_pois/serbian_tiny3.dmm b/maps/submaps/cave_pois/serbian_tiny3.dmm new file mode 100644 index 00000000000..8997882adc6 --- /dev/null +++ b/maps/submaps/cave_pois/serbian_tiny3.dmm @@ -0,0 +1,83 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"g" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"j" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"l" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"u" = ( +/obj/spawner/closet/maintloot, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"v" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"C" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"F" = ( +/obj/structure/table/standard, +/obj/spawner/junk, +/obj/spawner/junk, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"I" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"O" = ( +/obj/spawner/junk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Q" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"V" = ( +/obj/machinery/door/airlock/maintenance_interior, +/turf/floor/plating/under/airless, +/area/asteroid/cave) + +(1,1,1) = {" +g +Q +Q +Q +Q +"} +(2,1,1) = {" +O +F +u +u +Q +"} +(3,1,1) = {" +j +I +C +a +V +"} +(4,1,1) = {" +l +v +O +l +Q +"} +(5,1,1) = {" +g +Q +g +I +g +"} diff --git a/maps/submaps/cave_pois/serbian_tiny4.dmm b/maps/submaps/cave_pois/serbian_tiny4.dmm new file mode 100644 index 00000000000..c1537400ad6 --- /dev/null +++ b/maps/submaps/cave_pois/serbian_tiny4.dmm @@ -0,0 +1,98 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/table/standard, +/obj/spawner/toolbox, +/obj/spawner/tool/advanced/low_chance, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"g" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"j" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"l" = ( +/obj/spawner/scrap/sparse, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"p" = ( +/obj/spawner/scrap/sparse, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"u" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"v" = ( +/mob/living/simple_animal/hostile/bear, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"C" = ( +/obj/spawner/pack/machine, +/turf/floor/dummy/lino/airless, +/area/asteroid/cave) +"F" = ( +/obj/spawner/pack/machine, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"I" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"O" = ( +/obj/spawner/junk, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"T" = ( +/obj/spawner/junk, +/turf/floor/dummy/airless{ + icon_state = "lino" + }, +/area/asteroid/cave) +"V" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"W" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) + +(1,1,1) = {" +O +u +l +j +I +"} +(2,1,1) = {" +j +V +V +V +g +"} +(3,1,1) = {" +I +V +C +p +j +"} +(4,1,1) = {" +l +g +a +W +I +"} +(5,1,1) = {" +I +V +F +v +T +"} diff --git a/maps/submaps/cave_pois/spacewrecks1.dmm b/maps/submaps/cave_pois/spacewrecks1.dmm new file mode 100644 index 00000000000..a2b67ad3700 --- /dev/null +++ b/maps/submaps/cave_pois/spacewrecks1.dmm @@ -0,0 +1,864 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aw" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/spawner/medical_lowcost/low_chance, +/obj/machinery/light{ + dir = 4 + }, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"aH" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/spawner/lowkeyrandom, +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"aJ" = ( +/obj/structure/medical_stand, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"aK" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/smart, +/area/asteroid/cave) +"bi" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/reinforced, +/area/asteroid/cave) +"by" = ( +/obj/item/modular_computer/console{ + dir = 4 + }, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"bB" = ( +/obj/structure/closet/random/tech, +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"bG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/spawner/credits/low_chance, +/obj/spawner/credits/low_chance, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"cW" = ( +/obj/spawner/junk/low_chance, +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"dI" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/spawner/medical_lowcost/low_chance, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"dN" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"dU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/turf/floor/tiled/dark/cargo/airless, +/area/asteroid/cave) +"dZ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"eg" = ( +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"eo" = ( +/obj/spawner/powercell/low_chance, +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"eQ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/structure/sign/department/bridge{ + pixel_y = 32 + }, +/obj/spawner/junkfood/low_chance, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"fb" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"fd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"fe" = ( +/obj/structure/closet/random/milsupply, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"gN" = ( +/obj/machinery/recharge_station, +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"gQ" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/turf/floor/airless, +/area/asteroid/cave) +"ip" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/spawner/junkfood/rotten/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"iY" = ( +/obj/structure/sign/department/medbay, +/turf/wall/reinforced, +/area/asteroid/cave) +"kc" = ( +/obj/structure/bed/chair/shuttle, +/obj/spawner/ammo/low_cost, +/obj/spawner/ammo/low_cost, +/obj/spawner/gun/cheap/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"lA" = ( +/obj/structure/sign/department/eng, +/turf/wall/reinforced, +/area/asteroid/cave) +"mV" = ( +/obj/machinery/light, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"np" = ( +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"nv" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"ow" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"oL" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"oX" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"qA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + req_access = list(1) + }, +/turf/floor/tiled/steel/cargo/airless, +/area/asteroid/cave) +"qL" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/spawner/junk/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"qX" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/spawner/gun/cheap/low_chance, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"rd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/spawner/gun/cheap/low_chance, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"sN" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/spawner/booze/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"tX" = ( +/obj/spawner/pack/tech_loot/low_chance, +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"vt" = ( +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"vz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medical Bay"; + req_access = list(5) + }, +/turf/floor/tiled/steel/cargo/airless, +/area/asteroid/cave) +"wn" = ( +/obj/landmark/corpse/skeleton, +/obj/spawner/credits/low_chance, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"wU" = ( +/obj/spawner/pack/machine, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"xz" = ( +/obj/spawner/tool, +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"xN" = ( +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"yP" = ( +/turf/mineral/random, +/area/asteroid/cave) +"zJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access = list(10) + }, +/turf/floor/tiled/steel/cargo/airless, +/area/asteroid/cave) +"zM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/freezer{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_1_berth_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/turf/floor/tiled/steel/cargo/airless, +/area/asteroid/cave) +"Bq" = ( +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"BQ" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"Dn" = ( +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Ee" = ( +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"Eg" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/spawner/ammo/lowcost, +/obj/spawner/gun/cheap/low_chance, +/obj/spawner/ammo/low_cost, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Ej" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/spawner/junkfood/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"EG" = ( +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"EL" = ( +/obj/structure/table/standard, +/obj/spawner/firstaid, +/obj/spawner/medical, +/obj/spawner/medical_lowcost/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"Fh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/random/spareparts, +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"FF" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/floor/asteroid, +/area/asteroid/cave) +"FH" = ( +/obj/machinery/mech_recharger, +/obj/spawner/powercell/low_chance, +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"Ga" = ( +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Hn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"IG" = ( +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Jp" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/spawner/oddities/low_chance, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Km" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"La" = ( +/obj/item/modular_computer/console, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"LU" = ( +/obj/spawner/medical_lowcost/low_chance, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"Mb" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Mk" = ( +/obj/structure/bed/chair/shuttle, +/obj/spawner/gun/cheap/low_chance, +/obj/spawner/ammo/lowcost, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Pp" = ( +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"PO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/spawner/lowkeyrandom, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"Qv" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Rh" = ( +/obj/structure/table/standard, +/obj/spawner/tank, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"RS" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"RW" = ( +/obj/structure/sign/faction/ironhammer, +/turf/wall/reinforced, +/area/asteroid/cave) +"Sy" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/spawner/junk/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Tb" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/spawner/ammo/low_cost, +/obj/spawner/ammo/low_cost, +/obj/spawner/ammo/lowcost, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Vq" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Vt" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"VJ" = ( +/obj/structure/table/standard, +/obj/spawner/credits/low_chance, +/obj/spawner/pack/rare/low_chance, +/obj/machinery/door/window/brigdoor{ + dir = 8 + }, +/obj/spawner/pack/rare/low_chance, +/obj/spawner/pack/rare/low_chance, +/obj/spawner/pack/rare/low_chance, +/obj/spawner/credits/low_chance, +/obj/spawner/credits/low_chance, +/obj/spawner/credits/low_chance, +/obj/spawner/gun/normal/low_chance, +/obj/spawner/gun/normal/low_chance, +/turf/floor/tiled/dark/gray_perforated/airless, +/area/asteroid/cave) +"WC" = ( +/turf/floor/tiled/steel/techfloor/airless, +/area/asteroid/cave) +"WH" = ( +/obj/structure/table/standard, +/obj/spawner/firstaid/low_chance, +/obj/spawner/firstaid/low_chance, +/obj/machinery/light{ + dir = 4 + }, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"Xm" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l" + }, +/turf/floor/asteroid, +/area/asteroid/cave) +"Xv" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"Yj" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/spawner/junkfood/low_chance, +/obj/landmark/corpse/skeleton, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Yp" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"YW" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"YZ" = ( +/obj/machinery/light, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"Zt" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/spawner/lowkeyrandom, +/turf/floor/tiled/steel/orangecorner/airless, +/area/asteroid/cave) +"Zy" = ( +/obj/structure/closet/random/medsupply, +/turf/floor/tiled/white/airless, +/area/asteroid/cave) +"ZY" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) + +(1,1,1) = {" +yP +yP +yP +Vt +oX +Vt +oX +ZY +Mb +zM +Xv +zM +Xv +bi +bi +bi +Xv +zM +Xv +zM +bi +Mb +Mb +oX +"} +(2,1,1) = {" +yP +yP +oX +Vt +Vt +oX +Dn +ZY +ZY +Ga +Xv +EG +Vq +fb +Sy +oL +Rh +EG +Xv +WC +tX +FH +ZY +oX +"} +(3,1,1) = {" +yP +yP +yP +Vt +Xv +Xv +Mb +fe +ZY +mV +Xv +ZY +eg +EG +EG +EG +EG +EG +Xv +RS +eo +bB +Bq +ZY +"} +(4,1,1) = {" +yP +yP +Xv +bi +Xv +by +Xv +Mk +IG +Tb +Xv +ZY +ZY +Qv +ip +Jp +EG +EG +zJ +WC +xz +gN +gQ +FF +"} +(5,1,1) = {" +yP +Xv +Xv +La +Hn +qX +Xv +kc +Ga +Eg +Xv +oX +ZY +aK +aK +aK +xN +YZ +lA +fd +Fh +gN +gQ +Xm +"} +(6,1,1) = {" +Xv +Xv +La +PO +Ga +Ga +Xv +aK +qA +aK +RW +ZY +ZY +Yp +Ej +Zt +EG +BQ +Xv +Xv +Xv +Xv +Xv +Xv +"} +(7,1,1) = {" +bi +La +bG +Ga +np +Ga +dU +EG +EG +EG +EG +EG +BQ +EG +eg +EG +BQ +BQ +bi +oX +oX +Vt +yP +yP +"} +(8,1,1) = {" +Xv +Xv +La +rd +Ga +Ga +Xv +eQ +YW +qL +sN +EG +ip +qL +Jp +sN +EG +BQ +Xv +Xv +Xv +Xv +Xv +Xv +"} +(9,1,1) = {" +yP +Xv +Xv +La +aH +vt +Xv +aK +aK +aK +aK +EG +aK +aK +aK +aK +EG +YZ +iY +EL +Ee +dN +gQ +Xm +"} +(10,1,1) = {" +yP +yP +Xv +bi +Xv +VJ +Xv +fb +oL +Yp +dZ +EG +Yj +Zt +nv +fb +wn +EG +vz +Ee +Pp +Zy +gQ +FF +"} +(11,1,1) = {" +yP +yP +yP +Vt +Xv +Xv +Xv +cW +EG +EG +BQ +eg +EG +ZY +ZY +EG +EG +eg +aK +LU +Ee +ow +gQ +Xm +"} +(12,1,1) = {" +yP +yP +yP +yP +oX +Xv +Xv +Km +Km +ip +Km +WH +qL +ZY +oX +ZY +wU +wU +aK +dI +aw +aJ +Xv +Xv +"} +(13,1,1) = {" +yP +yP +yP +yP +yP +Vt +Xv +Xv +Xv +bi +Xv +Xv +Xv +oX +Vt +oX +Xv +bi +Xv +Xv +Xv +Xv +Xv +Vt +"} diff --git a/maps/submaps/cave_pois/spacewrecks2.dmm b/maps/submaps/cave_pois/spacewrecks2.dmm new file mode 100644 index 00000000000..9ca7d577c6f --- /dev/null +++ b/maps/submaps/cave_pois/spacewrecks2.dmm @@ -0,0 +1,1041 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"aS" = ( +/obj/spawner/material/ore/low_chance, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bo" = ( +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"cQ" = ( +/obj/machinery/door/blast/regular, +/obj/machinery/door/blast/regular, +/turf/floor/asteroid, +/area/asteroid/cave) +"cX" = ( +/obj/structure/lattice, +/obj/effect/gibspawner/robot, +/turf/floor/asteroid, +/area/asteroid/cave) +"dq" = ( +/obj/structure/lattice, +/mob/living/carbon/superior_animal/golem/coal, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"dU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/secure/woodseccrate, +/obj/spawner/tool_upgrade, +/obj/spawner/tool_upgrade, +/obj/spawner/tool_upgrade/rare/low_chance, +/obj/spawner/tool_upgrade/rare/low_chance, +/obj/spawner/tool_upgrade/low_chance, +/obj/spawner/tool_upgrade/low_chance, +/obj/spawner/tool/advanced/low_chance, +/obj/spawner/toolbox, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"ek" = ( +/obj/structure/catwalk, +/mob/living/carbon/superior_animal/golem/coal, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"fh" = ( +/obj/effect/damagedfloor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/mob/living/carbon/superior_animal/golem/coal, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"fA" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/contraband/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"fS" = ( +/obj/effect/decal/cleanable/rubble, +/turf/floor/asteroid, +/area/asteroid/cave) +"hL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/contraband/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"hQ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ore_box, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"iQ" = ( +/obj/effect/damagedfloor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"js" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/mob/living/carbon/superior_animal/golem/iron, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"jt" = ( +/obj/effect/damagedfloor, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"nG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/mob/living/carbon/superior_animal/golem/coal, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"oq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/medical, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost, +/obj/spawner/firstaid/low_chance, +/obj/spawner/firstaid/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"pO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"qW" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"rr" = ( +/mob/living/carbon/superior_animal/golem/coal, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"rU" = ( +/obj/structure/catwalk, +/obj/structure/lattice, +/turf/floor/asteroid, +/area/asteroid/cave) +"tb" = ( +/obj/effect/floor_decal/industrial/warning, +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"tw" = ( +/obj/effect/floor_decal/industrial/warning, +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"uq" = ( +/obj/structure/lattice, +/obj/structure/girder, +/turf/floor/asteroid, +/area/asteroid/cave) +"uB" = ( +/turf/mineral/random, +/area/asteroid/cave) +"uM" = ( +/mob/living/carbon/superior_animal/golem/gold, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"xE" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/contraband/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"yw" = ( +/obj/structure/catwalk, +/obj/effect/gibspawner/robot, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"yB" = ( +/obj/structure/catwalk, +/turf/floor/asteroid, +/area/asteroid/cave) +"yI" = ( +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"zE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"zO" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Ay" = ( +/obj/effect/floor_decal/industrial/warning, +/mob/living/carbon/superior_animal/golem/coal/enhanced, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"Bq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/mob/living/simple_animal/hostile/hivebot, +/obj/machinery/light{ + dir = 1 + }, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"BH" = ( +/obj/structure/lattice, +/turf/floor/asteroid, +/area/asteroid/cave) +"BP" = ( +/obj/effect/damagedfloor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Cr" = ( +/turf/wall, +/area/asteroid/cave) +"CM" = ( +/obj/structure/lattice, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Dv" = ( +/obj/structure/lattice, +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Eb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"Eh" = ( +/obj/effect/decal/cleanable/rubble, +/turf/wall/reinforced, +/area/asteroid/cave) +"EP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"Fr" = ( +/obj/structure/catwalk, +/mob/living/carbon/superior_animal/golem/coal/enhanced, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"FW" = ( +/mob/living/carbon/superior_animal/golem/plasma, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Hm" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/secure/woodseccrate, +/obj/spawner/ammo/lowcost, +/obj/spawner/ammo/lowcost, +/obj/spawner/ammo, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/lowcost/low_chance, +/obj/spawner/ammo/lowcost/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_parts/low_chance, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/gun_upgrade/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"HG" = ( +/obj/machinery/door/blast/regular, +/turf/floor/asteroid, +/area/asteroid/cave) +"Ij" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/largecrate, +/obj/spawner/armor_parts/low_chance, +/obj/spawner/armor_parts/low_chance, +/obj/spawner/powercell/low_chance, +/obj/spawner/powercell/low_chance, +/obj/spawner/rig_module/low_chance, +/obj/spawner/rig/damaged/low_chance, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/powercell/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Ji" = ( +/obj/structure/lattice, +/obj/effect/gibspawner/robot, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Jj" = ( +/turf/floor/asteroid, +/area/asteroid/cave) +"Jt" = ( +/obj/structure/catwalk, +/obj/structure/catwalk, +/turf/floor/asteroid, +/area/asteroid/cave) +"JC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/contraband/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"JY" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Kr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/contraband/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/contraband/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Lk" = ( +/obj/structure/catwalk, +/mob/living/carbon/superior_animal/golem/iron, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Ma" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/contraband/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/contraband/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Mc" = ( +/obj/structure/catwalk, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"MI" = ( +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"NO" = ( +/obj/effect/damagedfloor, +/obj/structure/ore_box, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Oa" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Oo" = ( +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"OT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Pb" = ( +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/asteroid, +/area/asteroid/cave) +"Rg" = ( +/obj/effect/decal/cleanable/rubble, +/turf/wall, +/area/asteroid/cave) +"RP" = ( +/obj/effect/damagedfloor, +/obj/effect/floor_decal/industrial/warning, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"RT" = ( +/obj/effect/decal/cleanable/rubble, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Sf" = ( +/obj/effect/damagedfloor, +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Sm" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Sn" = ( +/obj/structure/catwalk, +/mob/living/carbon/superior_animal/golem/uranium, +/turf/floor/asteroid, +/area/asteroid/cave) +"So" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ore_box, +/obj/spawner/material/ore/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Tf" = ( +/obj/effect/decal/cleanable/rubble, +/obj/spawner/material/ore/low_chance, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"TC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/medical, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost, +/obj/spawner/firstaid/low_chance, +/obj/spawner/firstaid/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"VA" = ( +/obj/effect/decal/cleanable/rubble, +/turf/mineral/random, +/area/asteroid/cave) +"VJ" = ( +/obj/effect/damagedfloor, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"Wb" = ( +/obj/structure/closet/crate{ + opened = 1 + }, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Wd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/steel/monofloor/airless, +/area/asteroid/cave) +"WM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ore_box, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Xp" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"XL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ore_box, +/obj/spawner/material/ore/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"YW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/medical, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost, +/obj/spawner/firstaid/low_chance, +/obj/spawner/firstaid/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/obj/spawner/medical/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Zr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ore_box, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) + +(1,1,1) = {" +uB +Pb +Tf +uB +JY +JY +RT +uB +uB +uB +RT +JY +JY +RT +uB +uB +uB +uB +JY +JY +RT +uB +uB +uB +"} +(2,1,1) = {" +uB +VA +uM +zO +Cr +qW +JY +JY +uB +JY +qW +Cr +Cr +qW +JY +uB +RT +JY +qW +Cr +zO +qW +uB +uB +"} +(3,1,1) = {" +uB +RT +aS +aS +zO +qW +qW +JY +fS +qW +qW +xE +xE +qW +qW +RT +JY +qW +qW +BP +jt +qW +qW +uB +"} +(4,1,1) = {" +RT +Sm +zO +Ji +NO +VJ +Cr +FW +JY +Cr +zE +YW +Hm +tb +Cr +rr +JY +Cr +zE +WM +oq +VJ +Cr +RT +"} +(5,1,1) = {" +JY +Cr +VJ +dU +jt +EP +Cr +JY +JY +Cr +pO +hQ +Kr +EP +Cr +JY +JY +Cr +pO +xE +Ij +ab +Cr +JY +"} +(6,1,1) = {" +JY +Cr +iQ +Zr +JC +ab +Cr +JY +JY +Cr +zE +xE +OT +ab +Cr +JY +JY +Cr +zE +OT +hQ +ab +Cr +JY +"} +(7,1,1) = {" +JY +qW +nG +MI +MI +ab +qW +JY +JY +qW +Wd +MI +yI +ab +qW +JY +JY +qW +Wd +MI +MI +tw +qW +JY +"} +(8,1,1) = {" +JY +qW +qW +HG +HG +qW +qW +JY +JY +qW +qW +HG +HG +qW +qW +JY +JY +qW +qW +HG +HG +qW +qW +JY +"} +(9,1,1) = {" +Jj +zO +Mc +Mc +Mc +Mc +Mc +cX +Sn +Jt +Mc +Mc +Mc +Mc +Fr +Mc +Mc +Mc +Lk +Mc +yw +ek +zO +JY +"} +(10,1,1) = {" +zO +yB +yB +ek +Mc +Mc +Mc +yB +rU +Mc +Mc +Lk +Mc +Mc +Mc +yw +Mc +Mc +Mc +Mc +Mc +yB +yB +BH +"} +(11,1,1) = {" +JY +qW +qW +HG +HG +qW +qW +JY +JY +qW +qW +cQ +HG +qW +qW +JY +JY +qW +qW +HG +zO +qW +qW +JY +"} +(12,1,1) = {" +JY +qW +zE +MI +yI +tb +qW +JY +JY +qW +Eb +MI +MI +tb +qW +JY +JY +qW +fh +cX +jt +zO +Sf +JY +"} +(13,1,1) = {" +JY +Cr +zE +Oa +WM +ab +Cr +JY +rr +Cr +zE +JC +WM +Ay +Cr +FW +JY +Cr +zE +Xp +So +JY +JY +JY +"} +(14,1,1) = {" +JY +Cr +Bq +TC +fA +EP +Cr +JY +JY +Cr +pO +Ij +Ma +RP +Cr +JY +JY +Cr +zO +XL +dq +bo +zO +JY +"} +(15,1,1) = {" +RT +Rg +zE +Ij +Hm +ab +Cr +RT +JY +Cr +js +Zr +jt +zO +Cr +JY +RT +uq +JY +CM +Ij +JY +Cr +JY +"} +(16,1,1) = {" +uB +Eh +qW +hL +OT +qW +qW +uB +JY +qW +qW +jt +dU +JY +uq +JY +uB +JY +bo +bo +zO +qW +qW +JY +"} +(17,1,1) = {" +uB +RT +qW +Cr +Cr +qW +Jj +uB +uB +JY +qW +Cr +Dv +JY +JY +uB +uB +uB +RT +Wb +bo +qW +JY +JY +"} +(18,1,1) = {" +uB +uB +fS +JY +JY +JY +RT +uB +uB +RT +JY +JY +JY +RT +uB +uB +uB +uB +bo +Oo +Oo +JY +JY +JY +"} diff --git a/maps/submaps/cave_pois/spacewrecks3.dmm b/maps/submaps/cave_pois/spacewrecks3.dmm new file mode 100644 index 00000000000..9db9278fa84 --- /dev/null +++ b/maps/submaps/cave_pois/spacewrecks3.dmm @@ -0,0 +1,1021 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/girder, +/turf/floor/plating, +/area/asteroid/cave) +"ab" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"ac" = ( +/obj/machinery/atmospherics/unary/engine, +/turf/floor/plating, +/area/asteroid/cave) +"ad" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1; + icon_state = "heater" + }, +/obj/structure/girder, +/turf/wall/low/with_glass/plasma_reinforced, +/area/asteroid/cave) +"ah" = ( +/obj/machinery/alarm{ + dir = 4; + locked = 0; + pixel_x = -25; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"ai" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/obj/spawner/booze, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"ak" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"al" = ( +/obj/structure/sign/kiddieplaque{ + desc = "A plaque with information regarding this particular lifepod. It reads: 'Armalev Industries Skyfin-E, Exoplanetary Suvival Pod' there's a registry number, and an assigned mothership, but they've both been scratched to illegiblity."; + name = "\improper Lifepod Plaque"; + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"ao" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/tastybread, +/obj/spawner/booze, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"ap" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/open/shower/engineering, +/obj/structure/toilet{ + dir = 8 + }, +/obj/item/mirror{ + pixel_x = 27 + }, +/obj/item/electronics/circuitboard/solar_control, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wall_mounted/firecloset{ + pixel_x = -27 + }, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"ar" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"as" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/power/apc{ + dir = 2; + locked = 0; + name = "south bump"; + operating = 1; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"at" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/smes/buildable{ + charge = 50000; + inputting = 1; + outputting = 1 + }, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"au" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"ax" = ( +/obj/machinery/door/firedoor, +/turf/floor/plating, +/area/asteroid/cave) +"ay" = ( +/turf/wall, +/area/asteroid/cave) +"aB" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aE" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/decal/cleanable/cobweb, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aG" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/danger, +/obj/item/device/scanner/gas, +/obj/item/electronics/circuitboard/unary_atmos/cooler, +/obj/item/electronics/circuitboard/unary_atmos/heater, +/obj/item/tank/oxygen/red, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/item/stack/material/uranium{ + amount = 10 + }, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under/low_chance, +/obj/spawner/junkfood, +/obj/item/trash/liquidfood, +/obj/item/stock_parts/matter_bin/super, +/obj/item/electronics/circuitboard/biogenerator, +/obj/item/bedsheet/orange, +/obj/item/bedsheet/orange, +/obj/item/stock_parts/matter_bin/adv, +/obj/item/stock_parts/micro_laser/ultra, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/stack/material/sandstone{ + amount = 50 + }, +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aH" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aI" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/decal/cleanable/generic, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/open/shower/engineering, +/obj/machinery/shower{ + dir = 8 + }, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/mop, +/obj/effect/decal/cleanable/dirt, +/obj/spawner/junkfood, +/obj/item/trash/liquidfood, +/obj/spawner/cloth/head, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aM" = ( +/obj/machinery/pipedispenser, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/cobweb2, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aR" = ( +/obj/machinery/autolathe, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"aS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/tastybread, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aW" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"aZ" = ( +/obj/landmark/corpse/doctor, +/obj/structure/bed/chair/comfy/black, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark/techfloor, +/area/asteroid/cave) +"bc" = ( +/obj/landmark/corpse/engineer, +/obj/structure/bed/chair/comfy/black, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark/techfloor, +/area/asteroid/cave) +"bd" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/spawner/toy/plushie, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark/techfloor, +/area/asteroid/cave) +"be" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/structure/closet/wall_mounted/firecloset{ + pixel_x = -27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bf" = ( +/obj/landmark/corpse/chef, +/obj/structure/bed/chair/comfy/black, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark/techfloor, +/area/asteroid/cave) +"bh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bi" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bj" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/dirt, +/obj/spawner/booze, +/turf/floor/tiled/dark/techfloor, +/area/asteroid/cave) +"bk" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bm" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/spawner/junkfood, +/obj/item/trash/liquidfood, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bq" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"br" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/microwave, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bu" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/food/condiment/peppermill, +/obj/effect/decal/cleanable/flour, +/obj/spawner/junkfood, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/machinery/reagentgrinder/portable, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bx" = ( +/obj/machinery/alarm{ + dir = 4; + locked = 0; + pixel_x = -25; + pixel_y = 0 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"bB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"bC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"bD" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"bF" = ( +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"bG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"bH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"bI" = ( +/obj/structure/closet/crate, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"bJ" = ( +/obj/machinery/door/airlock/external{ + name = "escape pod airlock" + }, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"bK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bL" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"bM" = ( +/obj/structure/closet, +/obj/spawner/cloth, +/obj/spawner/cloth, +/obj/spawner/cloth, +/obj/spawner/cloth, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/gloves, +/obj/spawner/cloth/gloves, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under/low_chance, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bN" = ( +/obj/machinery/seed_extractor, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"bO" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/steel_reinforced, +/obj/item/device/binoculars, +/obj/effect/decal/cleanable/dirt, +/obj/spawner/junkfood, +/obj/spawner/booze/low_chance, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bP" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"bQ" = ( +/obj/structure/closet, +/obj/spawner/cloth, +/obj/spawner/cloth, +/obj/spawner/cloth, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/gloves/low_chance, +/obj/spawner/cloth/gloves/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under/low_chance, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bR" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/tastybread, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart/low_chance, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bS" = ( +/obj/effect/floor_decal/industrial/danger, +/obj/structure/table/rack, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/space/emergency, +/obj/item/clothing/head/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"bT" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bU" = ( +/obj/structure/closet, +/obj/spawner/cloth, +/obj/spawner/cloth, +/obj/spawner/cloth, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/suit/low_chance, +/obj/spawner/cloth/gloves, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/head/low_chance, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under, +/obj/spawner/cloth/under/low_chance, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"bV" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/space/emergency, +/obj/item/clothing/head/space/emergency, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"bW" = ( +/obj/structure/closet/crate/medical, +/obj/spawner/firstaid, +/obj/spawner/firstaid, +/obj/spawner/firstaid, +/obj/spawner/firstaid, +/obj/spawner/firstaid, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/pill_bottle/bicaridine, +/obj/item/storage/pill_bottle/dylovene, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/storage/pill_bottle/antitox, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"bX" = ( +/obj/structure/closet/crate, +/obj/spawner/gun/cheap, +/obj/spawner/gun/cheap, +/obj/spawner/gun/cheap, +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/device/lighting/toggleable/lantern, +/obj/item/device/lighting/toggleable/lantern, +/obj/item/storage/deferred/lights, +/obj/item/storage/deferred/lights, +/obj/item/storage/deferred/lights, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/spawner/toolbox, +/obj/spawner/toolbox, +/obj/spawner/toolbox, +/obj/spawner/toolbox, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"bY" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/drinks/milk, +/obj/item/reagent_containers/food/drinks/milk, +/obj/item/trash/liquidfood, +/obj/item/trash/liquidfood, +/obj/item/trash/liquidfood, +/obj/item/trash/liquidfood, +/obj/item/tool/knife/butch, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"bZ" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/machinery/light/small, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"ca" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/backpack/industrial, +/obj/item/paper_bin, +/obj/spawner/booze, +/obj/effect/decal/cleanable/dirt, +/obj/item/pen, +/turf/floor/tiled/dark, +/area/asteroid/cave) +"cb" = ( +/obj/spawner/techpart, +/obj/spawner/techpart, +/obj/spawner/techpart, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart/low_chance, +/obj/structure/closet/crate, +/obj/machinery/light/small, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"cc" = ( +/obj/structure/table/steel_reinforced, +/obj/item/tool/multitool, +/obj/item/tool/screwdriver, +/obj/item/cell/small/high, +/obj/item/cell/medium/high, +/obj/item/cell/small, +/obj/item/storage/box/lights, +/obj/item/device/scanner/gas, +/obj/spawner/booze, +/obj/spawner/booze, +/obj/spawner/booze/low_chance, +/obj/item/storage/box/monkeycubes, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/spawner/booze, +/obj/item/pen/blue, +/obj/item/pen, +/obj/item/pen/red, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"cd" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/potatoseed, +/obj/item/seeds/potatoseed, +/obj/item/seeds/wheatseed, +/obj/item/seeds/wheatseed, +/obj/item/seeds/orangeseed, +/obj/item/seeds/orangeseed, +/obj/item/seeds/cornseed, +/obj/item/seeds/cornseed, +/obj/item/tool/hatchet, +/obj/item/reagent_containers/glass/bucket, +/obj/item/tool/minihoe, +/obj/item/plantspray/pests, +/obj/item/plantspray/pests, +/obj/item/plantspray/weeds, +/obj/item/seeds/poppyseed, +/obj/item/seeds/towermycelium, +/obj/item/seeds/glowshroom, +/obj/item/seeds/whitebeetseed, +/obj/item/storage/bag/produce, +/obj/item/seeds/bananaseed, +/turf/floor/tiled/steel/techfloor_grid, +/area/asteroid/cave) +"wr" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/smart, +/area/asteroid/cave) +"zb" = ( +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"OJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/roomba/gun_ba, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) +"WH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/spawner/booze, +/turf/floor/tiled/steel/techfloor, +/area/asteroid/cave) + +(1,1,1) = {" +aa +aa +aa +aa +ab +ab +ab +ab +ab +wr +ab +ab +ab +ab +ab +ab +"} +(2,1,1) = {" +ab +ab +ab +ab +ab +aE +aB +ay +be +ca +bx +bK +ay +bV +bS +ab +"} +(3,1,1) = {" +ac +ad +ah +aq +aC +aF +aN +aS +OJ +bG +bC +bL +bJ +zb +bD +bJ +"} +(4,1,1) = {" +ab +ab +ai +as +ay +aK +bA +ay +aZ +bh +bG +bO +ab +ab +ab +ab +"} +(5,1,1) = {" +ac +ad +aj +ar +ay +aH +bG +ay +bc +bi +bA +bR +ay +bY +bX +ab +"} +(6,1,1) = {" +ab +ab +ak +at +ax +aI +bG +ax +bd +bk +bG +bF +bB +bF +bZ +wr +"} +(7,1,1) = {" +ab +ab +al +aG +ax +aI +bA +ax +bj +bi +bA +bM +ay +bW +cc +ab +"} +(8,1,1) = {" +ac +ad +aj +au +ay +aP +aT +ay +bc +bm +bA +bQ +ay +ay +ay +ab +"} +(9,1,1) = {" +ab +ab +aw +WH +ay +aU +aW +ay +bf +bn +bA +bU +ay +bH +bN +ab +"} +(10,1,1) = {" +ac +ad +ao +aw +aC +aL +aX +aY +bA +bA +bA +bF +bB +bI +cb +wr +"} +(11,1,1) = {" +ab +ab +ap +aJ +ay +aM +aR +ay +bq +bu +br +bT +ay +bP +cd +ab +"} +(12,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +wr +ab +ab +ab +ab +ab +ab +"} diff --git a/maps/submaps/cave_pois/spacewrecks4.dmm b/maps/submaps/cave_pois/spacewrecks4.dmm new file mode 100644 index 00000000000..c8cf1228129 --- /dev/null +++ b/maps/submaps/cave_pois/spacewrecks4.dmm @@ -0,0 +1,1177 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ay" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/shuttle/floor/mining{ + icon_state = "3,20" + }, +/area/asteroid/cave) +"bU" = ( +/obj/landmark/corpse/skeleton/miner, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/device/scanner/mining, +/turf/floor/asteroid, +/area/asteroid/cave) +"cc" = ( +/obj/item/ammo_casing/shotgun/scrap, +/turf/shuttle/floor/mining{ + icon_state = "9,11" + }, +/area/asteroid/cave) +"cu" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/cable, +/obj/structure/catwalk, +/turf/floor/plating/under, +/area/asteroid/cave) +"cJ" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet, +/obj/structure/curtain, +/turf/shuttle/floor/mining{ + icon_state = "7,9" + }, +/area/asteroid/cave) +"dq" = ( +/obj/structure/salvageable/autolathe, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"dD" = ( +/turf/mineral/random, +/area/asteroid/cave) +"dM" = ( +/mob/living/carbon/superior_animal/golem/coal, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"dV" = ( +/obj/item/tool/wrench, +/obj/item/storage/belt/utility, +/turf/floor/asteroid, +/area/asteroid/cave) +"ec" = ( +/obj/structure/table/rack, +/obj/spawner/material/resources, +/obj/spawner/material/resources, +/obj/spawner/material/resources/rare, +/obj/spawner/material/building, +/obj/spawner/material/building, +/obj/spawner/material/building, +/obj/spawner/material/resources/rare, +/obj/spawner/material/building, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"eh" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/shuttle/floor/mining{ + icon_state = "8,7" + }, +/area/asteroid/cave) +"eF" = ( +/mob/living/carbon/superior_animal/golem/iron, +/turf/floor/asteroid, +/area/asteroid/cave) +"eI" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/shuttle/floor/mining{ + icon_state = "5,12" + }, +/area/asteroid/cave) +"fB" = ( +/obj/landmark/corpse/skeleton/miner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"fJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/tiled/techmaint, +/area/asteroid/cave) +"fW" = ( +/obj/structure/salvageable/machine, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/shuttle/floor/mining{ + icon_state = "3,20" + }, +/area/asteroid/cave) +"gk" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet, +/obj/structure/curtain, +/obj/spawner/toy/plushie, +/turf/shuttle/floor/mining{ + icon_state = "6,11" + }, +/area/asteroid/cave) +"gm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/spawner/tool, +/turf/floor/plating/under, +/area/asteroid/cave) +"hO" = ( +/obj/item/ammo_casing/shotgun/scrap/prespawned, +/turf/shuttle/floor/mining{ + icon_state = "9,7" + }, +/area/asteroid/cave) +"hW" = ( +/turf/wall/low/with_glass/smart, +/area/asteroid/cave) +"if" = ( +/turf/wall/low, +/area/asteroid/cave) +"iz" = ( +/turf/shuttle/floor/mining{ + icon_state = "9,11" + }, +/area/asteroid/cave) +"iB" = ( +/obj/structure/salvageable/machine, +/turf/shuttle/floor/mining{ + icon_state = "5,11" + }, +/area/asteroid/cave) +"jj" = ( +/obj/structure/salvageable/machine, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/catwalk, +/turf/floor/plating/under, +/area/asteroid/cave) +"ko" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/shuttle/floor/mining{ + icon_state = "9,7" + }, +/area/asteroid/cave) +"kQ" = ( +/obj/machinery/conveyor/north, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore, +/turf/shuttle/floor/mining{ + icon_state = "7,8" + }, +/area/asteroid/cave) +"lc" = ( +/obj/item/ammo_casing/shotgun/scrap, +/turf/shuttle/floor/mining{ + icon_state = "9,7" + }, +/area/asteroid/cave) +"lw" = ( +/obj/structure/table/steel, +/obj/spawner/booze, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"lQ" = ( +/obj/item/tool/pickaxe, +/turf/floor/asteroid, +/area/asteroid/cave) +"lT" = ( +/obj/structure/closet/random/spareparts, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"mu" = ( +/obj/structure/salvageable/machine, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"my" = ( +/obj/item/material/shard, +/turf/floor/asteroid, +/area/asteroid/cave) +"mS" = ( +/turf/shuttle/floor/mining{ + icon_state = "9,16" + }, +/area/asteroid/cave) +"nE" = ( +/obj/structure/salvageable/machine, +/turf/shuttle/floor/mining{ + icon_state = "7,8" + }, +/area/asteroid/cave) +"ou" = ( +/obj/item/tank/plasma, +/obj/item/tank/plasma, +/obj/item/tank/plasma, +/obj/structure/table/rack, +/obj/spawner/lowkeyrandom, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"oV" = ( +/obj/machinery/door/airlock/mining, +/turf/shuttle/floor/mining{ + icon_state = "3,20" + }, +/area/asteroid/cave) +"pb" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/turf/shuttle/floor/mining{ + icon_state = "5,21" + }, +/area/asteroid/cave) +"pv" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/landmark/corpse/skeleton/miner, +/obj/effect/decal/cleanable/blood/splatter, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/gun/shotgun, +/obj/item/ammo_casing/shotgun/scrap/prespawned, +/turf/shuttle/floor/mining{ + icon_state = "8,7" + }, +/area/asteroid/cave) +"qu" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/turf/shuttle/floor/mining{ + icon_state = "3,20" + }, +/area/asteroid/cave) +"rs" = ( +/turf/shuttle/floor/mining{ + icon_state = "8,6" + }, +/area/asteroid/cave) +"rt" = ( +/obj/item/tool/karl, +/obj/effect/decal/cleanable/blood/splatter, +/turf/shuttle/floor/mining{ + icon_state = "8,11" + }, +/area/asteroid/cave) +"rT" = ( +/obj/item/material/shard/shrapnel/scrap, +/turf/floor/asteroid, +/area/asteroid/cave) +"rU" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/material/metal, +/turf/shuttle/floor/mining{ + icon_state = "8,20" + }, +/area/asteroid/cave) +"so" = ( +/obj/structure/closet/random/miscellaneous, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"sy" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/catwalk, +/obj/item/stack/material/plasma/random, +/turf/floor/plating/under, +/area/asteroid/cave) +"sB" = ( +/obj/spawner/junk/low_chance, +/turf/shuttle/floor/mining{ + icon_state = "3,20" + }, +/area/asteroid/cave) +"sJ" = ( +/obj/structure/salvageable/computer, +/turf/shuttle/floor/mining{ + icon_state = "11,16" + }, +/area/asteroid/cave) +"sY" = ( +/obj/structure/ore_box, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"tJ" = ( +/obj/structure/table/standard, +/obj/item/device/lighting/toggleable/lamp, +/obj/spawner/lowkeyrandom, +/turf/shuttle/floor/mining{ + icon_state = "5,12" + }, +/area/asteroid/cave) +"ua" = ( +/obj/landmark/corpse/skeleton/miner, +/turf/floor/asteroid, +/area/asteroid/cave) +"vf" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/tool/karl, +/turf/shuttle/floor/mining{ + icon_state = "8,7" + }, +/area/asteroid/cave) +"vk" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"vG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external, +/turf/shuttle/floor/mining{ + icon_state = "8,20" + }, +/area/asteroid/cave) +"wP" = ( +/obj/machinery/conveyor/north, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore, +/turf/shuttle/floor/mining{ + icon_state = "7,8" + }, +/area/asteroid/cave) +"wR" = ( +/obj/structure/table/steel, +/obj/structure/salvageable/personal, +/obj/machinery/mineral/processing_unit_console{ + pixel_x = -3; + pixel_y = 27 + }, +/turf/shuttle/floor/mining{ + icon_state = "7,9" + }, +/area/asteroid/cave) +"xc" = ( +/obj/spawner/closet/maintloot, +/turf/shuttle/floor/mining{ + icon_state = "3,20" + }, +/area/asteroid/cave) +"xJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"yp" = ( +/obj/structure/salvageable/machine, +/turf/shuttle/floor/mining{ + icon_state = "7,7" + }, +/area/asteroid/cave) +"yV" = ( +/mob/living/carbon/superior_animal/golem/silver, +/turf/floor/asteroid, +/area/asteroid/cave) +"zE" = ( +/turf/shuttle/floor/mining{ + icon_state = "8,7" + }, +/area/asteroid/cave) +"zF" = ( +/turf/floor/tiled/techmaint, +/area/asteroid/cave) +"zZ" = ( +/obj/structure/fuel_port{ + pixel_y = 32 + }, +/obj/item/tank/plasma, +/turf/floor/asteroid, +/area/asteroid/cave) +"Ah" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/floor/plating/under, +/area/asteroid/cave) +"AC" = ( +/obj/structure/table/steel, +/obj/spawner/toolbox, +/obj/spawner/tool_upgrade/rare/low_chance, +/obj/spawner/tool_upgrade/low_chance, +/obj/spawner/tool_upgrade/low_chance, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"AP" = ( +/turf/shuttle/floor/mining{ + icon_state = "3,20" + }, +/area/asteroid/cave) +"BO" = ( +/mob/living/carbon/superior_animal/golem/gold, +/turf/floor/asteroid, +/area/asteroid/cave) +"Cx" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/floor/plating/under, +/area/asteroid/cave) +"DU" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/door/firedoor, +/turf/shuttle/floor/mining{ + icon_state = "8,20" + }, +/area/asteroid/cave) +"Es" = ( +/obj/machinery/mining/deep_drill, +/turf/floor/asteroid, +/area/asteroid/cave) +"Ez" = ( +/obj/machinery/mech_recharger, +/obj/spawner/exosuit/damaged/low_chance, +/turf/shuttle/floor/mining{ + icon_state = "3,20" + }, +/area/asteroid/cave) +"EY" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/floor/asteroid, +/area/asteroid/cave) +"Gb" = ( +/obj/structure/salvageable/computer, +/turf/shuttle/floor/mining{ + icon_state = "8,9" + }, +/area/asteroid/cave) +"HC" = ( +/obj/structure/closet/secure_closet/personal/miner, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"Jo" = ( +/obj/item/material/shard, +/obj/structure/salvageable/server, +/turf/shuttle/floor/mining{ + icon_state = "5,12" + }, +/area/asteroid/cave) +"Jx" = ( +/obj/structure/closet/random/tech, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"JT" = ( +/obj/structure/table/steel, +/obj/spawner/booze, +/turf/shuttle/floor/mining{ + icon_state = "5,13" + }, +/area/asteroid/cave) +"KK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/shuttle/floor/mining{ + icon_state = "5,19" + }, +/area/asteroid/cave) +"Lo" = ( +/obj/structure/salvageable/data, +/turf/shuttle/floor/mining{ + icon_state = "9,9" + }, +/area/asteroid/cave) +"LM" = ( +/obj/structure/table/steel, +/turf/shuttle/floor/mining{ + icon_state = "5,12" + }, +/area/asteroid/cave) +"Mp" = ( +/obj/effect/floor_decal/asteroid, +/turf/floor/asteroid, +/area/asteroid/cave) +"NX" = ( +/obj/structure/table/rack/shelf, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"Oz" = ( +/obj/structure/table/steel, +/obj/item/device/radio/off, +/turf/shuttle/floor/mining{ + icon_state = "10,7" + }, +/area/asteroid/cave) +"PV" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"Qe" = ( +/obj/structure/closet/crate, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore/low_chance, +/obj/spawner/material/ore, +/obj/spawner/material/ore, +/turf/floor/asteroid, +/area/asteroid/cave) +"QK" = ( +/turf/floor/asteroid, +/area/asteroid/cave) +"QZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/porta_turret/mining/rogue, +/turf/floor/plating/under, +/area/asteroid/cave) +"Rr" = ( +/obj/item/material/shard/shrapnel/scrap, +/turf/shuttle/floor/mining{ + icon_state = "8,11" + }, +/area/asteroid/cave) +"RR" = ( +/obj/item/ammo_casing/shotgun/scrap, +/obj/machinery/porta_turret/mining/rogue, +/turf/shuttle/floor/mining{ + icon_state = "8,14" + }, +/area/asteroid/cave) +"Sx" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/floor/asteroid, +/area/asteroid/cave) +"Sz" = ( +/obj/structure/table/rack, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/spawner/voidsuit/damaged, +/obj/spawner/voidsuit/damaged/low_chance, +/obj/item/clothing/suit/space/void/mining, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"SF" = ( +/obj/item/ammo_casing/shotgun/scrap, +/mob/living/carbon/superior_animal/golem/diamond, +/turf/shuttle/floor/mining{ + icon_state = "8,7" + }, +/area/asteroid/cave) +"Tj" = ( +/mob/living/carbon/superior_animal/golem/coal, +/turf/floor/asteroid, +/area/asteroid/cave) +"Tt" = ( +/obj/item/trash/material/metal, +/turf/shuttle/floor/mining{ + icon_state = "8,7" + }, +/area/asteroid/cave) +"UJ" = ( +/turf/wall, +/area/asteroid/cave) +"VE" = ( +/obj/item/tool/karl, +/turf/floor/asteroid, +/area/asteroid/cave) +"Wt" = ( +/obj/item/material/shard, +/turf/shuttle/floor/mining{ + icon_state = "10,19" + }, +/area/asteroid/cave) +"Wz" = ( +/obj/spawner/junk/low_chance, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/tiled/techmaint, +/area/asteroid/cave) +"WE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/shuttle/floor/mining{ + icon_state = "9,7" + }, +/area/asteroid/cave) +"XU" = ( +/obj/landmark/corpse/skeleton/miner, +/obj/effect/decal/cleanable/blood/splatter, +/obj/spawner/gun/cheap, +/obj/spawner/gun_upgrade/low_chance, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"XW" = ( +/turf/shuttle/floor/mining{ + icon_state = "9,6" + }, +/area/asteroid/cave) +"XX" = ( +/obj/structure/table/rack, +/obj/spawner/tank, +/obj/spawner/tank, +/obj/spawner/tank, +/obj/spawner/tank, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"Yl" = ( +/obj/structure/table/rack, +/obj/spawner/ammo/shotgun/low_chance, +/obj/spawner/ammo/shotgun/low_chance, +/obj/spawner/ammo/shotgun, +/obj/spawner/lowkeyrandom, +/turf/shuttle/floor/mining{ + icon_state = "3,20" + }, +/area/asteroid/cave) +"Yw" = ( +/turf/shuttle/floor/mining{ + icon_state = "9,7" + }, +/area/asteroid/cave) +"ZH" = ( +/obj/structure/table/steel, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"ZK" = ( +/obj/structure/table/rack/shelf, +/obj/spawner/pouch, +/obj/spawner/pouch/low_chance, +/obj/spawner/cloth/backpack, +/obj/spawner/cloth/backpack, +/obj/item/clothing/under/rank/miner, +/obj/item/clothing/under/rank/miner, +/obj/item/clothing/under/rank/miner, +/turf/shuttle/floor/mining{ + icon_state = "8,10" + }, +/area/asteroid/cave) +"ZN" = ( +/obj/structure/shuttle/engine/heater, +/turf/floor/tiled/techmaint, +/area/asteroid/cave) +"ZP" = ( +/obj/landmark/corpse/skeleton/miner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/shuttle/floor/mining{ + icon_state = "9,7" + }, +/area/asteroid/cave) +"ZU" = ( +/obj/spawner/junk/low_chance, +/turf/floor/tiled/techmaint, +/area/asteroid/cave) + +(1,1,1) = {" +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +QK +QK +QK +QK +QK +Tj +QK +QK +QK +QK +"} +(2,1,1) = {" +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +Mp +QK +QK +QK +QK +QK +PV +PV +PV +PV +QK +QK +QK +"} +(3,1,1) = {" +dD +dD +dD +dD +Mp +Mp +dD +dD +Mp +QK +QK +QK +QK +QK +QK +PV +PV +ou +lT +PV +PV +QK +QK +"} +(4,1,1) = {" +dD +dD +dD +dD +Mp +BO +QK +QK +QK +QK +PV +PV +hW +PV +PV +PV +fW +Cx +Cx +cu +EY +QK +QK +"} +(5,1,1) = {" +dD +dD +Mp +Tj +QK +QK +my +QK +QK +UJ +UJ +so +tJ +so +HC +UJ +UJ +fJ +ZU +ZN +EY +QK +QK +"} +(6,1,1) = {" +QK +QK +QK +PV +PV +PV +if +PV +UJ +UJ +Yl +AP +AP +sB +AP +sB +oV +ZU +Ez +PV +PV +QK +QK +"} +(7,1,1) = {" +Mp +QK +PV +PV +JT +Jo +eI +LM +iB +UJ +UJ +oV +UJ +UJ +cJ +gk +PV +PV +PV +PV +QK +eF +QK +"} +(8,1,1) = {" +dD +QK +PV +ZH +pb +vk +Wt +fB +KK +ec +UJ +ay +XX +UJ +UJ +UJ +PV +zZ +Tj +QK +QK +bU +VE +"} +(9,1,1) = {" +dD +Mp +hW +Gb +pv +eh +SF +vf +zE +rs +qu +RR +Tt +rt +DU +Rr +rU +rT +QK +Sx +Es +QK +QK +"} +(10,1,1) = {" +Mp +yV +hW +Lo +WE +hO +Yw +lc +ko +XW +AP +mS +ZP +cc +vG +iz +DU +QK +ua +Qe +QK +dV +QK +"} +(11,1,1) = {" +QK +QK +PV +lw +Oz +sY +XU +dM +sJ +mu +UJ +AP +Sz +UJ +UJ +UJ +PV +lQ +QK +QK +Tj +Sx +QK +"} +(12,1,1) = {" +Mp +QK +PV +PV +wR +nE +kQ +wP +yp +UJ +UJ +oV +UJ +UJ +AC +dq +PV +PV +PV +PV +QK +QK +QK +"} +(13,1,1) = {" +dD +QK +QK +PV +PV +PV +hW +PV +UJ +UJ +NX +AP +AP +sB +AP +AP +oV +zF +sy +PV +PV +QK +QK +"} +(14,1,1) = {" +dD +dD +Mp +QK +QK +QK +QK +QK +QK +UJ +UJ +ZK +xc +sY +sY +UJ +UJ +Wz +QZ +ZN +EY +QK +QK +"} +(15,1,1) = {" +dD +dD +dD +dD +dD +Mp +QK +eF +QK +QK +PV +PV +hW +PV +PV +PV +jj +Ah +gm +ZN +EY +QK +QK +"} +(16,1,1) = {" +dD +dD +dD +dD +dD +dD +dD +dD +dD +Mp +QK +QK +QK +Tj +QK +PV +PV +xJ +Jx +PV +PV +QK +QK +"} +(17,1,1) = {" +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +QK +QK +QK +PV +PV +PV +PV +Tj +QK +QK +"} +(18,1,1) = {" +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +dD +QK +QK +QK +QK +QK +QK +QK +QK +QK +"} diff --git a/maps/submaps/cave_pois/spacewrecks5.dmm b/maps/submaps/cave_pois/spacewrecks5.dmm new file mode 100644 index 00000000000..0f784016748 --- /dev/null +++ b/maps/submaps/cave_pois/spacewrecks5.dmm @@ -0,0 +1,1528 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/light/small, +/obj/effect/damagedfloor, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"ag" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"aG" = ( +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"aJ" = ( +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"aK" = ( +/obj/structure/salvageable/machine, +/obj/effect/damagedfloor, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"bp" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"bx" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"bI" = ( +/obj/landmark/corpse/skeleton/maint, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"cb" = ( +/obj/effect/damagedfloor, +/turf/floor/plating/airless, +/area/asteroid/cave) +"cm" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"cQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Crew Quarters" + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"dq" = ( +/obj/spawner/exosuit/damaged/low_chance, +/obj/spawner/exosuit_equipment/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"dD" = ( +/obj/machinery/door/blast/regular, +/turf/floor/plating/airless, +/area/asteroid/cave) +"fh" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/reagent_containers/food/snacks/tastybread, +/obj/item/reagent_containers/food/snacks/tastybread, +/obj/item/reagent_containers/food/snacks/tastybread, +/obj/item/reagent_containers/food/snacks/tastybread, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"fj" = ( +/obj/effect/decal/cleanable/rubble, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"fn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"fs" = ( +/obj/structure/table/standard, +/obj/item/tool/wrench, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"fA" = ( +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"fW" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/damagedfloor, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"gq" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/reinforced, +/turf/floor/plating/airless, +/area/asteroid/cave) +"gx" = ( +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom, +/obj/spawner/contraband/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"gC" = ( +/obj/structure/table/standard, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"gU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"hc" = ( +/obj/structure/table/standard, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/machinery/recharger, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"hG" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/tool/multitool{ + pixel_x = 7; + pixel_y = -4 + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"hY" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/effect/damagedfloor, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"ip" = ( +/mob/living/simple_animal/hostile/retaliate/malf_drone, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"iA" = ( +/obj/spawner/closet/maintloot/beacon, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"iO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"jg" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"ji" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"ju" = ( +/obj/structure/closet/crate/serbcrate_gray, +/obj/item/ammo_magazine/sllrifle, +/obj/item/ammo_magazine/ammobox/lrifle_small, +/obj/item/clothing/head/armor/steelpot, +/obj/item/clothing/suit/storage/greatcoat/serbian_overcoat, +/obj/item/gun/projectile/automatic/modular/bolt/serbian/finished, +/obj/item/ammo_magazine/sllrifle, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"jv" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/fire, +/obj/item/reagent_containers/syringe, +/obj/spawner/firstaid/low_chance, +/obj/spawner/firstaid/low_chance, +/obj/spawner/firstaid/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"jT" = ( +/obj/spawner/gun/normal/low_chance, +/obj/structure/closet/crate/secure/weapon, +/obj/spawner/gun_parts, +/obj/spawner/gun_parts, +/obj/spawner/gun_parts, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/gun_upgrade/low_chance, +/obj/spawner/gun/cheap, +/obj/spawner/gun/energy_cheap, +/obj/spawner/gun_upgrade/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"kD" = ( +/obj/machinery/door/airlock{ + name = "Cabin 1" + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"kZ" = ( +/obj/structure/salvageable/autolathe, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"lk" = ( +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"lz" = ( +/turf/floor/tiled/airless, +/area/asteroid/cave) +"lK" = ( +/obj/effect/decal/cleanable/blood, +/obj/landmark/corpse/skeleton/maint, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"mA" = ( +/obj/structure/table/standard, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"mM" = ( +/obj/structure/bed/chair, +/obj/item/material/shard, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"mQ" = ( +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/damagedfloor, +/turf/floor/tiled/cafe, +/area/asteroid/cave) +"mW" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"nG" = ( +/obj/effect/damagedfloor, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"on" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"oz" = ( +/obj/spawner/scrap/dense, +/turf/floor/plating/airless, +/area/asteroid/cave) +"oC" = ( +/obj/effect/damagedfloor, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"oS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics" + }, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"pw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/floor/plating/airless, +/area/asteroid/cave) +"pB" = ( +/turf/wall/reinforced, +/area/asteroid/cave) +"qi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Bridge" + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"qO" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/cans/cola{ + pixel_x = 6 + }, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"qW" = ( +/obj/structure/salvageable/machine, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"sf" = ( +/obj/spawner/scrap, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"si" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/utility, +/obj/spawner/pack/tech_loot, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"st" = ( +/obj/spawner/closet/low_chance, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"sx" = ( +/turf/mineral/random, +/area/asteroid/cave) +"sI" = ( +/obj/spawner/closet/maintloot, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"sR" = ( +/obj/structure/table/standard, +/obj/spawner/toolbox/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"sS" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"tC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/damagedfloor, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"tG" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/rack/shelf, +/obj/spawner/techpart, +/obj/spawner/techpart, +/obj/spawner/techpart, +/obj/spawner/pack/tech_loot, +/obj/spawner/pack/tech_loot, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"tH" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 15 + }, +/obj/item/soap, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"uP" = ( +/obj/effect/damagedfloor, +/obj/effect/damagedfloor, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"vi" = ( +/obj/spawner/closet/maintloot, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"vr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/freezer, +/obj/spawner/pizza/low_chance, +/obj/spawner/soda/low_chance, +/obj/spawner/soda/low_chance, +/obj/spawner/junkfood/rotten, +/obj/spawner/junkfood/rotten, +/obj/spawner/junkfood/rotten, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"vM" = ( +/obj/effect/damagedfloor, +/obj/landmark/corpse/skeleton/maint, +/obj/effect/decal/cleanable/blood, +/obj/spawner/gun/cheap, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"wO" = ( +/obj/structure/salvageable/computer, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"xb" = ( +/obj/effect/decal/cleanable/blood, +/obj/landmark/corpse/skeleton/maint, +/obj/effect/damagedfloor, +/obj/effect/damagedfloor, +/turf/floor/tiled/cafe, +/area/asteroid/cave) +"xj" = ( +/obj/machinery/door/firedoor, +/obj/item/material/shard, +/turf/wall/low, +/area/asteroid/cave) +"xm" = ( +/obj/structure/lattice, +/obj/structure/girder, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"xw" = ( +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/structure/closet/crate/secure/woodseccrate, +/obj/spawner/lathe_disk/advanced/low_chance, +/obj/spawner/techpart, +/obj/spawner/techpart, +/obj/spawner/techpart, +/obj/spawner/tool_upgrade/rare/low_chance, +/obj/spawner/pack/tech_loot, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"xW" = ( +/obj/effect/decal/cleanable/blood, +/obj/spawner/closet/maintloot/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Am" = ( +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"Az" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/storage/toolbox/emergency{ + pixel_x = -12 + }, +/obj/item/tool/wrench{ + pixel_x = -12 + }, +/obj/effect/damagedfloor, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"AQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Cd" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering" + }, +/turf/floor/plating/airless, +/area/asteroid/cave) +"Cf" = ( +/obj/structure/bed/chair, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"CM" = ( +/obj/structure/lattice, +/turf/wall/untinted/onestar_reinforced, +/area/asteroid/cave) +"CN" = ( +/obj/machinery/door/airlock/external, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"CS" = ( +/obj/machinery/space_heater, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"Dg" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/turf/floor/tiled/cafe, +/area/asteroid/cave) +"DD" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/landmark/corpse/skeleton/maint, +/obj/effect/decal/cleanable/blood, +/obj/item/material/shard, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Ec" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Ej" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/lights/mixed, +/obj/spawner/contraband/low_chance, +/obj/item/storage/box/lights/mixed, +/obj/spawner/contraband/low_chance, +/obj/spawner/contraband/low_chance, +/obj/spawner/techpart, +/obj/spawner/techpart, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"Gl" = ( +/mob/living/simple_animal/hostile/retaliate/malf_drone, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"Gm" = ( +/obj/item/material/shard, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Go" = ( +/obj/spawner/scrap, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"GO" = ( +/mob/living/simple_animal/hostile/roomba/slayer, +/obj/effect/decal/cleanable/blood, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"GR" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"GZ" = ( +/obj/structure/table/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/spawner/tool/advanced/low_chance, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"Hu" = ( +/obj/machinery/door/airlock/external, +/turf/floor/plating/airless, +/area/asteroid/cave) +"HF" = ( +/turf/floor/plating/airless, +/area/asteroid/cave) +"HJ" = ( +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Id" = ( +/obj/structure/table/rack, +/obj/item/storage/box/lights/bulbs, +/obj/item/stack/cable_coil{ + pixel_x = 2 + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"IE" = ( +/obj/effect/decal/cleanable/rubble, +/obj/effect/decal/cleanable/rubble, +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"IG" = ( +/obj/structure/salvageable/machine, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"IL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/material/shard, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Jb" = ( +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"JO" = ( +/obj/structure/closet/crate, +/obj/machinery/power/apc{ + cell_type = null; + name = "South APC"; + pixel_y = -28 + }, +/obj/item/stack/material/plasma/random, +/obj/structure/cable/yellow, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"JP" = ( +/obj/effect/damagedfloor, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"JT" = ( +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom, +/obj/spawner/contraband/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"KS" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/floor/plating/airless, +/area/asteroid/cave) +"KY" = ( +/turf/floor/asteroid/cave, +/area/asteroid/cave) +"Mt" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/breath, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"Mu" = ( +/mob/living/simple_animal/hostile/roomba/boomba, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Ng" = ( +/obj/structure/closet/crate{ + name = "food crate" + }, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Nx" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"NJ" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/item/tool/wrench, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"NO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"Ox" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"PM" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"PV" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/stack/cable_coil, +/obj/item/tool/multitool, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"PX" = ( +/obj/structure/closet/crate, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom/low_chance, +/obj/spawner/lowkeyrandom, +/obj/spawner/contraband/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Qk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Qm" = ( +/obj/spawner/closet/maintloot/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"Qy" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -4 + }, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/item/storage/photo_album{ + pixel_x = 14 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"QB" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/landmark/corpse/skeleton/maint, +/obj/spawner/gun/energy_cheap, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"QL" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/damagedfloor, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"QW" = ( +/obj/item/material/shard, +/obj/effect/damagedfloor, +/turf/floor/tiled/cafe, +/area/asteroid/cave) +"Rc" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/toilet{ + dir = 1 + }, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Rg" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/breath, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"Rv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"RH" = ( +/mob/living/simple_animal/hostile/retaliate/malf_drone, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"RI" = ( +/obj/spawner/closet/maintloot/low_chance, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"RK" = ( +/obj/spawner/closet/maintloot/low_chance, +/obj/effect/decal/cleanable/blood, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"RW" = ( +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/effect/damagedfloor, +/turf/floor/tiled/cafe, +/area/asteroid/cave) +"RY" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc{ + cell_type = null; + dir = 1; + name = "North APC"; + pixel_y = 28 + }, +/obj/item/storage/box/donkpockets, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Sd" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/bottle/tequilla{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Sm" = ( +/obj/structure/salvageable/computer, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"Sy" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Sz" = ( +/obj/effect/decal/cleanable/blood, +/obj/landmark/corpse/skeleton/maint, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"SH" = ( +/obj/structure/dispenser/oxygen, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"Ts" = ( +/obj/machinery/door/airlock{ + name = "Cabin 2" + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"Tx" = ( +/turf/wall/low/with_glass/reinforced, +/turf/floor/plating/airless, +/area/asteroid/cave) +"TX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Ua" = ( +/turf/floor/tiled/cafe, +/area/asteroid/cave) +"Ui" = ( +/obj/structure/table/rack, +/obj/item/storage/bag/trash{ + pixel_x = 6 + }, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"UD" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + layer = 2.6; + name = "Breach Pod Door"; + opacity = 0; + dir = 4 + }, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"UM" = ( +/obj/machinery/washing_machine, +/turf/floor/tiled/cafe, +/area/asteroid/cave) +"UW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/floor/tiled/techmaint/airless, +/area/asteroid/cave) +"Vp" = ( +/obj/structure/closet/wardrobe, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Vu" = ( +/obj/effect/damagedfloor, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"VT" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/salvageable/machine, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"Wn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"Xx" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/floor/tiled/airless, +/area/asteroid/cave) +"XN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/storage/belt/utility, +/obj/spawner/pouch/low_chance, +/obj/spawner/lowkeyrandom, +/obj/spawner/lowkeyrandom, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"Yc" = ( +/obj/machinery/power/os_turret, +/turf/floor/tiled/derelict/white_red_edges/airless, +/area/asteroid/cave) +"Yn" = ( +/obj/landmark/corpse/skeleton/maint, +/obj/effect/decal/cleanable/blood, +/obj/spawner/gun/cheap, +/turf/floor/plating/under/airless, +/area/asteroid/cave) +"YJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/spawner/oddities/low_chance, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"YT" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/welding, +/turf/floor/tiled/dark/airless, +/area/asteroid/cave) +"ZJ" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/floor/plating/under/airless, +/area/asteroid/cave) + +(1,1,1) = {" +sx +sx +KY +pB +KS +KS +pB +KY +fj +sx +sx +sx +sx +fj +pB +KS +KS +pB +KY +"} +(2,1,1) = {" +sx +fj +pB +pB +pw +pw +pB +pB +KY +KY +fj +sx +KY +pB +pB +pw +pw +pB +pB +"} +(3,1,1) = {" +fj +KY +pB +ag +Go +lk +sf +pB +KY +pB +CN +pB +KY +pB +IG +ZJ +Jb +NJ +pB +"} +(4,1,1) = {" +sx +KY +pB +qW +Sz +Nx +sR +pB +Tx +pB +Jb +pB +Tx +pB +PV +Gl +lk +Ej +pB +"} +(5,1,1) = {" +sx +fj +pB +pB +Qm +bx +kZ +pB +cm +pB +CN +pB +vi +pB +tG +UW +JO +pB +pB +"} +(6,1,1) = {" +sx +sx +KY +Tx +Qm +lk +lk +Cd +aG +aG +aG +aG +aG +Cd +lk +lk +wO +Tx +KY +"} +(7,1,1) = {" +sx +sx +KY +pB +pB +oz +pB +pB +XN +fs +CS +ji +GZ +pB +pB +Hu +pB +pB +KY +"} +(8,1,1) = {" +sx +fj +pB +pB +bp +lk +YT +pB +pB +gq +gq +gq +pB +pB +Ui +aG +iO +pB +pB +"} +(9,1,1) = {" +fj +KY +dD +jg +Ng +Mu +Nx +Rg +dq +Go +aG +xw +RI +JT +Mu +oC +lk +sI +dD +"} +(10,1,1) = {" +KY +Am +Am +CM +CM +jg +Yn +RK +fh +lk +oC +lk +HJ +jT +Go +oC +RI +sS +dD +"} +(11,1,1) = {" +KY +Ec +Am +Yc +UD +jg +aG +uP +oC +ip +aG +lK +QL +aG +JP +bI +lk +lk +dD +"} +(12,1,1) = {" +KY +Am +Am +Am +Am +oC +lk +ju +fA +Gm +vM +xW +lk +RI +fA +JP +RI +jv +dD +"} +(13,1,1) = {" +fj +KY +dD +RI +jg +lk +PX +Mu +RI +gx +aG +GO +Go +aJ +lk +aG +Go +sI +dD +"} +(14,1,1) = {" +sx +fj +pB +pB +st +lk +Id +pB +pB +gq +xj +gq +pB +pB +Mt +aG +SH +pB +pB +"} +(15,1,1) = {" +sx +sx +KY +pB +pB +NO +pB +pB +Xx +mM +qO +AQ +mA +pB +pB +NO +pB +pB +KY +"} +(16,1,1) = {" +sx +sx +KY +Tx +GR +oC +si +pB +RY +Cf +Ox +DD +Sd +pB +hG +oC +GR +Tx +KY +"} +(17,1,1) = {" +sx +KY +pB +pB +pB +tC +oC +Rv +lz +lz +RH +PM +lz +Rv +oC +aa +pB +pB +pB +"} +(18,1,1) = {" +fj +KY +jg +cb +HF +aG +vi +pB +st +TX +IL +gU +st +pB +st +aG +Hu +cb +cb +"} +(19,1,1) = {" +sx +fj +pB +pB +pB +cQ +pB +pB +pB +pB +qi +pB +pB +pB +pB +Wn +pB +pB +pB +"} +(20,1,1) = {" +sx +KY +pB +iA +pB +Vu +pB +tH +pB +Qy +mW +gC +pB +vr +Ua +RW +QW +Qk +xm +"} +(21,1,1) = {" +KY +KY +Tx +YJ +kD +Vu +Sy +Rc +pB +hc +oC +Az +pB +vr +mQ +xb +nG +jg +KY +"} +(22,1,1) = {" +fj +KY +pB +pB +pB +lz +pB +pB +pB +QB +hY +on +pB +pB +pB +oS +pB +xm +KY +"} +(23,1,1) = {" +sx +KY +Tx +fn +Ts +lz +Dg +pB +Tx +Sm +Sm +Sm +Tx +pB +VT +lk +jg +KY +KY +"} +(24,1,1) = {" +sx +fj +pB +iA +pB +Vu +UM +pB +Tx +Tx +Tx +Tx +Tx +pB +fW +lk +lk +jg +KY +"} +(25,1,1) = {" +sx +sx +pB +pB +pB +Vp +pB +pB +KY +sx +sx +fj +KY +pB +pB +aK +jg +KY +fj +"} +(26,1,1) = {" +sx +sx +fj +pB +pB +pB +pB +fj +sx +sx +sx +sx +fj +KY +pB +xm +KY +IE +fj +"} diff --git a/maps/submaps/cave_pois/spacewrecks6.dmm b/maps/submaps/cave_pois/spacewrecks6.dmm new file mode 100644 index 00000000000..393e1ce7280 --- /dev/null +++ b/maps/submaps/cave_pois/spacewrecks6.dmm @@ -0,0 +1,1264 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ar" = ( +/obj/item/stack/cable_coil, +/obj/structure/table/standard, +/obj/spawner/pack/tech_loot, +/turf/floor/tiled/techmaint/airless, +/area/space) +"aJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/tiled/dark/airless, +/area/space) +"aL" = ( +/obj/structure/table/standard, +/obj/structure/barricade, +/turf/floor/tiled/airless, +/area/space) +"bF" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/item/tool/wrench, +/turf/floor/tiled/techmaint/airless, +/area/space) +"cy" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"cN" = ( +/obj/structure/table/standard, +/obj/spawner/firstaid/low_chance, +/obj/spawner/firstaid, +/obj/spawner/medical/low_chance, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost, +/obj/spawner/medical_lowcost, +/obj/spawner/medical/low_chance, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"cT" = ( +/obj/structure/sign/signnew/explosives, +/turf/wall/reinforced, +/area/space) +"dU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/spawner/medical_lowcost, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"dW" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"eo" = ( +/obj/structure/salvageable/autolathe, +/turf/floor/tiled/airless, +/area/space) +"eC" = ( +/turf/floor/tiled/airless, +/area/space) +"eD" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/tiled/airless, +/area/space) +"eX" = ( +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/airless, +/area/space) +"eZ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/floor/tiled/dark/airless, +/area/space) +"fh" = ( +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/space) +"fp" = ( +/obj/item/storage/wallet/random, +/obj/spawner/closet/maintloot, +/turf/floor/tiled/airless, +/area/space) +"ga" = ( +/obj/machinery/door/firedoor, +/obj/item/trash/material/metal, +/turf/floor/tiled/airless, +/area/space) +"gu" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/floor/asteroid/cave, +/area/space) +"gG" = ( +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/table/standard, +/obj/item/cell/medium/high, +/turf/floor/tiled/techmaint/airless, +/area/space) +"gK" = ( +/obj/structure/salvageable/data, +/turf/floor/plating/under/airless, +/area/space) +"gM" = ( +/turf/floor/tiled/techmaint/airless, +/area/space) +"hC" = ( +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/techmaint/airless, +/area/space) +"hI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/floor/asteroid/cave, +/area/space) +"hJ" = ( +/obj/effect/damagedfloor, +/obj/effect/damagedfloor, +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/airless, +/area/space) +"hN" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/item/clothing/head/welding{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/structure/table/standard, +/turf/floor/tiled/techmaint/airless, +/area/space) +"hX" = ( +/obj/effect/damagedfloor, +/turf/floor/tiled/techmaint/airless, +/area/space) +"jm" = ( +/obj/effect/damagedfloor, +/obj/effect/damagedfloor, +/turf/floor/tiled/airless, +/area/space) +"jy" = ( +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/tiled/airless, +/area/space) +"jX" = ( +/obj/machinery/light/small, +/obj/effect/damagedfloor, +/turf/floor/tiled/techmaint/airless, +/area/space) +"kG" = ( +/obj/spawner/ammo/lowcost, +/obj/spawner/ammo/lowcost, +/obj/spawner/ammo/lowcost, +/obj/structure/closet/crate, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/turf/floor/tiled/airless, +/area/space) +"lz" = ( +/obj/machinery/optable, +/obj/landmark/corpse/skeleton/fortress, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"lA" = ( +/obj/machinery/conveyor/southeast, +/turf/floor/tiled/airless, +/area/space) +"lZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/syringe, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"ma" = ( +/turf/floor/plating/under/airless, +/area/space) +"mn" = ( +/obj/item/material/shard, +/turf/floor/asteroid/cave, +/area/space) +"mu" = ( +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/table/standard, +/turf/floor/tiled/dark/airless, +/area/space) +"nh" = ( +/obj/landmark/corpse/skeleton/fortress, +/obj/effect/decal/cleanable/blood, +/obj/spawner/gun/energy_cheap, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"np" = ( +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/asteroid/cave, +/area/space) +"nI" = ( +/obj/machinery/door/airlock/external{ + name = "E.V.A Access" + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/techmaint/airless, +/area/space) +"oH" = ( +/obj/structure/closet/secure_closet/rare_loot, +/obj/machinery/door/window/brigdoor, +/turf/floor/reinforced/airless, +/area/space) +"pj" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/floor/tiled/dark/airless, +/area/space) +"pk" = ( +/turf/wall/reinforced, +/area/space) +"pv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/floor/asteroid/cave, +/area/space) +"rk" = ( +/turf/wall/low/with_glass/reinforced, +/turf/floor/plating, +/area/space) +"rJ" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay Storage" + }, +/turf/floor/tiled/techmaint/airless, +/area/space) +"sq" = ( +/obj/machinery/door/airlock/external, +/turf/floor/tiled/techmaint/airless, +/area/space) +"th" = ( +/obj/effect/damagedfloor, +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/tiled/airless, +/area/space) +"tU" = ( +/obj/structure/table/rack, +/obj/spawner/lowkeyrandom, +/obj/spawner/tank, +/obj/spawner/tank, +/turf/floor/tiled/techmaint/airless, +/area/space) +"uf" = ( +/obj/spawner/closet/maintloot, +/turf/floor/tiled/airless, +/area/space) +"uh" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering" + }, +/turf/floor/tiled/techmaint/airless, +/area/space) +"uo" = ( +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/storage/surgical_apron, +/obj/structure/table/standard, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"uv" = ( +/obj/effect/damagedfloor, +/obj/spawner/scrap, +/turf/floor/tiled/airless, +/area/space) +"ux" = ( +/obj/structure/salvageable/computer, +/turf/floor/tiled/dark/airless, +/area/space) +"uF" = ( +/obj/effect/damagedfloor, +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/techmaint/airless, +/area/space) +"uI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/floor/tiled/techmaint/airless, +/area/space) +"uV" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/floor/tiled/dark/airless, +/area/space) +"uX" = ( +/obj/machinery/conveyor/south, +/obj/item/ammo_casing/rocket/scrap, +/turf/floor/tiled/airless, +/area/space) +"vd" = ( +/obj/effect/damagedfloor, +/turf/floor/tiled/airless, +/area/space) +"vf" = ( +/obj/spawner/junk, +/turf/mineral/random, +/area/space) +"vK" = ( +/turf/wall/low, +/area/space) +"wl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/airless, +/area/space) +"wZ" = ( +/obj/structure/table/rack/shelf, +/obj/item/ammo_casing/rocket/thermo, +/obj/spawner/ammo/lowcost, +/turf/floor/tiled/airless, +/area/space) +"xa" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/floor/tiled/airless, +/area/space) +"xF" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/airless, +/area/space) +"yx" = ( +/obj/item/material/shard, +/obj/effect/damagedfloor, +/turf/floor/tiled/airless, +/area/space) +"zc" = ( +/obj/machinery/door/airlock/external{ + name = "E.V.A Access" + }, +/turf/floor/tiled/techmaint/airless, +/area/space) +"zj" = ( +/obj/structure/salvageable/machine, +/turf/floor/tiled/airless, +/area/space) +"zO" = ( +/obj/structure/table/standard, +/turf/floor/tiled/airless, +/area/space) +"Aq" = ( +/obj/effect/floor_decal/asteroid, +/turf/floor/asteroid/cave, +/area/space) +"AW" = ( +/obj/item/tool/wrench, +/obj/structure/table/standard, +/obj/spawner/gun_parts, +/obj/spawner/gun_parts, +/obj/spawner/gun_parts, +/turf/floor/tiled/techmaint/airless, +/area/space) +"Bs" = ( +/obj/landmark/corpse/skeleton/fortress, +/obj/effect/decal/cleanable/blood, +/obj/spawner/ammo/lowcost, +/turf/floor/tiled/airless, +/area/space) +"Bu" = ( +/obj/structure/salvageable/autolathe, +/turf/floor/tiled/cafe, +/area/space) +"Cd" = ( +/obj/spawner/gun/cheap, +/turf/floor/tiled/airless, +/area/space) +"Co" = ( +/obj/spawner/closet/maintloot, +/obj/effect/damagedfloor, +/turf/floor/tiled/techmaint/airless, +/area/space) +"CH" = ( +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/space) +"Dn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/airless, +/area/space) +"Dt" = ( +/obj/structure/closet/emcloset, +/obj/effect/damagedfloor, +/turf/floor/tiled/techmaint/airless, +/area/space) +"DM" = ( +/obj/landmark/corpse/skeleton/fortress, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"Ek" = ( +/obj/machinery/door/airlock{ + name = "Cabin 2" + }, +/turf/floor/wood, +/area/space) +"Fa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/damagedfloor, +/turf/floor/tiled/airless, +/area/space) +"Fg" = ( +/obj/effect/damagedfloor, +/mob/living/simple_animal/hostile/hivebot, +/turf/floor/tiled/airless, +/area/space) +"Fs" = ( +/obj/item/mine/old/armed, +/obj/item/trash/material/metal, +/turf/floor/tiled/airless, +/area/space) +"FO" = ( +/obj/machinery/door/firedoor, +/turf/wall/low/with_glass/reinforced, +/turf/floor/plating, +/area/space) +"FW" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/floor/tiled/airless, +/area/space) +"GI" = ( +/obj/effect/damagedfloor, +/obj/effect/damagedfloor, +/obj/machinery/conveyor/east, +/turf/floor/tiled/airless, +/area/space) +"Hc" = ( +/obj/machinery/door/airlock/command{ + name = "Bridge" + }, +/obj/machinery/door/firedoor, +/turf/floor/tiled/techmaint/airless, +/area/space) +"HL" = ( +/obj/item/storage/belt/utility, +/obj/structure/table/rack, +/obj/effect/damagedfloor, +/obj/spawner/pack/tech_loot, +/turf/floor/tiled/techmaint/airless, +/area/space) +"Ie" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/door/window/brigdoor, +/obj/structure/closet/random/milsupply, +/turf/floor/reinforced/airless, +/area/space) +"Jy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/girder, +/obj/item/stack/rods, +/obj/item/stack/cable_coil/cut, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart, +/obj/spawner/techpart/low_chance, +/turf/floor/asteroid/cave, +/area/space) +"JY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack/shelf, +/obj/spawner/ammo/lowcost, +/obj/spawner/ammo/lowcost, +/obj/spawner/ammo, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/shotgun/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/low_chance, +/obj/spawner/ammo/lowcost, +/turf/floor/reinforced/airless, +/area/space) +"Kw" = ( +/obj/effect/damagedfloor, +/obj/structure/salvageable/computer, +/turf/floor/tiled/techmaint/airless, +/area/space) +"KJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Crew Quarters" + }, +/turf/floor/tiled/airless, +/area/space) +"KR" = ( +/obj/effect/damagedfloor, +/turf/floor/plating/under/airless, +/area/space) +"Lz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/floor/exoplanet/barren, +/area/space) +"LF" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/landmark/corpse/skeleton/fortress, +/obj/spawner/gun/cheap, +/obj/effect/decal/cleanable/blood, +/turf/floor/wood, +/area/space) +"LG" = ( +/obj/spawner/closet/maintloot, +/obj/item/ammo_casing/rocket/scrap, +/turf/floor/tiled/airless, +/area/space) +"Mg" = ( +/obj/machinery/power/apc{ + cell_type = null; + pixel_x = 28 + }, +/turf/floor/tiled/techmaint/airless, +/area/space) +"Mv" = ( +/mob/living/simple_animal/hostile/hivebot/range, +/turf/floor/tiled/dark/airless, +/area/space) +"MW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/landmark/corpse/skeleton/fortress, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/airless, +/area/space) +"Oc" = ( +/turf/mineral/random, +/area/space) +"Ot" = ( +/obj/structure/table/rack/shelf, +/obj/item/ammo_casing/rocket/scrap, +/obj/spawner/ammo/lowcost, +/turf/floor/tiled/airless, +/area/space) +"OL" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/floor/exoplanet/barren, +/area/space) +"PL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/floor/asteroid/cave, +/area/space) +"Qh" = ( +/obj/machinery/door/airlock{ + name = "Cabin 1" + }, +/turf/floor/wood, +/area/space) +"Ql" = ( +/obj/structure/lattice, +/obj/structure/girder, +/turf/floor/asteroid/cave, +/area/space) +"QT" = ( +/obj/machinery/shower{ + pixel_y = 15 + }, +/obj/item/soap, +/obj/structure/curtain, +/turf/floor/tiled/airless, +/area/space) +"Ro" = ( +/obj/landmark/corpse/skeleton/fortress, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/dark/airless, +/area/space) +"RC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice, +/turf/floor/asteroid/cave, +/area/space) +"RE" = ( +/obj/machinery/conveyor/east, +/obj/item/ammo_casing/rocket/scrap, +/turf/floor/tiled/airless, +/area/space) +"RK" = ( +/obj/spawner/gun/energy_cheap, +/turf/floor/tiled/dark/airless, +/area/space) +"Tl" = ( +/obj/structure/salvageable/machine, +/turf/floor/tiled/techmaint/airless, +/area/space) +"Tm" = ( +/obj/structure/grille, +/obj/item/stack/rods, +/obj/spawner/techpart/low_chance, +/obj/spawner/techpart, +/obj/spawner/techpart/low_chance, +/turf/floor/asteroid/cave, +/area/space) +"Tx" = ( +/obj/effect/damagedfloor, +/obj/spawner/gun_parts, +/turf/floor/tiled/techmaint/airless, +/area/space) +"TC" = ( +/obj/item/material/shard, +/turf/wall/low, +/area/space) +"TI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/damagedfloor, +/obj/machinery/conveyor/east, +/turf/floor/tiled/airless, +/area/space) +"Up" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medbay" + }, +/obj/machinery/door/firedoor, +/turf/floor/tiled/techmaint/airless, +/area/space) +"UM" = ( +/obj/machinery/sleeper/sarcophagus/random{ + dir = 8 + }, +/turf/floor/tiled/techmaint/airless, +/area/space) +"US" = ( +/obj/effect/damagedfloor, +/obj/structure/salvageable/machine, +/turf/floor/tiled/techmaint/airless, +/area/space) +"Vy" = ( +/turf/floor/asteroid/cave, +/area/space) +"Vz" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/lights/bulbs, +/turf/floor/tiled/techmaint/airless, +/area/space) +"Wu" = ( +/obj/structure/girder, +/turf/floor/asteroid/cave, +/area/space) +"WZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/floor/wood, +/area/space) +"Xt" = ( +/obj/spawner/scrap, +/turf/floor/plating/under/airless, +/area/space) +"XM" = ( +/obj/structure/closet/crate, +/obj/item/tool/shovel, +/obj/item/tool/pickaxe, +/obj/item/storage/box/lights/mixed, +/turf/floor/tiled/techmaint/airless, +/area/space) +"Yn" = ( +/obj/effect/decal/cleanable/blood, +/obj/spawner/medical_lowcost, +/turf/floor/tiled/white/bluecorner/airless, +/area/space) +"Yo" = ( +/obj/effect/damagedfloor, +/obj/structure/girder, +/turf/floor/plating/under/airless, +/area/space) +"Yu" = ( +/obj/spawner/scrap, +/turf/floor/tiled/airless, +/area/space) +"YF" = ( +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/machinery/recharger, +/obj/structure/table/standard, +/obj/spawner/powercell/medium, +/obj/spawner/powercell/medium, +/turf/floor/tiled/dark/airless, +/area/space) +"Zd" = ( +/obj/machinery/conveyor/east, +/turf/floor/tiled/airless, +/area/space) +"Ze" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/landmark/corpse/skeleton/fortress, +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/airless, +/area/space) +"ZO" = ( +/obj/spawner/scrap/dense, +/turf/floor/tiled/airless, +/area/space) +"ZR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer{ + dir = 8 + }, +/turf/floor/tiled/airless, +/area/space) + +(1,1,1) = {" +Oc +Oc +Oc +Aq +Vy +Vy +gu +pk +Vy +pk +OL +OL +pk +Vy +Vy +Vy +Vy +"} +(2,1,1) = {" +Oc +Oc +np +Vy +Vy +pv +hI +pk +pk +pk +Lz +Lz +pk +gu +gu +pk +Aq +"} +(3,1,1) = {" +Oc +Aq +Vy +CH +ma +Xt +Kw +gK +pk +Tl +bF +Tl +pk +hI +hI +pk +Vy +"} +(4,1,1) = {" +Aq +Vy +CH +CH +ma +uF +hX +gM +uh +Mg +gM +gM +uI +Tl +Vz +pk +Vy +"} +(5,1,1) = {" +Vy +Ql +Xt +hX +US +hN +pk +pk +pk +pk +pk +ar +gM +gM +XM +pk +Vy +"} +(6,1,1) = {" +Vy +pk +pk +gM +pk +pk +pk +Ie +JY +oH +pk +pk +pk +uh +pk +pk +Vy +"} +(7,1,1) = {" +pk +pk +pk +eC +vd +Hc +aJ +RK +Ro +Mv +aJ +Hc +eD +eC +uf +pk +pk +"} +(8,1,1) = {" +pk +QT +pk +eC +fp +pk +YF +eZ +pj +pj +mu +pk +uf +eC +eC +zO +pk +"} +(9,1,1) = {" +pk +FW +xa +vd +pk +pk +FO +ux +uV +uV +FO +pk +pk +rJ +pk +pk +pk +"} +(10,1,1) = {" +pk +pk +pk +Fa +pk +LG +FO +FO +FO +FO +FO +uf +pk +dU +lz +cN +pk +"} +(11,1,1) = {" +rk +LF +Ek +eC +KJ +eC +eC +aL +Dn +Cd +eC +eC +Up +dW +lZ +uo +rk +"} +(12,1,1) = {" +pk +pk +pk +vd +ga +jy +xF +aL +Bs +xF +eX +eC +Up +nh +Yn +DM +pk +"} +(13,1,1) = {" +fh +WZ +Qh +vd +pk +uf +pk +rk +pk +TC +pk +uf +pk +cy +UM +UM +rk +"} +(14,1,1) = {" +CH +ma +pk +zc +pk +pk +pk +Vy +mn +Vy +pk +pk +pk +nI +pk +pk +pk +"} +(15,1,1) = {" +Vy +CH +pk +hX +AW +pk +Vy +Vy +Aq +Vy +Vy +pk +gG +gM +pk +Dt +pk +"} +(16,1,1) = {" +CH +ma +Tx +hC +US +TC +mn +Oc +Oc +Aq +Vy +rk +Co +gM +sq +gM +sq +"} +(17,1,1) = {" +fh +pk +pk +hX +tU +pk +Vy +Aq +Oc +Vy +Vy +pk +HL +jX +pk +pk +pk +"} +(18,1,1) = {" +pk +Bu +pk +nI +pk +pk +pk +Vy +Aq +Vy +pk +pk +pk +zc +pk +eo +pk +"} +(19,1,1) = {" +pk +Zd +eC +eC +Yu +ZO +pk +Vy +Vy +Vy +pk +RC +ma +wl +uv +TI +pk +"} +(20,1,1) = {" +vK +zj +MW +xF +eC +Yu +rk +Vy +Aq +Vy +PL +KR +eC +th +vd +zj +TC +"} +(21,1,1) = {" +pk +RE +eC +Fs +Ot +eC +pk +Vy +Oc +Oc +Vy +Fg +jm +KR +hJ +GI +pk +"} +(22,1,1) = {" +pk +zj +eC +xF +wZ +eC +pk +Aq +Oc +vf +Oc +Vy +vd +CH +vd +Yu +pk +"} +(23,1,1) = {" +pk +Zd +xF +Ze +eC +eC +pk +Vy +Vy +Oc +Aq +CH +Vy +CH +ma +vd +pk +"} +(24,1,1) = {" +rk +RE +pk +ZR +cT +kG +TC +Vy +Vy +Aq +Vy +Ql +Vy +Vy +CH +yx +vK +"} +(25,1,1) = {" +pk +lA +uX +Jy +pk +zj +pk +mn +Vy +Oc +Oc +pk +CH +Vy +CH +eC +pk +"} +(26,1,1) = {" +pk +pk +pk +Tm +pk +pk +pk +Vy +Oc +Oc +Oc +Oc +Oc +Aq +Vy +Yo +pk +"} +(27,1,1) = {" +Vy +pk +pk +Wu +pk +pk +Vy +Aq +Oc +Oc +Oc +Oc +Oc +Oc +Vy +CH +Vy +"} diff --git a/maps/submaps/cave_pois/spacewrecks7.dmm b/maps/submaps/cave_pois/spacewrecks7.dmm new file mode 100644 index 00000000000..bb4fe067c1b --- /dev/null +++ b/maps/submaps/cave_pois/spacewrecks7.dmm @@ -0,0 +1,1112 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"am" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/steel/brown_perforated, +/area/space) +"ao" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/brown_perforated, +/area/space) +"aF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/floor/tiled, +/area/space) +"dg" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled, +/area/space) +"dY" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/obj/item/gun/projectile/mandella, +/obj/item/clothing/suit/storage/greatcoat/german_overcoat, +/obj/item/tank/emergency_oxygen, +/obj/item/tank/emergency_oxygen, +/obj/item/ammo_magazine/cspistol, +/turf/floor/tiled/techmaint, +/area/space) +"eQ" = ( +/obj/machinery/vending/boozeomat, +/turf/wall/reinforced, +/area/space) +"eZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/bed/chair/shuttle, +/turf/floor/tiled, +/area/space) +"fh" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled, +/area/space) +"ft" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled, +/area/space) +"ge" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/gun/projectile/selfload, +/obj/item/ammo_magazine/hpistol, +/turf/floor/tiled, +/area/space) +"gl" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/techmaint, +/area/space) +"ib" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled, +/area/space) +"iP" = ( +/turf/wall/reinforced, +/area/space) +"jk" = ( +/obj/machinery/door/airlock/external{ + name = "NTMS-037 Mining Airlock" + }, +/turf/floor/tiled, +/area/space) +"jY" = ( +/obj/structure/table/standard, +/obj/item/tool/wrench, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/floor/tiled, +/area/space) +"kN" = ( +/obj/structure/table/standard, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/yellow{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/paper/crumpled/bloody{ + info = "We struck gold, literally. We found some good rocks out near Centurai-II rich with the stuff. Kae said he and Milos found something out while prospecting, some sort of glowing cube. It's jammed in there good, so we're anchoring until we sort this out..."; + pixel_x = 4; + pixel_y = 4 + }, +/turf/floor/tiled, +/area/space) +"kQ" = ( +/obj/machinery/door/airlock{ + name = "NTMS-037 Lockers" + }, +/turf/floor/tiled/techmaint, +/area/space) +"mt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/plating, +/area/space) +"nu" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/tool/weldingtool, +/turf/floor/plating, +/area/space) +"nz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/wood, +/area/space) +"oA" = ( +/obj/machinery/conveyor{ + id = "NTMSLoad2"; + name = "on ramp" + }, +/obj/machinery/door/airlock/external{ + name = "External Freight Airlock" + }, +/turf/floor/tiled/techmaint, +/area/space) +"pE" = ( +/obj/item/tool/wrench, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/techmaint, +/area/space) +"qi" = ( +/obj/machinery/door/airlock/external{ + name = "NTMS-037 Cargo Bay" + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/tiled/techmaint, +/area/space) +"ri" = ( +/obj/machinery/door/airlock/engineering{ + name = "NTMS-037 Engine Room" + }, +/turf/floor/tiled/techmaint, +/area/space) +"rw" = ( +/obj/machinery/recharger, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/blood, +/obj/structure/table/standard, +/obj/spawner/powercell/medium, +/turf/floor/plating, +/area/space) +"rx" = ( +/obj/structure/closet/secure_closet/freezer{ + locked = 0; + name = "fridge" + }, +/obj/item/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/turf/floor/tiled, +/area/space) +"sh" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/alien/drone, +/turf/floor/tiled, +/area/space) +"sP" = ( +/turf/wall/low/with_glass/reinforced, +/turf/floor/plating, +/area/space) +"sZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/floor/tiled, +/area/space) +"tD" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/lights/bulbs, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/floor/tiled/techmaint, +/area/space) +"tN" = ( +/obj/machinery/door/airlock{ + name = "Bunk B" + }, +/turf/floor/tiled/techmaint, +/area/space) +"ue" = ( +/obj/item/clothing/head/armor/faceshield/altyn/black, +/obj/item/clothing/suit/storage/vest, +/obj/spawner/gun/normal, +/obj/structure/closet, +/turf/floor/tiled, +/area/space) +"ul" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/floor/tiled, +/area/space) +"uV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/tiled, +/area/space) +"vm" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/floor/tiled/techmaint, +/area/space) +"vp" = ( +/obj/machinery/door/airlock{ + name = "NTMS-037 Saloon" + }, +/turf/floor/tiled/techmaint, +/area/space) +"wc" = ( +/obj/machinery/computer{ + dir = 1 + }, +/obj/item/stack/cable_coil/cut, +/turf/floor/tiled, +/area/space) +"wA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/gamblingtable, +/obj/item/storage/fancy/cigarettes/homeless, +/obj/item/flame/lighter/random, +/turf/floor/wood, +/area/space) +"xB" = ( +/obj/structure/closet/crate, +/obj/item/tool/shovel, +/obj/item/tool/pickaxe, +/obj/item/storage/box/lights/mixed, +/turf/floor/tiled/techmaint, +/area/space) +"xM" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/techmaint, +/area/space) +"yd" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/floor/plating, +/area/space) +"yh" = ( +/obj/machinery/door/airlock/command{ + name = "NTMS-037 Ship Control" + }, +/turf/floor/tiled/techmaint, +/area/space) +"yx" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/spawner/closet/maintloot, +/turf/floor/tiled, +/area/space) +"zJ" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled, +/area/space) +"AE" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/techmaint, +/area/space) +"AX" = ( +/turf/floor/tiled/steel/brown_perforated, +/area/space) +"Bh" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/tiled/techmaint, +/area/space) +"Bx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/tiled/techmaint, +/area/space) +"BM" = ( +/obj/structure/bed/chair/shuttle, +/turf/floor/tiled, +/area/space) +"Cn" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/item/storage/bag/trash{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/blood, +/turf/floor/plating, +/area/space) +"Df" = ( +/obj/machinery/door/airlock/external{ + name = "NTMS-037 Mining Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled, +/area/space) +"DA" = ( +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/item/stack/rods, +/turf/floor/tiled, +/area/space) +"DC" = ( +/obj/machinery/door/airlock/command{ + name = "NTMS-037 Captain's Quarters" + }, +/turf/floor/tiled/techmaint, +/area/space) +"EM" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/spawner/toolbox, +/obj/spawner/toolbox, +/turf/floor/tiled, +/area/space) +"Fv" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "NTMSLoad"; + name = "off ramp" + }, +/obj/machinery/door/airlock/external{ + name = "External Freight Airlock" + }, +/turf/floor/tiled/techmaint, +/area/space) +"FA" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/wood, +/area/space) +"FR" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/utility, +/obj/machinery/light/small, +/turf/floor/tiled, +/area/space) +"FZ" = ( +/obj/machinery/washing_machine, +/turf/floor/tiled, +/area/space) +"Gf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/small, +/obj/machinery/power/apc{ + cell_type = null; + name = "South APC"; + pixel_y = -28 + }, +/turf/floor/plating, +/area/space) +"Gp" = ( +/obj/structure/table/standard, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_x = 12; + pixel_y = 6 + }, +/turf/floor/tiled, +/area/space) +"GC" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/item/clothing/head/welding{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/plating, +/area/space) +"GH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/steel/brown_perforated, +/area/space) +"GR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/floor/plating, +/area/space) +"Hi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + name = "NTMS-037 Port Airlock" + }, +/turf/floor/tiled, +/area/space) +"HZ" = ( +/obj/structure/table/standard, +/obj/spawner/gun/normal, +/turf/floor/tiled, +/area/space) +"IJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/plating, +/area/space) +"IQ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/plating, +/area/space) +"Jk" = ( +/obj/structure/table/rack, +/obj/item/storage/toolbox/emergency, +/turf/floor/tiled/techmaint, +/area/space) +"Jt" = ( +/obj/structure/table/standard, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/turf/floor/tiled, +/area/space) +"JW" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/floor/plating, +/area/space) +"Ke" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/tiled, +/area/space) +"Ky" = ( +/obj/effect/decal/cleanable/blood, +/turf/floor/plating, +/area/space) +"KA" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled, +/area/space) +"KI" = ( +/turf/floor/wood, +/area/space) +"Ll" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/table/standard, +/turf/floor/tiled, +/area/space) +"Lp" = ( +/turf/floor/tiled, +/area/space) +"Mc" = ( +/obj/machinery/door/airlock{ + name = "Bunk A" + }, +/turf/floor/tiled/techmaint, +/area/space) +"MO" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/floor/plating, +/area/space) +"MY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/wood, +/area/space) +"Nl" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/tiled, +/area/space) +"NL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/tiled/steel/brown_perforated, +/area/space) +"OB" = ( +/turf/floor/carpet, +/area/space) +"OO" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/floor/plating, +/area/space) +"Pa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/techmaint, +/area/space) +"PY" = ( +/obj/machinery/door/airlock/external{ + id_tag = "ntms_exterior"; + name = "NTMS-037 Mining Airlock" + }, +/turf/floor/tiled, +/area/space) +"Rd" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/gun/energy/captain, +/obj/structure/closet, +/turf/floor/carpet, +/area/space) +"Rq" = ( +/obj/machinery/power/smes/buildable{ + charge = 0 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/floor/plating, +/area/space) +"RI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/salvageable/autolathe, +/turf/floor/tiled/techmaint, +/area/space) +"Se" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/spawner/powercell/medium, +/obj/spawner/powercell/small, +/turf/floor/tiled, +/area/space) +"SD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled, +/area/space) +"Tq" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/floor/tiled, +/area/space) +"TB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer{ + dir = 1 + }, +/turf/floor/tiled, +/area/space) +"TX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "External Freight Airlock" + }, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/tiled/techmaint, +/area/space) +"UU" = ( +/obj/machinery/door/airlock/external{ + id_tag = "ntms_exterior"; + name = "NTMS-037 Mining Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled, +/area/space) +"Vn" = ( +/obj/structure/table/standard, +/obj/item/tool/crowbar, +/obj/item/storage/fancy/cigar, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/carpet, +/area/space) +"Vs" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/floor/tiled, +/area/space) +"VD" = ( +/turf/floor/exoplanet/barren, +/area/space) +"VM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/floor/tiled, +/area/space) +"Wo" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/floor/wood, +/area/space) +"WG" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/floor/plating, +/area/space) +"Xi" = ( +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled/techmaint, +/area/space) +"Xu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/autolathe_disk_cloner, +/obj/machinery/light/small, +/turf/floor/tiled/techmaint, +/area/space) +"Ye" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/floor/wood, +/area/space) +"Yi" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/floor/tiled/techmaint, +/area/space) +"Yq" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/floor/tiled, +/area/space) +"YF" = ( +/obj/structure/table/standard, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/ration_pack, +/obj/item/storage/ration_pack, +/turf/floor/wood, +/area/space) +"YO" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/item/tool/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/turf/floor/plating, +/area/space) +"Zb" = ( +/obj/machinery/computer{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/floor/tiled, +/area/space) +"ZT" = ( +/obj/structure/bed/chair/comfy/brown{ + color = "#c45c57"; + dir = 1 + }, +/turf/floor/carpet, +/area/space) + +(1,1,1) = {" +VD +VD +VD +VD +iP +iP +UU +PY +iP +iP +VD +VD +VD +VD +VD +VD +"} +(2,1,1) = {" +VD +iP +iP +sP +iP +zJ +JW +IJ +ft +iP +sP +iP +sP +sP +VD +VD +"} +(3,1,1) = {" +iP +iP +MO +GR +iP +iP +jk +Df +iP +iP +kN +Vs +Zb +sP +sP +VD +"} +(4,1,1) = {" +iP +SD +IJ +JW +Hi +am +ao +AX +GH +yh +ib +Ke +aF +HZ +sP +sP +"} +(5,1,1) = {" +iP +Hi +iP +sP +iP +EM +am +NL +FR +iP +VM +SD +sh +eZ +TB +sP +"} +(6,1,1) = {" +VD +VD +VD +VD +sP +dg +AX +ao +ul +iP +Se +DA +uV +BM +wc +iP +"} +(7,1,1) = {" +VD +VD +VD +VD +sP +jY +NL +am +fh +iP +iP +Ll +ib +Lp +Jt +sP +"} +(8,1,1) = {" +VD +VD +VD +VD +iP +iP +iP +qi +iP +iP +iP +iP +iP +yh +iP +iP +"} +(9,1,1) = {" +VD +VD +VD +VD +VD +iP +dY +Bx +Jk +Xi +iP +nz +KI +uV +Yq +sP +"} +(10,1,1) = {" +VD +VD +VD +VD +VD +oA +Pa +xM +Yi +Pa +eQ +MY +wA +ib +Gp +iP +"} +(11,1,1) = {" +VD +VD +VD +VD +VD +TX +Yi +gl +pE +Bh +vp +ib +Tq +sZ +rx +sP +"} +(12,1,1) = {" +VD +VD +VD +VD +VD +Fv +Pa +xB +vm +RI +iP +ge +KA +YF +iP +iP +"} +(13,1,1) = {" +VD +VD +VD +VD +VD +iP +Bh +Pa +Xu +iP +iP +iP +kQ +iP +iP +VD +"} +(14,1,1) = {" +VD +VD +VD +VD +VD +sP +AE +Bh +tD +iP +Wo +Mc +Tq +ue +sP +VD +"} +(15,1,1) = {" +VD +VD +VD +VD +VD +iP +iP +ri +iP +iP +iP +iP +Nl +yx +iP +VD +"} +(16,1,1) = {" +VD +VD +VD +VD +VD +iP +rw +Ky +GC +iP +FA +tN +ib +FZ +sP +VD +"} +(17,1,1) = {" +VD +VD +VD +VD +VD +sP +IQ +Ky +Cn +iP +iP +iP +DC +iP +iP +VD +"} +(18,1,1) = {" +VD +VD +VD +VD +VD +sP +WG +mt +Gf +iP +Vn +ZT +KI +sP +VD +VD +"} +(19,1,1) = {" +VD +VD +VD +VD +VD +iP +Rq +YO +nu +iP +Rd +OB +Ye +sP +VD +VD +"} +(20,1,1) = {" +VD +VD +VD +VD +VD +iP +iP +sP +sP +iP +iP +sP +sP +iP +VD +VD +"} +(21,1,1) = {" +VD +VD +VD +VD +VD +iP +OO +OO +OO +iP +OO +OO +OO +iP +VD +VD +"} +(22,1,1) = {" +VD +VD +VD +VD +VD +iP +yd +yd +yd +iP +yd +yd +yd +iP +VD +VD +"}