diff --git a/code/__defines/materials.dm b/code/__defines/materials.dm index 7086ef7c9d4..97f30e52477 100644 --- a/code/__defines/materials.dm +++ b/code/__defines/materials.dm @@ -54,6 +54,8 @@ #define MAT_PLATINUM "platinum" #define MAT_TRITIUM "tritium" #define MAT_DEUTERIUM "deuterium" +#define MAT_CONCRETE "concrete" +#define MAT_PLASTEELREBAR "plasteel rebar" #define DEFAULT_TABLE_MATERIAL MAT_PLASTIC diff --git a/code/datums/supplypacks/materials.dm b/code/datums/supplypacks/materials.dm index 3268d05a46c..d06238dc41a 100644 --- a/code/datums/supplypacks/materials.dm +++ b/code/datums/supplypacks/materials.dm @@ -83,4 +83,11 @@ containertype = /obj/structure/closet/crate/grayson containername = "Linoleum crate" cost = 15 - contains = list(/obj/fiftyspawner/linoleum) \ No newline at end of file + contains = list(/obj/fiftyspawner/linoleum) + +/datum/supply_pack/materials/concrete + name = "Concrete" + cost = 10 + containertype = /obj/structure/closet/crate/grayson + contains = list(/obj/fiftyspawner/concrete) + containername = "Concrete bricks crate" \ No newline at end of file diff --git a/code/game/objects/effects/spawners/graffiti.dm b/code/game/objects/effects/spawners/graffiti.dm index afac11f4f14..9450c90206c 100644 --- a/code/game/objects/effects/spawners/graffiti.dm +++ b/code/game/objects/effects/spawners/graffiti.dm @@ -25,4 +25,4 @@ C.name = name - qdel(src) + return INITIALIZE_HINT_QDEL diff --git a/code/game/turfs/flooring/flooring.dm b/code/game/turfs/flooring/flooring.dm index 9c707d4a1f5..c585ccddf20 100644 --- a/code/game/turfs/flooring/flooring.dm +++ b/code/game/turfs/flooring/flooring.dm @@ -603,4 +603,12 @@ var/list/flooring_types footstep_sounds = list("human" = list( 'sound/effects/footstep/lava1.ogg', 'sound/effects/footstep/lava2.ogg', - 'sound/effects/footstep/lava3.ogg')) \ No newline at end of file + 'sound/effects/footstep/lava3.ogg')) + +/decl/flooring/concrete + name = "concrete" + desc = "A flat area of concrete flooring." + icon = 'icons/turf/concrete.dmi' + icon_base = "concrete" + is_plating = TRUE + plating_type = /decl/flooring/concrete \ No newline at end of file diff --git a/code/game/turfs/flooring/flooring_premade.dm b/code/game/turfs/flooring/flooring_premade.dm index bb3ad500afb..fa15004a5b8 100644 --- a/code/game/turfs/flooring/flooring_premade.dm +++ b/code/game/turfs/flooring/flooring_premade.dm @@ -527,3 +527,9 @@ add_overlay(image(icon = 'icons/turf/outdoors.dmi', icon_state = "snow_footprints", dir = text2num(d))) //**** Here ends snow **** + +/turf/simulated/floor/concrete + name = "concrete" + icon = 'icons/turf/concrete.dmi' + icon_state = "concrete" + initial_flooring = /decl/flooring/concrete diff --git a/code/game/turfs/simulated/wall_icon.dm b/code/game/turfs/simulated/wall_icon.dm index 788f6c54522..7abc69e3b26 100644 --- a/code/game/turfs/simulated/wall_icon.dm +++ b/code/game/turfs/simulated/wall_icon.dm @@ -16,10 +16,10 @@ if(reinf_material) name = "reinforced [material.display_name] wall" - desc = "It seems to be a section of hull reinforced with [reinf_material.display_name] and plated with [material.display_name]." + desc = "It seems to be a section of wall reinforced with [reinf_material.display_name] and plated with [material.display_name]." else name = "[material.display_name] wall" - desc = "It seems to be a section of hull plated with [material.display_name]." + desc = "It seems to be a section of wall plated with [material.display_name]." if(material.opacity > 0.5 && !opacity) set_light(1) @@ -77,6 +77,9 @@ I = image(wall_masks, reinf_material.icon_reinf) I.color = reinf_material.icon_colour add_overlay(I) + var/image/texture = material.get_wall_texture() + if(texture) + add_overlay(texture) if(damage != 0) var/integrity = material.integrity diff --git a/code/game/turfs/simulated/wall_types.dm b/code/game/turfs/simulated/wall_types.dm index 2a82f7dbec5..f9191ffdf64 100644 --- a/code/game/turfs/simulated/wall_types.dm +++ b/code/game/turfs/simulated/wall_types.dm @@ -78,6 +78,18 @@ /turf/simulated/wall/resin/Initialize(mapload) . = ..(mapload, "resin",null,"resin") +/turf/simulated/wall/concrete + desc = "A wall made out of concrete bricks" + material = MAT_CONCRETE + icon_state = "brick" + + +/turf/simulated/wall/r_concrete + desc = "A sturdy wall made of concrete and reinforced with plasteel rebar" + material = MAT_CONCRETE + reinf_material = MAT_PLASTEELREBAR + icon_state = "rbrick" + // Kind of wondering if this is going to bite me in the butt. /turf/simulated/wall/skipjack/Initialize(mapload) . = ..(mapload, "alienalloy") @@ -275,10 +287,9 @@ /obj/structure/hull_corner name = "hull corner" plane = OBJ_PLANE - 1 - icon = 'icons/turf/wall_masks.dmi' icon_state = "hull_corner" - + anchored = TRUE density = TRUE breakable = TRUE @@ -295,19 +306,19 @@ /obj/structure/hull_corner/proc/update_look() cut_overlays() - + var/turf/simulated/wall/T for(var/direction in get_dirs_to_test()) T = get_step(src, direction) if(!istype(T) || T.material?.icon_base != "hull") continue - + name = T.name desc = T.desc - + var/datum/material/B = T.material var/datum/material/R = T.reinf_material - + if(B?.icon_colour) color = B.icon_colour if(R?.icon_colour) @@ -315,7 +326,7 @@ I.color = R.icon_colour add_overlay(I) break - + if(!T) warning("Hull corner at [x],[y] not placed adjacent to a hull it can find.") @@ -696,4 +707,4 @@ wall_base_state = "darkwall_rwindow" #undef WINDOW_GLASS -#undef WINDOW_RGLASS \ No newline at end of file +#undef WINDOW_RGLASS diff --git a/code/modules/materials/fifty_spawner_mats.dm b/code/modules/materials/fifty_spawner_mats.dm index 6ba191522f8..e7e850a9161 100644 --- a/code/modules/materials/fifty_spawner_mats.dm +++ b/code/modules/materials/fifty_spawner_mats.dm @@ -12,6 +12,10 @@ name = "stack of marble" type_to_spawn = /obj/item/stack/material/marble +/obj/fiftyspawner/concrete + name = "stack of concrete" + type_to_spawn = /obj/item/stack/material/concrete + /obj/fiftyspawner/diamond name = "stack of diamond" type_to_spawn = /obj/item/stack/material/diamond @@ -72,6 +76,10 @@ name = "stack of plasteel" type_to_spawn = /obj/item/stack/material/plasteel +/obj/fiftyspawner/plasteel/rebar + name = "stack of plasteel rebars" + type_to_spawn = /obj/item/stack/material/plasteel/rebar + /obj/fiftyspawner/plasteel/hull name = "stack of plasteel hull" type_to_spawn = /obj/item/stack/material/plasteel/hull diff --git a/code/modules/materials/materials/_materials.dm b/code/modules/materials/materials/_materials.dm index 168fd67938f..99027a8de74 100644 --- a/code/modules/materials/materials/_materials.dm +++ b/code/modules/materials/materials/_materials.dm @@ -373,4 +373,7 @@ var/list/name_to_material new /datum/stack_recipe("[display_name] knife", /obj/item/weapon/material/knife/plastic, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE), new /datum/stack_recipe("[display_name] blade", /obj/item/weapon/material/butterflyblade, 6, time = 20, one_per_turf = 0, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE), new /datum/stack_recipe("[display_name] defense wire", /obj/item/weapon/material/barbedwire, 10, time = 1 MINUTE, one_per_turf = 0, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) - ) \ No newline at end of file + ) + +/datum/material/proc/get_wall_texture() + return diff --git a/code/modules/materials/materials/metals/plasteel.dm b/code/modules/materials/materials/metals/plasteel.dm index 8146980057f..8ec47e84f21 100644 --- a/code/modules/materials/materials/metals/plasteel.dm +++ b/code/modules/materials/materials/metals/plasteel.dm @@ -24,8 +24,17 @@ new /datum/stack_recipe("dark floor tile", /obj/item/stack/tile/floor/dark, 1, 4, 20, recycle_material = "[name]"), new /datum/stack_recipe("roller bed", /obj/item/roller, 5, time = 30, on_floor = 1, recycle_material = "[name]"), new /datum/stack_recipe("whetstone", /obj/item/weapon/whetstone, 2, time = 10, recycle_material = "[name]"), + new /datum/stack_recipe("plasteel rebar", /obj/item/stack/material/plasteel/rebar, 1, time = 5, recycle_material = "[name]"), new /datum/stack_recipe_list("reinforced low walls",list( new /datum/stack_recipe("reinforced low wall (bay style)", /obj/structure/low_wall/bay/reinforced, 3, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", recycle_material = "[name]"), new /datum/stack_recipe("reinforced low wall (eris style)", /obj/structure/low_wall/eris/reinforced, 3, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", recycle_material = "[name]") )), - ) \ No newline at end of file + ) + +/datum/material/plasteel/rebar //to give a different reinforced overlay + name = MAT_PLASTEELREBAR + icon_reinf = "reinf_metal" + icon_colour = "#6A6A6A" + stack_type = /obj/item/stack/material/plasteel/rebar + sheet_singular_name = "rod" + sheet_plural_name = "rods" diff --git a/code/modules/materials/materials/metals/steel.dm b/code/modules/materials/materials/metals/steel.dm index cc6a58792a6..0ecee553ab6 100644 --- a/code/modules/materials/materials/metals/steel.dm +++ b/code/modules/materials/materials/metals/steel.dm @@ -86,4 +86,4 @@ new /datum/stack_recipe("apc frame", /obj/item/frame/apc, 2, recycle_material = "[name]"), new /datum/stack_recipe("desk bell", /obj/item/weapon/deskbell, 1, on_floor = 1, supplied_material = "[name]"), new /datum/stack_recipe("tanning rack", /obj/structure/tanning_rack, 3, one_per_turf = TRUE, time = 20, on_floor = TRUE, supplied_material = "[name]") - ) \ No newline at end of file + ) diff --git a/code/modules/materials/materials/stone.dm b/code/modules/materials/materials/stone.dm index 37bf5948ddf..811e2e2ed95 100644 --- a/code/modules/materials/materials/stone.dm +++ b/code/modules/materials/materials/stone.dm @@ -47,4 +47,27 @@ /datum/material/stone/flint/generate_recipes() return -//VOREStation Addition End \ No newline at end of file +//VOREStation Addition End + +/datum/material/stone/concrete + name = MAT_CONCRETE + stack_type = /obj/item/stack/material/concrete + icon_base = "brick" + icon_colour = COLOR_GRAY + integrity = 150 + melting_point = 1550 + protectiveness = 10 + weight = 27 + hardness = 60 + var/image/texture + +/datum/material/stone/concrete/generate_recipes() + ..() + +/datum/material/stone/concrete/New() + . = ..() + texture = image('icons/turf/wall_texture.dmi', "concrete") + texture.blend_mode = BLEND_MULTIPLY + +/datum/material/stone/concrete/get_wall_texture() + return texture diff --git a/code/modules/materials/sheets/metals/metal.dm b/code/modules/materials/sheets/metals/metal.dm index 1994b58c21b..65b41df81eb 100644 --- a/code/modules/materials/sheets/metals/metal.dm +++ b/code/modules/materials/sheets/metals/metal.dm @@ -12,6 +12,19 @@ no_variants = FALSE apply_colour = TRUE +/obj/item/stack/material/plasteel/rebar + name = MAT_PLASTEELREBAR + icon_state = "rods" + default_type = MAT_PLASTEELREBAR + apply_colour = 1 + +/obj/item/stack/material/plasteel/rebar/update_icon() + var/amount = get_amount() + if((amount <= 5) && (amount > 0)) + icon_state = "rods-[amount]" + else + icon_state = "rods" + /obj/item/stack/material/durasteel name = "durasteel" icon_state = "sheet-reinforced" diff --git a/code/modules/materials/sheets/stone.dm b/code/modules/materials/sheets/stone.dm index 2b78fe0159b..c30766cda4a 100644 --- a/code/modules/materials/sheets/stone.dm +++ b/code/modules/materials/sheets/stone.dm @@ -22,4 +22,11 @@ drop_sound = 'sound/items/drop/boots.ogg' pickup_sound = 'sound/items/pickup/boots.ogg' pass_color = TRUE - apply_colour = TRUE \ No newline at end of file + apply_colour = TRUE + +/obj/item/stack/material/concrete + name = "concrete brick" + icon_state = "brick" + default_type = "concrete" + no_variants = FALSE + apply_colour = 1 diff --git a/code/modules/reagents/reactions/instant/instant.dm b/code/modules/reagents/reactions/instant/instant.dm index 2bb809ccef9..299ec6d4482 100644 --- a/code/modules/reagents/reactions/instant/instant.dm +++ b/code/modules/reagents/reactions/instant/instant.dm @@ -689,6 +689,15 @@ required_reagents = list("liquidcarpeto" = 2, "plasticide" = 1) carpet_type = /obj/item/stack/tile/carpet/oracarpet +/decl/chemical_reaction/instant/concrete + name = "Concrete" + id = "concretereagent" + required_reagents = list("calcium" = 2, "silicate" = 2, "water" = 2) + result_amount = 1 + +/decl/chemical_reaction/instant/concrete/on_reaction(var/datum/reagents/holder, var/created_volume) + new /obj/item/stack/material/concrete(get_turf(holder.my_atom), created_volume) + return /* Grenade reactions */ @@ -1232,4 +1241,4 @@ id = "spidertoxin_neutral" result = "protein" required_reagents = list("enzyme" = 1, "spidertoxin" = 1, "sifsap" = 1) - result_amount = 1 \ No newline at end of file + result_amount = 1 diff --git a/icons/turf/concrete.dmi b/icons/turf/concrete.dmi new file mode 100644 index 00000000000..eacd59ad134 Binary files /dev/null and b/icons/turf/concrete.dmi differ diff --git a/icons/turf/wall_masks.dmi b/icons/turf/wall_masks.dmi index be2f48cd031..36d780c69d2 100644 Binary files a/icons/turf/wall_masks.dmi and b/icons/turf/wall_masks.dmi differ diff --git a/icons/turf/wall_texture.dmi b/icons/turf/wall_texture.dmi new file mode 100644 index 00000000000..265e997b932 Binary files /dev/null and b/icons/turf/wall_texture.dmi differ diff --git a/maps/cynosure/cynosure_shuttles.dm b/maps/cynosure/cynosure_shuttles.dm index 8fd4e9b0a5b..4ca105f5168 100644 --- a/maps/cynosure/cynosure_shuttles.dm +++ b/maps/cynosure/cynosure_shuttles.dm @@ -20,6 +20,7 @@ name = "Cynosure Arrivals Pad" landmark_tag = "arrivals_station" docking_controller = "arrivals_dock" + base_turf = /turf/simulated/floor/concrete/sif/planetuse // Cargo shuttle. @@ -275,6 +276,7 @@ name = "Cynosure Departures Pad" landmark_tag = "escape_station" docking_controller = "escape_dock" + base_turf = /turf/simulated/floor/concrete/sif/planetuse /obj/effect/shuttle_landmark/cynosure/escape/transit landmark_tag = "escape_transit" @@ -330,7 +332,7 @@ ESCAPE_POD(1) landmark_tag = "large_escape_pod1_station" docking_controller = "large_escape_pod_1_berth" base_area = /area/surface/outpost/research/xenoarcheology/surface - base_turf = /turf/simulated/floor/airless + base_turf = /turf/simulated/floor/concrete/sif/planetuse /obj/effect/shuttle_landmark/cynosure/large_escape_pod1/offsite name = "Recovery" @@ -376,14 +378,14 @@ ESCAPE_POD(1) landmark_tag = "nav_pad3_cynosure" docking_controller = "pad3" base_area = /area/surface/outside/station/shuttle/pad3 - base_turf = /turf/simulated/floor/plating/sif/planetuse + base_turf = /turf/simulated/floor/concrete/sif/planetuse /obj/effect/shuttle_landmark/cynosure/pads/pad4 name = "Shuttle Pad Four" landmark_tag = "nav_pad4_cynosure" docking_controller = "pad4" base_area = /area/surface/outside/station/shuttle/pad4 - base_turf = /turf/simulated/floor/plating/sif/planetuse + base_turf = /turf/simulated/floor/concrete/sif/planetuse /obj/effect/shuttle_landmark/cynosure/pads/perimeter name = "Cynosure Perimeter" diff --git a/maps/cynosure/submaps/10x9/Shop.dmm b/maps/cynosure/submaps/10x9/Shop.dmm new file mode 100644 index 00000000000..bd27c581392 --- /dev/null +++ b/maps/cynosure/submaps/10x9/Shop.dmm @@ -0,0 +1,541 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"b" = ( +/obj/random/junk, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"d" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/machinery/vending/snlvend, +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/tiled, +/area/template_noop) +"e" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"f" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/closet/crate/unathi, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"g" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/retail_scanner/cargo, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"h" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) +"i" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"j" = ( +/turf/template_noop, +/area/template_noop) +"k" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"l" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) +"m" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) +"n" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"o" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"p" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"q" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/effect/floor_decal/spline/plain, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"r" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/remains/lizard, +/obj/structure/closet/crate/large/critter, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"s" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/template_noop) +"t" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"u" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"v" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"x" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"y" = ( +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/concrete{ + can_open = 1 + }, +/area/template_noop) +"z" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"A" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/structure/closet/crate/nanomed, +/obj/random/medical, +/obj/random/medical/lite, +/obj/random/medical/lite, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"B" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/random/maintenance/cargo, +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/vore_75 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"C" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"D" = ( +/obj/structure/table/reinforced, +/obj/structure/windoor_assembly/secure, +/obj/item/deskbell, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"E" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate/allico, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/toy, +/obj/random/toy, +/obj/random/toy, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"H" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/closet/crate/freezer/centauri, +/obj/random/snack, +/obj/random/snack, +/obj/random/snack, +/obj/random/drinksoft, +/obj/random/drinksoft, +/obj/random/drinksoft, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"I" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"J" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/stamp, +/obj/item/paper/sticky, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"K" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/wardrobe/black, +/obj/random/contraband, +/obj/random/cash/big, +/obj/random/cash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/template_noop) +"M" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"N" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"O" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/item/frame/light{ + dir = 1 + }, +/obj/structure/sign/poster/nanotrasen{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/pol_12 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"P" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Q" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"R" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/random/junk, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"S" = ( +/turf/simulated/floor/tiled, +/area/template_noop) +"T" = ( +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled, +/area/template_noop) +"U" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display/supply_display, +/turf/simulated/floor/plating, +/area/template_noop) +"V" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"W" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"X" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/closet/crate/gilthari, +/obj/random/drinkbottle, +/obj/random/drinkbottle, +/obj/random/drinkbottle, +/obj/random/cigarettes, +/obj/random/cigarettes, +/obj/random/cigarettes, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Y" = ( +/turf/simulated/floor/tiled/monotile, +/area/template_noop) + +(1,1,1) = {" +t +t +j +j +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +y +a +X +E +H +a +"} +(3,1,1) = {" +j +a +d +h +K +s +V +P +a +"} +(4,1,1) = {" +j +t +M +p +R +Y +S +k +a +"} +(5,1,1) = {" +j +a +O +p +D +o +S +u +a +"} +(6,1,1) = {" +a +a +v +n +g +Y +S +B +a +"} +(7,1,1) = {" +a +I +N +e +J +b +S +i +a +"} +(8,1,1) = {" +a +C +T +Q +l +m +W +x +a +"} +(9,1,1) = {" +a +q +z +z +U +f +r +A +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/cynosure/submaps/10x9/TreasureHoard.dmm b/maps/cynosure/submaps/10x9/TreasureHoard.dmm new file mode 100644 index 00000000000..10f0a40128e --- /dev/null +++ b/maps/cynosure/submaps/10x9/TreasureHoard.dmm @@ -0,0 +1,528 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"b" = ( +/obj/item/coin/silver{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/coin/iron, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"c" = ( +/obj/structure/loot_pile/maint/boxfort, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"e" = ( +/obj/random/crate, +/obj/random/coin, +/obj/item/coin/iron, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"f" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/loot_pile/maint/junk, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"g" = ( +/obj/random/crate, +/obj/item/coin/aluminium, +/obj/random/plushie, +/obj/item/toy/plushie/carp/gold, +/obj/random/mech_toy, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"i" = ( +/obj/structure/closet/crate/grayson, +/obj/random/multiple/ore_pile, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"j" = ( +/turf/template_noop, +/area/template_noop) +"k" = ( +/obj/random/crate, +/obj/random/coin, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"l" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/item/coin/silver{ + pixel_x = -4; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"m" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/item/coin/gold{ + pixel_x = -4 + }, +/obj/item/coin/aluminium, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"n" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"o" = ( +/obj/structure/closet/crate/grayson, +/obj/random/material, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"p" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/item/frame, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"q" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/item/coin/gold{ + pixel_x = -4; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"s" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random/junk, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"t" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"u" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"v" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/frame/apc, +/turf/simulated/floor/plating, +/area/template_noop) +"w" = ( +/obj/item/moneybag, +/turf/simulated/floor/tiled, +/area/template_noop) +"x" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"y" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/effect/floor_decal/spline/plain, +/obj/item/coin/silver{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"z" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"A" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/item/reagent_containers/blood/empty, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"B" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"C" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) +"D" = ( +/obj/structure/closet/crate/allico, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"E" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/item/coin/gold{ + pixel_x = 4 + }, +/obj/item/coin/silver{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"F" = ( +/obj/item/coin/gold{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"G" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/largecrate, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"H" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"I" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"J" = ( +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/concrete{ + can_open = 1 + }, +/area/template_noop) +"K" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"L" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"M" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"N" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/item/coin/silver, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"O" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/item/coin/uranium, +/obj/item/stack/tile/floor, +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"P" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Q" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"R" = ( +/obj/structure/closet/crate/centauri, +/obj/item/reagent_containers/blood/OMinus, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"S" = ( +/turf/simulated/floor/tiled, +/area/template_noop) +"T" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"U" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display/supply_display, +/turf/simulated/floor/plating, +/area/template_noop) +"V" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/bay_35 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"W" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/item/coin/platinum, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"X" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/ore_box, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Y" = ( +/obj/random/crate, +/obj/random/cash/big, +/obj/random/coin, +/obj/item/coin/gold{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/coin/gold{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/coin/silver{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/clothing/accessory/bracelet/material/gold, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"Z" = ( +/obj/item/frame/extinguisher_cabinet, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) + +(1,1,1) = {" +t +t +j +j +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +J +a +I +X +H +a +"} +(3,1,1) = {" +j +a +E +s +L +L +B +l +a +"} +(4,1,1) = {" +j +t +u +M +R +e +b +p +a +"} +(5,1,1) = {" +j +a +O +M +D +o +S +q +a +"} +(6,1,1) = {" +a +a +v +n +g +Y +w +V +a +"} +(7,1,1) = {" +a +G +N +c +k +T +i +P +a +"} +(8,1,1) = {" +a +Z +F +K +C +Q +x +W +a +"} +(9,1,1) = {" +a +y +z +z +U +f +m +A +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/cynosure/submaps/10x9/Warehouse1.dmm b/maps/cynosure/submaps/10x9/Warehouse1.dmm new file mode 100644 index 00000000000..2b1eb6f77ac --- /dev/null +++ b/maps/cynosure/submaps/10x9/Warehouse1.dmm @@ -0,0 +1,548 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"b" = ( +/turf/simulated/floor/tiled, +/area/template_noop) +"c" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/ward{ + dir = 2 + }, +/obj/item/gun/energy/lasertag/blue, +/obj/item/gun/energy/lasertag/blue, +/obj/item/gun/energy/lasertag/red, +/obj/item/gun/energy/lasertag/red, +/obj/item/clothing/suit/bluetag, +/obj/item/clothing/suit/bluetag, +/obj/item/clothing/suit/redtag, +/obj/item/clothing/suit/redtag, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"d" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"f" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"g" = ( +/obj/structure/closet/crate/ummarcar, +/obj/item/toner, +/obj/item/toner, +/obj/item/toner, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/pen/red, +/obj/item/pen/blue, +/obj/item/pen/blue, +/obj/item/camera_film, +/obj/item/folder/blue, +/obj/item/folder/red, +/obj/item/folder/yellow, +/obj/item/hand_labeler, +/obj/item/tape_roll, +/obj/item/paper_bin, +/obj/item/sticky_pad/random, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"h" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"i" = ( +/obj/structure/closet/crate/freezer/centauri, +/obj/random/meat, +/obj/item/reagent_containers/food/drinks/milk, +/obj/item/reagent_containers/food/drinks/soymilk, +/obj/item/storage/fancy/egg_box, +/turf/simulated/floor/tiled, +/area/template_noop) +"j" = ( +/turf/template_noop, +/area/template_noop) +"k" = ( +/obj/random/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"l" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/large/einstein, +/obj/item/cell, +/obj/item/cell, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/random/powercell, +/obj/random/powercell, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"n" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"o" = ( +/obj/random/junk, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"p" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/random/crate{ + dir = 8 + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"q" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/engineering, +/obj/random/tool, +/obj/random/tool/powermaint, +/obj/random/toolbox, +/obj/random/technology_scanner, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"s" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/aether, +/obj/random/tank, +/obj/random/tank, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"t" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"u" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate/grayson{ + dir = 1 + }, +/obj/random/multiple/ore_pile, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"v" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/frame/apc, +/obj/structure/closet/crate/focalpoint, +/obj/item/module/power_control, +/obj/item/stack/cable_coil/random, +/obj/item/cell/apc, +/turf/simulated/floor/plating, +/area/template_noop) +"w" = ( +/obj/random/crate{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"x" = ( +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/structure/closet/crate/large/secure/xion, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"y" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/floodlight, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled, +/area/template_noop) +"z" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"A" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/structure/closet/crate/nanomed{ + dir = 2 + }, +/obj/random/medical, +/obj/random/medical/lite, +/obj/random/medical/lite, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"C" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) +"D" = ( +/obj/structure/closet/crate/thinktronic, +/obj/item/pda, +/obj/item/pda, +/obj/item/pda, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"E" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/structure/ore_box, +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"F" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"G" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"H" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/largecrate, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"I" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"J" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"K" = ( +/obj/random/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/template_noop) +"L" = ( +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/concrete, +/area/template_noop) +"M" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/template_noop) +"N" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/template_noop) +"O" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/item/stack/tile/floor, +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"P" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/allico, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/toy, +/obj/random/toy, +/obj/random/toy, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Q" = ( +/obj/structure/closet/crate/nanothreads, +/obj/random/thermalponcho, +/obj/item/melee/umbrella/random, +/obj/item/melee/umbrella/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/random/maintenance/clean, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"S" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"U" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display/supply_display, +/turf/simulated/floor/plating, +/area/template_noop) +"V" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"W" = ( +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled, +/area/template_noop) +"X" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate/unathi, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/obj/item/reagent_containers/food/snacks/unajerky, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Y" = ( +/turf/simulated/floor/tiled/monotile, +/area/template_noop) + +(1,1,1) = {" +t +t +j +j +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +L +a +I +u +H +a +"} +(3,1,1) = {" +j +a +E +h +K +M +Q +P +a +"} +(4,1,1) = {" +j +t +S +J +Y +Y +b +c +a +"} +(5,1,1) = {" +j +a +O +J +D +o +b +l +a +"} +(6,1,1) = {" +a +a +v +n +g +Y +w +p +a +"} +(7,1,1) = {" +a +G +N +V +k +Y +i +q +a +"} +(8,1,1) = {" +a +d +W +F +C +C +x +s +a +"} +(9,1,1) = {" +a +y +z +z +U +f +X +A +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/cynosure/submaps/10x9/Warehouse2.dmm b/maps/cynosure/submaps/10x9/Warehouse2.dmm new file mode 100644 index 00000000000..0388f962d16 --- /dev/null +++ b/maps/cynosure/submaps/10x9/Warehouse2.dmm @@ -0,0 +1,525 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"b" = ( +/obj/random/crate{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"c" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"d" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"e" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) +"f" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/closet/crate/centauri, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"g" = ( +/obj/structure/closet/crate/large/nanotrasen, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"h" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"i" = ( +/obj/structure/closet/crate/carp{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/material/minihoe, +/obj/item/material/knife/machete/hatchet, +/obj/item/tool/wirecutters/clippers/trimmers, +/turf/simulated/floor/tiled, +/area/template_noop) +"j" = ( +/turf/template_noop, +/area/template_noop) +"k" = ( +/obj/structure/closet/crate/ward{ + dir = 1 + }, +/obj/item/integrated_circuit_printer, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"l" = ( +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled, +/area/template_noop) +"n" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"o" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"p" = ( +/obj/random/junk, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"s" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/random/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"t" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"u" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate/grayson, +/obj/random/tech_supply/nofail, +/obj/random/tech_supply, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"v" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/frame/apc, +/turf/simulated/floor/plating, +/area/template_noop) +"x" = ( +/obj/structure/closet/crate/large, +/obj/random/contraband, +/obj/random/cash, +/obj/random/maintenance/clean, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"y" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/effect/floor_decal/spline/plain, +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/tiled, +/area/template_noop) +"z" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"A" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/structure/closet/crate/secure, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"B" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/focalpoint, +/obj/random/smes_coil, +/obj/random/smes_coil, +/obj/item/circuitboard/smes, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"C" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/largecrate, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"D" = ( +/obj/structure/closet/crate/gilthari, +/obj/random/drinkbottle, +/obj/random/drinkbottle, +/obj/random/drinkbottle, +/obj/random/cigarettes, +/obj/random/cigarettes, +/obj/random/cigarettes, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"E" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/structure/largecrate, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"F" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"G" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"H" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"I" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/largecrate, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"J" = ( +/obj/structure/mopbucket, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/template_noop) +"K" = ( +/obj/structure/closet/crate/galaksi, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/item/clothing/under/rank/janitor, +/obj/item/storage/belt/janitor, +/obj/item/cartridge/janitor, +/obj/item/clothing/gloves/black, +/obj/item/clothing/head/soft/purple, +/obj/item/storage/bag/trash, +/obj/item/reagent_containers/glass/rag, +/obj/item/grenade/chem_grenade/cleaner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/template_noop) +"L" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/xion{ + dir = 2 + }, +/obj/random/tech_supply/nofail, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"M" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/einstein{ + dir = 8 + }, +/obj/random/powercell, +/obj/item/cell, +/obj/item/cell/high, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"N" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"O" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/item/stack/tile/floor, +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"P" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/allico, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/obj/item/reagent_containers/food/snacks/candy/gummy, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Q" = ( +/obj/structure/closet/crate/grayson{ + dir = 1 + }, +/obj/random/material, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"R" = ( +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/concrete, +/area/template_noop) +"S" = ( +/turf/simulated/floor/tiled, +/area/template_noop) +"U" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display/supply_display, +/turf/simulated/floor/plating, +/area/template_noop) +"X" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate/veymed, +/obj/random/firstaid, +/obj/random/medical, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Y" = ( +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"Z" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) + +(1,1,1) = {" +t +t +j +j +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +R +a +I +u +H +a +"} +(3,1,1) = {" +j +a +E +h +K +J +Q +P +a +"} +(4,1,1) = {" +j +t +p +F +Y +Y +b +s +a +"} +(5,1,1) = {" +j +a +O +F +D +Y +S +M +a +"} +(6,1,1) = {" +a +a +v +n +g +Y +S +B +a +"} +(7,1,1) = {" +a +G +N +c +k +Y +i +L +a +"} +(8,1,1) = {" +a +d +l +o +e +Z +x +C +a +"} +(9,1,1) = {" +a +y +z +z +U +f +X +A +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/cynosure/submaps/10x9/Warehouse3.dmm b/maps/cynosure/submaps/10x9/Warehouse3.dmm new file mode 100644 index 00000000000..81dff431383 --- /dev/null +++ b/maps/cynosure/submaps/10x9/Warehouse3.dmm @@ -0,0 +1,512 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"b" = ( +/turf/simulated/floor/tiled, +/area/template_noop) +"c" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/largecrate, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"d" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"f" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/centauri, +/obj/random/snack, +/obj/random/snack, +/obj/random/snack, +/obj/random/snack, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"g" = ( +/obj/random/crate{ + dir = 8 + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"h" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"i" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/ward{ + dir = 8 + }, +/obj/item/weldingtool/electric, +/obj/item/weldingtool/electric, +/obj/item/weldingtool/electric, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"j" = ( +/turf/template_noop, +/area/template_noop) +"l" = ( +/obj/structure/largecrate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) +"m" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"n" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"o" = ( +/obj/random/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"p" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/morpheus{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"q" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate/oculum{ + dir = 2 + }, +/obj/item/pack/cardemon, +/obj/item/pack/cardemon, +/obj/item/pack/spaceball, +/obj/item/pack/spaceball, +/obj/item/pack/cardemon, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"r" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"s" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"t" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"u" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"v" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/frame/apc, +/turf/simulated/floor/plating, +/area/template_noop) +"x" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"y" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/effect/floor_decal/spline/plain, +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/template_noop) +"z" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"A" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/structure/closet/crate/einstein, +/obj/item/cell, +/obj/item/cell, +/obj/random/powercell, +/obj/random/powercell, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"B" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"D" = ( +/obj/structure/closet/crate/centauri, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"E" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/structure/loot_pile/maint/junk, +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/tiled, +/area/template_noop) +"G" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/closet/crate/large/secure/heph, +/obj/item/cell/device/weapon/empty, +/obj/item/cell/device/weapon/empty, +/obj/item/cell/device/weapon, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"H" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/closet/crate/zenghu, +/obj/item/storage/box/autoinjectors, +/obj/random/medical/pillbottle, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"I" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/carp, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/libertymycelium, +/obj/item/seeds/reishimycelium, +/obj/item/seeds/ambrosiavulgarisseed, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"J" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/template_noop) +"K" = ( +/obj/structure/closet/crate/solar, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/template_noop) +"M" = ( +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled, +/area/template_noop) +"N" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"O" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/item/stack/tile/floor, +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"P" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/random/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Q" = ( +/obj/structure/closet/crate/large/aether, +/obj/random/tank, +/obj/random/tank, +/obj/random/tank, +/obj/random/tank, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"R" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) +"S" = ( +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/concrete, +/area/template_noop) +"T" = ( +/turf/simulated/floor/tiled/monotile, +/area/template_noop) +"U" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display/supply_display, +/turf/simulated/floor/plating, +/area/template_noop) +"V" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"X" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/centauri, +/obj/random/drinksoft, +/obj/random/drinksoft, +/obj/random/drinksoft, +/obj/random/drinksoft, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Y" = ( +/obj/structure/closet/crate/large/xion, +/obj/random/tech_supply/nofail, +/obj/random/tech_supply/nofail, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/monotile, +/area/template_noop) + +(1,1,1) = {" +t +t +j +j +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +S +a +I +u +H +a +"} +(3,1,1) = {" +j +a +E +h +K +J +Q +P +a +"} +(4,1,1) = {" +j +t +B +r +T +T +b +c +a +"} +(5,1,1) = {" +j +a +O +r +D +o +b +i +a +"} +(6,1,1) = {" +a +a +v +n +g +Y +b +p +a +"} +(7,1,1) = {" +a +G +N +m +T +T +b +q +a +"} +(8,1,1) = {" +a +d +M +V +l +R +x +s +a +"} +(9,1,1) = {" +a +y +z +z +U +f +X +A +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/cynosure/submaps/16x11/LaserTag.dmm b/maps/cynosure/submaps/16x11/LaserTag.dmm new file mode 100644 index 00000000000..7addb035955 --- /dev/null +++ b/maps/cynosure/submaps/16x11/LaserTag.dmm @@ -0,0 +1,495 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"c" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/deployable/barrier{ + req_access = list() + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"e" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"f" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"g" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"h" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"i" = ( +/obj/item/stack/flag/red, +/obj/effect/floor_decal/industrial/outline{ + color = "#BB0000" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"j" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"k" = ( +/obj/machinery/deployable/barrier{ + req_access = list() + }, +/turf/simulated/floor/plating, +/area/template_noop) +"l" = ( +/obj/effect/floor_decal/corner/blue/full, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"n" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/machinery/deployable/barrier{ + req_access = list() + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"p" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/item/stack/tile/floor/steel_dirty, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"q" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/machinery/deployable/barrier{ + req_access = list() + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"r" = ( +/obj/random/crate, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/item/clothing/glasses/sunglasses/aviator, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/template_noop) +"s" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/machinery/deployable/barrier{ + req_access = list() + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"t" = ( +/obj/machinery/deployable/barrier{ + anchored = 1; + req_access = list() + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"v" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/item/stack/tile/floor/steel_dirty{ + amount = 15 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"y" = ( +/obj/structure/closet/lasertag/blue, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"z" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/item/stack/tile/floor/steel_dirty, +/obj/structure/sign/poster/nanotrasen{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/nanotrasen/bay_21 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"B" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"C" = ( +/obj/random/toolbox, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"D" = ( +/obj/machinery/deployable/barrier{ + anchored = 1; + req_access = list() + }, +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"E" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/random/crate, +/obj/item/floor_painter, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"F" = ( +/obj/item/tape/engineering, +/turf/simulated/floor/plating, +/area/template_noop) +"G" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"H" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/closet/lasertag/red, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"I" = ( +/obj/machinery/deployable/barrier{ + anchored = 1; + req_access = list() + }, +/turf/simulated/floor/plating, +/area/template_noop) +"K" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"N" = ( +/obj/machinery/deployable/barrier{ + req_access = list() + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"O" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/deployable/barrier{ + req_access = list() + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"P" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/deployable/barrier{ + req_access = list() + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Q" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/template_noop) +"R" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/structure/closet/toolcloset, +/obj/random/tool/powermaint, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"S" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"T" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/obj/machinery/deployable/barrier{ + req_access = list() + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"U" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"V" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"W" = ( +/obj/item/stack/tile/floor/steel_dirty, +/turf/simulated/floor/plating, +/area/template_noop) +"X" = ( +/obj/item/stack/flag/blue, +/obj/effect/floor_decal/industrial/outline{ + color = "#0000BB" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Y" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/vore_29 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Z" = ( +/obj/item/stack/tile/floor/steel_dirty, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) + +(1,1,1) = {" +g +g +g +g +g +g +g +g +g +g +a +"} +(2,1,1) = {" +g +s +q +B +B +B +B +B +l +g +g +"} +(3,1,1) = {" +g +c +N +S +t +X +y +t +U +l +g +"} +(4,1,1) = {" +g +c +C +W +t +t +t +t +S +D +g +"} +(5,1,1) = {" +g +c +f +f +W +S +Z +S +S +G +g +"} +(6,1,1) = {" +g +e +W +f +f +W +t +t +t +D +g +"} +(7,1,1) = {" +g +z +W +f +W +S +W +f +S +G +g +"} +(8,1,1) = {" +F +v +Z +I +I +I +I +I +W +j +g +"} +(9,1,1) = {" +g +E +S +f +f +Z +S +f +W +Y +g +"} +(10,1,1) = {" +g +b +W +W +f +S +t +t +t +K +g +"} +(11,1,1) = {" +g +R +W +f +f +W +f +Z +t +K +g +"} +(12,1,1) = {" +g +P +f +W +f +f +S +S +t +K +g +"} +(13,1,1) = {" +g +T +n +S +W +i +S +Z +t +K +g +"} +(14,1,1) = {" +g +Q +T +p +V +H +O +V +V +h +g +"} +(15,1,1) = {" +g +g +k +k +r +k +k +k +k +g +g +"} +(16,1,1) = {" +a +g +g +g +g +g +g +g +g +g +a +"} diff --git a/maps/cynosure/submaps/16x11/Nightclub.dmm b/maps/cynosure/submaps/16x11/Nightclub.dmm new file mode 100644 index 00000000000..c521f417493 --- /dev/null +++ b/maps/cynosure/submaps/16x11/Nightclub.dmm @@ -0,0 +1,718 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aF" = ( +/obj/structure/bed/chair/sofa/black/left{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"bv" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 11 + }, +/turf/simulated/floor/lino, +/area/template_noop) +"bB" = ( +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/pol_13 + }, +/obj/structure/table, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"bI" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/lino, +/area/template_noop) +"ca" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"dm" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"eF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/template_noop) +"eQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"fd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/template_noop) +"hu" = ( +/obj/structure/table/marble, +/obj/random/drinkbottle, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/lino, +/area/template_noop) +"hS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"jD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"lq" = ( +/obj/machinery/floor_light/prebuilt, +/obj/item/flashlight/glowstick, +/turf/simulated/floor/wood, +/area/template_noop) +"mE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/sign/poster/custom{ + dir = 4; + pixel_x = 32; + poster_decl = /decl/poster/nanotrasen/bay_52 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"nt" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"od" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/table/wooden_reinforced, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/template_noop) +"pj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/template_noop) +"qb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"qG" = ( +/obj/structure/windoor_assembly{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/template_noop) +"qP" = ( +/obj/structure/table/marble, +/obj/item/frame, +/turf/simulated/floor/lino, +/area/template_noop) +"sf" = ( +/obj/machinery/vending/sol{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"su" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"sx" = ( +/obj/item/flashlight/glowstick/orange, +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"vL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/device/piano/minimoog, +/turf/simulated/floor/wood, +/area/template_noop) +"vV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"xf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/radio/intercom/entertainment{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"xS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/template_noop) +"yf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/template_noop) +"zf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"AP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Bj" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/template_noop) +"BD" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"BS" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/item/stool{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Cb" = ( +/obj/structure/table/marble, +/turf/simulated/floor/lino, +/area/template_noop) +"Dj" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"DV" = ( +/turf/template_noop, +/area/template_noop) +"FE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/template_noop) +"GJ" = ( +/obj/structure/table/marble, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/obj/item/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/flame/lighter/random{ + pixel_x = -9 + }, +/obj/random/cigarettes, +/turf/simulated/floor/lino, +/area/template_noop) +"GM" = ( +/obj/item/stool{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"HN" = ( +/turf/simulated/floor/wood, +/area/template_noop) +"HY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/template_noop) +"IG" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"IN" = ( +/obj/random/crate, +/obj/item/stack/tile/floor/dark{ + amount = 8 + }, +/obj/item/stack/material/marble, +/obj/random/material, +/obj/random/tech_supply, +/obj/random/tech_supply/nofail, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"JC" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"JK" = ( +/obj/item/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"JT" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Kk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"MG" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/template_noop) +"MI" = ( +/obj/machinery/floor_light/prebuilt, +/obj/item/flashlight/glowstick/yellow, +/turf/simulated/floor/plating, +/area/template_noop) +"MQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/template_noop) +"Ot" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Pn" = ( +/obj/structure/table/marble, +/obj/item/stack/material/marble, +/turf/simulated/floor/lino, +/area/template_noop) +"PO" = ( +/obj/machinery/floor_light/prebuilt, +/turf/simulated/floor/wood, +/area/template_noop) +"Qf" = ( +/obj/structure/table, +/turf/simulated/floor/lino, +/area/template_noop) +"Qv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/storage/wallet/random, +/obj/random/cash, +/obj/item/megaphone, +/turf/simulated/floor/wood, +/area/template_noop) +"QN" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"Rm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Ru" = ( +/obj/machinery/light_construct{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Sj" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"TQ" = ( +/turf/simulated/floor/lino, +/area/template_noop) +"Uk" = ( +/obj/structure/table/marble, +/obj/structure/sign/poster/nanotrasen{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/bay_44 + }, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/lino, +/area/template_noop) +"Ul" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/cap/hidden/supply, +/turf/simulated/floor/plating, +/area/template_noop) +"Ut" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Vt" = ( +/obj/machinery/floor_light/prebuilt, +/obj/item/flashlight/glowstick/blue, +/turf/simulated/floor/plating, +/area/template_noop) +"Xg" = ( +/obj/structure/bed/chair/sofa/black/right{ + dir = 4 + }, +/obj/random/contraband, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Xi" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/simulated/floor/lino, +/area/template_noop) +"Xn" = ( +/obj/machinery/media/jukebox, +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Xw" = ( +/obj/random/junk, +/turf/simulated/floor/lino, +/area/template_noop) +"XF" = ( +/obj/item/flashlight/glowstick/red, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"YN" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/template_noop) +"Zv" = ( +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"ZB" = ( +/obj/structure/table/glass, +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/bay_27 + }, +/obj/random/drinkbottle, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 11 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"ZW" = ( +/obj/machinery/floor_light/prebuilt, +/turf/simulated/floor/plating, +/area/template_noop) + +(1,1,1) = {" +QN +QN +dm +QN +QN +QN +QN +QN +QN +QN +DV +"} +(2,1,1) = {" +QN +bI +MQ +MG +qG +BD +Sj +aF +Xg +QN +QN +"} +(3,1,1) = {" +QN +qP +Bj +TQ +Xi +JK +eQ +Zv +Kk +qb +QN +"} +(4,1,1) = {" +QN +GJ +TQ +TQ +Pn +JK +eQ +Ut +Zv +ZB +QN +"} +(5,1,1) = {" +QN +Uk +Xw +TQ +Qf +JK +nt +dm +Zv +Rm +QN +"} +(6,1,1) = {" +QN +hu +Cb +bv +Qf +JK +nt +dm +Zv +su +QN +"} +(7,1,1) = {" +QN +BS +GM +Dj +Dj +Zv +eQ +sf +Zv +bB +QN +"} +(8,1,1) = {" +pj +Ul +yf +eF +fd +Ot +AP +Zv +Zv +Rm +QN +"} +(9,1,1) = {" +QN +Xn +Dj +Dj +IN +Zv +eQ +JC +JC +IG +QN +"} +(10,1,1) = {" +QN +Vt +ZW +ZW +ZW +PO +XF +Qv +od +zf +QN +"} +(11,1,1) = {" +QN +ZW +ZW +ZW +MI +PO +hS +xf +HN +HN +QN +"} +(12,1,1) = {" +QN +ZW +ZW +ZW +ZW +PO +hS +vL +HN +YN +QN +"} +(13,1,1) = {" +QN +ZW +ZW +ZW +ZW +PO +hS +HY +HN +HN +QN +"} +(14,1,1) = {" +QN +ZW +ZW +ZW +ZW +lq +hS +xS +FE +ca +QN +"} +(15,1,1) = {" +QN +QN +sx +Ru +jD +jD +mE +vV +JT +QN +QN +"} +(16,1,1) = {" +DV +QN +QN +QN +QN +QN +QN +QN +QN +QN +DV +"} diff --git a/maps/cynosure/submaps/5x7/MedicalBreakRoom.dmm b/maps/cynosure/submaps/5x7/MedicalBreakRoom.dmm new file mode 100644 index 00000000000..0ff28bb9e43 --- /dev/null +++ b/maps/cynosure/submaps/5x7/MedicalBreakRoom.dmm @@ -0,0 +1,179 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"b" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/template_noop) +"f" = ( +/obj/structure/bed/chair/sofa/blue/right{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"i" = ( +/obj/structure/table/sifwoodentable, +/obj/random/mre, +/obj/random/drinkbottle, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"k" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"m" = ( +/obj/structure/reagent_dispensers/water_cooler/full{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"p" = ( +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"q" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/sifwoodentable, +/obj/item/storage/box/cups, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"u" = ( +/obj/structure/table/sifwoodentable, +/obj/item/folder/white, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/random/maintenance/medical, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"w" = ( +/obj/random/obstruction, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"y" = ( +/turf/simulated/wall/r_wall, +/area/template_noop) +"z" = ( +/obj/structure/bed/chair/sofa/blue/left{ + dir = 1 + }, +/obj/random/contraband, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"E" = ( +/obj/structure/table/sifwoodentable, +/obj/random/snack, +/obj/random/drinksoft, +/obj/structure/sign/poster/custom{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/nanotrasen/bay_25 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"H" = ( +/obj/structure/bed/chair/sofa/blue/left{ + dir = 8 + }, +/obj/random/maintenance/medical, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"J" = ( +/obj/item/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"K" = ( +/obj/structure/table/sifwoodentable, +/obj/random/plushie, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"O" = ( +/obj/structure/bed/chair/sofa/blue/right{ + dir = 1 + }, +/obj/random/maintenance/medical, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) +"P" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"U" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/vending/hotfood{ + dir = 8 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/template_noop) + +(1,1,1) = {" +P +a +a +a +a +a +a +"} +(2,1,1) = {" +P +K +i +z +m +q +a +"} +(3,1,1) = {" +y +E +u +O +p +k +w +"} +(4,1,1) = {" +P +f +H +J +p +U +b +"} +(5,1,1) = {" +P +P +P +P +P +P +P +"} diff --git a/maps/cynosure/submaps/5x7/MedicalWasteStorage.dmm b/maps/cynosure/submaps/5x7/MedicalWasteStorage.dmm new file mode 100644 index 00000000000..bad28caa355 --- /dev/null +++ b/maps/cynosure/submaps/5x7/MedicalWasteStorage.dmm @@ -0,0 +1,285 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall, +/area/template_noop) +"c" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/item/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"f" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"i" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/obj/item/storage/box/syringes, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"k" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/item/stack/tile/floor/white, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/template_noop) +"m" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/structure/loot_pile/maint/trash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"p" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "exposed10-supply" + }, +/obj/structure/disposalpipe/segment, +/obj/item/reagent_containers/syringe{ + icon_state = "broken" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"q" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/cable/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/item/frame/apc, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"u" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/item/ruinedvirusdish, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/filth, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"w" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "exposed10-scrubbers" + }, +/obj/structure/door_assembly/door_assembly_med, +/obj/item/tape/medical, +/turf/simulated/floor/plating, +/area/template_noop) +"y" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"z" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/medical, +/obj/item/reagent_containers/blood/empty, +/obj/item/reagent_containers/hypospray/autoinjector/used, +/obj/item/reagent_containers/hypospray/autoinjector/used, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/structure/sign/poster/custom{ + dir = 8; + pixel_x = -32; + poster_decl = /decl/poster/bay_39 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"E" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/closet/crate/trashcart, +/obj/item/paper/crumpled/bloody, +/obj/random/maintenance/medical, +/obj/item/reagent_containers/hypospray/autoinjector/used, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/expired, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"H" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/obj/random/mouseremains, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"J" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/random/maintenance/medical, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"K" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/item/bodybag, +/obj/item/usedcryobag, +/obj/random/maintenance/medical, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"O" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) +"R" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"U" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/obj/random/medical/lite, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/sink/generic{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/template_noop) + +(1,1,1) = {" +y +R +R +a +R +R +R +"} +(2,1,1) = {" +y +K +i +z +m +q +R +"} +(3,1,1) = {" +y +E +u +O +p +k +w +"} +(4,1,1) = {" +y +f +H +c +J +U +R +"} +(5,1,1) = {" +y +y +y +y +y +y +y +"} diff --git a/maps/cynosure/submaps/5x7/SurgeryTrainingRoom.dmm b/maps/cynosure/submaps/5x7/SurgeryTrainingRoom.dmm new file mode 100644 index 00000000000..72ac54328d4 --- /dev/null +++ b/maps/cynosure/submaps/5x7/SurgeryTrainingRoom.dmm @@ -0,0 +1,286 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall, +/area/template_noop) +"b" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/medical, +/obj/random/maintenance/medical, +/obj/item/storage/box/monkeycubes{ + pixel_y = -3 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"c" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"m" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/clothing/under/rank/medical/scrubs{ + pixel_y = -4 + }, +/obj/item/clothing/head/surgery{ + pixel_y = 4 + }, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"n" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/frame/computer{ + dir = 8 + }, +/obj/item/circuitboard/operating, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"s" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/obj/machinery/iv_drip, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"v" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/pol_4 + }, +/obj/structure/sink/generic{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"y" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"D" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/random/maintenance/medical, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"E" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/medical/lite, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"G" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/random/maintenance/medical, +/obj/item/storage/box/gloves, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"J" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/storage/firstaid/surgery, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"K" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/structure/morgue{ + dir = 2 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"L" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"M" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"R" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access = list(45); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"T" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 1 + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/template_noop) +"W" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/cable/green{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + operating = 0; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) +"Z" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/optable, +/obj/effect/decal/cleanable/blood, +/obj/item/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/template_noop) + +(1,1,1) = {" +y +M +M +M +M +M +M +"} +(2,1,1) = {" +y +K +D +J +b +W +M +"} +(3,1,1) = {" +y +G +c +E +L +T +R +"} +(4,1,1) = {" +y +m +s +Z +n +v +a +"} +(5,1,1) = {" +y +y +y +y +y +y +y +"} diff --git a/maps/cynosure/submaps/7x7/JanitorCloset.dmm b/maps/cynosure/submaps/7x7/JanitorCloset.dmm new file mode 100644 index 00000000000..b9fd202ff4b --- /dev/null +++ b/maps/cynosure/submaps/7x7/JanitorCloset.dmm @@ -0,0 +1,381 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/sign/poster/custom{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/nanotrasen/pol_6 + }, +/turf/template_noop, +/area/template_noop) +"e" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/effect/spider/stickyweb, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + name = "Janitorial RC"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"j" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/machinery/light_construct{ + dir = 4 + }, +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"l" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/sink/generic{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled, +/area/template_noop) +"o" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"p" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"q" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/item/camera_assembly, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"r" = ( +/obj/effect/spider/stickyweb, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"t" = ( +/obj/effect/spider/stickyweb, +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"u" = ( +/obj/effect/spider/stickyweb, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"y" = ( +/obj/item/stool{ + dir = 1 + }, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"z" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/effect/decal/remains/mouse, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"C" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"D" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/obj/effect/spider/stickyweb, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"G" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/item/stool/padded{ + dir = 8 + }, +/obj/random/plushie, +/obj/effect/spider/stickyweb, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"H" = ( +/obj/effect/spider/stickyweb, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"I" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/loot_pile/maint/trash, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"J" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/lights/mixed, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/spider/stickyweb, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"K" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/spider/stickyweb, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"L" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/structure/closet/jcloset, +/obj/item/clothing/mask/gas/clear, +/obj/random/soap, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"M" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"N" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/machinery/disposal, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"O" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/structure/cable, +/obj/effect/spider/stickyweb, +/obj/structure/sign/poster/nanotrasen{ + dir = 8; + pixel_x = -32; + poster_decl = /decl/poster/nanotrasen/pol_7 + }, +/obj/machinery/power/apc{ + name = "south bump"; + operating = 0; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"P" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/obj/effect/spider/stickyweb, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Q" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/closet/crate/trashcart, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/junk, +/obj/effect/spider/stickyweb, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"W" = ( +/obj/random/trash, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"X" = ( +/obj/effect/decal/cleanable/spiderling_remains, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"Z" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) + +(1,1,1) = {" +o +o +o +o +o +o +a +"} +(2,1,1) = {" +C +G +p +K +O +o +o +"} +(3,1,1) = {" +C +J +t +u +z +L +o +"} +(4,1,1) = {" +C +P +y +r +Z +I +o +"} +(5,1,1) = {" +C +e +W +H +D +Q +o +"} +(6,1,1) = {" +C +N +l +M +j +q +o +"} +(7,1,1) = {" +C +o +o +X +o +o +o +"} diff --git a/maps/cynosure/submaps/7x7/PartyRoom.dmm b/maps/cynosure/submaps/7x7/PartyRoom.dmm new file mode 100644 index 00000000000..6755f1b891d --- /dev/null +++ b/maps/cynosure/submaps/7x7/PartyRoom.dmm @@ -0,0 +1,234 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/sign/poster/custom{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/bay_2 + }, +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/table/standard, +/obj/random/toy, +/obj/item/toy/colorballoon{ + color = "#FF00BB" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"d" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"e" = ( +/obj/random/obstruction, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/template_noop) +"f" = ( +/obj/structure/table/standard, +/obj/item/wrapping_paper, +/obj/item/toy/colorballoon{ + color = "#FFCC00" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"j" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + operating = 0; + pixel_x = -24 + }, +/obj/structure/cable, +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/nanotrasen/nt_8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"o" = ( +/obj/item/stack/material/cardboard, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"p" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"v" = ( +/obj/machinery/light/small, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"C" = ( +/obj/structure/table/standard, +/obj/item/trash/plate{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/item/toy/colorballoon{ + color = "#00BBFF" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"E" = ( +/obj/item/pizzabox/old, +/obj/item/trash/plate{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/structure/table/standard, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"F" = ( +/obj/structure/table/standard, +/obj/item/trash/plate{ + pixel_y = -6 + }, +/obj/item/clothing/head/cakehat, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"I" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"K" = ( +/obj/random/trash, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"L" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"M" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"N" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"Q" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"R" = ( +/obj/structure/bed/chair/comfy/purp{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"S" = ( +/obj/structure/bed/chair/comfy/green{ + dir = 8 + }, +/obj/structure/sign/poster/custom{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/nt_5 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"V" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/item/trash/plate, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"X" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/obj/item/trash/plate{ + pixel_y = 5 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) +"Y" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"Z" = ( +/obj/structure/table/standard, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/fancy/whitecandle_box, +/obj/item/storage/box/matches{ + pixel_x = -4; + pixel_y = -8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/template_noop) + +(1,1,1) = {" +Y +Y +Y +e +Y +Y +a +"} +(2,1,1) = {" +L +b +p +Q +j +Y +Y +"} +(3,1,1) = {" +L +I +M +X +K +p +Y +"} +(4,1,1) = {" +L +Z +E +F +R +v +Y +"} +(5,1,1) = {" +L +S +V +N +p +o +Y +"} +(6,1,1) = {" +L +C +p +p +p +f +Y +"} +(7,1,1) = {" +L +Y +Y +d +Y +Y +Y +"} diff --git a/maps/cynosure/submaps/8x5/GrowersDen.dmm b/maps/cynosure/submaps/8x5/GrowersDen.dmm new file mode 100644 index 00000000000..bb9c79fcce3 --- /dev/null +++ b/maps/cynosure/submaps/8x5/GrowersDen.dmm @@ -0,0 +1,154 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/reishimycelium, +/turf/simulated/floor/plating, +/area/template_noop) +"c" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"e" = ( +/obj/item/reagent_containers/syringe{ + icon_state = "broken" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"f" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/ambrosiavulgarisseed, +/turf/simulated/floor/plating, +/area/template_noop) +"l" = ( +/obj/random/mouseremains, +/turf/simulated/floor/plating, +/area/template_noop) +"m" = ( +/obj/random/crate, +/obj/random/contraband, +/obj/random/cigarettes, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/cash, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/template_noop) +"t" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plating, +/area/template_noop) +"x" = ( +/obj/item/poster/custom, +/turf/simulated/floor/plating, +/area/template_noop) +"E" = ( +/obj/structure/closet/crate/hydroponics, +/obj/random/contraband, +/obj/item/material/knife/machete/hatchet, +/obj/item/material/minihoe, +/obj/item/tool/wirecutters/clippers/trimmers, +/turf/simulated/floor/plating, +/area/template_noop) +"G" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"K" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/plating, +/area/template_noop) +"L" = ( +/obj/item/reagent_containers/syringe{ + icon_state = "broken" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"U" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/poppyseed, +/turf/simulated/floor/plating, +/area/template_noop) +"V" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"W" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/tobaccoseed, +/turf/simulated/floor/plating, +/area/template_noop) +"Y" = ( +/obj/structure/table/steel, +/obj/random/contraband/nofail, +/obj/random/contraband, +/obj/random/medical, +/obj/machinery/light_construct/small{ + dir = 4 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = -1 + }, +/turf/simulated/floor/plating, +/area/template_noop) + +(1,1,1) = {" +c +c +c +G +c +"} +(2,1,1) = {" +c +f +L +G +c +"} +(3,1,1) = {" +c +W +G +t +c +"} +(4,1,1) = {" +c +U +G +E +c +"} +(5,1,1) = {" +c +b +G +m +c +"} +(6,1,1) = {" +c +l +G +x +c +"} +(7,1,1) = {" +c +K +Y +e +c +"} +(8,1,1) = {" +V +V +V +V +V +"} diff --git a/maps/cynosure/submaps/8x5/HiddenBar.dmm b/maps/cynosure/submaps/8x5/HiddenBar.dmm new file mode 100644 index 00000000000..e3a0947d079 --- /dev/null +++ b/maps/cynosure/submaps/8x5/HiddenBar.dmm @@ -0,0 +1,160 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"c" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"e" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/template_noop) +"f" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/wood, +/area/template_noop) +"l" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"m" = ( +/obj/item/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"p" = ( +/obj/structure/table/reinforced, +/obj/random/drinkbottle, +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/bay_37 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"t" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/glass2/square{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/glass2/square, +/turf/simulated/floor/wood, +/area/template_noop) +"A" = ( +/obj/structure/table, +/obj/item/stack/material/plastic, +/obj/structure/sign/poster{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/bay_36 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"D" = ( +/obj/item/frame/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"J" = ( +/obj/structure/table/gamblingtable, +/obj/item/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 10 + }, +/obj/machinery/light_construct/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"K" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/wood, +/area/template_noop) +"L" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/random/drinkbottle, +/turf/simulated/floor/wood, +/area/template_noop) +"V" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"W" = ( +/obj/item/stool/padded{ + dir = 8 + }, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/template_noop) +"Y" = ( +/turf/simulated/floor/wood, +/area/template_noop) + +(1,1,1) = {" +a +a +a +l +a +"} +(2,1,1) = {" +a +f +L +Y +a +"} +(3,1,1) = {" +a +D +Y +Y +a +"} +(4,1,1) = {" +a +A +t +p +a +"} +(5,1,1) = {" +a +W +m +m +a +"} +(6,1,1) = {" +c +Y +Y +Y +a +"} +(7,1,1) = {" +a +K +J +e +a +"} +(8,1,1) = {" +V +V +V +V +V +"} diff --git a/maps/cynosure/submaps/8x5/Restroom.dmm b/maps/cynosure/submaps/8x5/Restroom.dmm new file mode 100644 index 00000000000..cc78d052bb7 --- /dev/null +++ b/maps/cynosure/submaps/8x5/Restroom.dmm @@ -0,0 +1,148 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"c" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"e" = ( +/obj/item/frame/mirror, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"f" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"l" = ( +/obj/item/tape/engineering, +/turf/simulated/floor/plating, +/area/template_noop) +"m" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stack/tile/floor/freezer{ + amount = 8 + }, +/obj/random/tool/powermaint, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"A" = ( +/obj/machinery/light_construct/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"D" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/plating, +/area/template_noop) +"G" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"K" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"L" = ( +/obj/machinery/light_construct/small{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/soap, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"O" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"Q" = ( +/obj/structure/frame, +/obj/item/circuitboard/recharge_station, +/turf/simulated/floor/plating, +/area/template_noop) +"V" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"W" = ( +/obj/item/frame/apc, +/turf/simulated/floor/plating, +/area/template_noop) +"Y" = ( +/turf/simulated/floor/tiled/freezer, +/area/template_noop) + +(1,1,1) = {" +a +a +a +l +a +"} +(2,1,1) = {" +a +f +a +Q +a +"} +(3,1,1) = {" +a +D +a +O +a +"} +(4,1,1) = {" +a +G +A +G +a +"} +(5,1,1) = {" +a +W +Y +m +a +"} +(6,1,1) = {" +c +Y +Y +Y +a +"} +(7,1,1) = {" +a +K +L +e +a +"} +(8,1,1) = {" +V +V +V +V +V +"} diff --git a/maps/cynosure/submaps/8x5/SquattersDen.dmm b/maps/cynosure/submaps/8x5/SquattersDen.dmm new file mode 100644 index 00000000000..74aca86b4ee --- /dev/null +++ b/maps/cynosure/submaps/8x5/SquattersDen.dmm @@ -0,0 +1,156 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"c" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"e" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"f" = ( +/obj/structure/bed/padded, +/obj/item/clothing/suit/ianshirt, +/obj/item/bedsheet/ian, +/obj/structure/sign/poster/custom{ + dir = 8; + pixel_x = -32; + poster_decl = /decl/poster/vore_69 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"l" = ( +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/template_noop) +"m" = ( +/obj/machinery/light_construct/small, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/plating, +/area/template_noop) +"A" = ( +/obj/structure/closet, +/obj/item/clothing/suit/storage/hooded/costume/ian, +/obj/item/clothing/under/color/grey, +/obj/random/maintenance/cargo, +/obj/random/maintenance/engineering, +/obj/item/clothing/mask/gas/half, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/template_noop) +"D" = ( +/obj/item/trash/ramen, +/obj/structure/mirror{ + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"G" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"K" = ( +/obj/structure/plushie/ian, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/template_noop) +"L" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/toy/plushie/girly_corgi, +/turf/simulated/floor/plating, +/area/template_noop) +"Q" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/plating, +/area/template_noop) +"V" = ( +/turf/simulated/wall/r_concrete, +/area/template_noop) +"W" = ( +/obj/structure/table/rack, +/obj/random/toy, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/tank, +/obj/random/toolbox, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/template_noop) +"Y" = ( +/obj/structure/table/standard, +/obj/random/snack, +/obj/item/reagent_containers/food/drinks/dry_ramen{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/template_noop) + +(1,1,1) = {" +c +c +c +l +c +"} +(2,1,1) = {" +c +f +L +G +c +"} +(3,1,1) = {" +c +D +G +G +c +"} +(4,1,1) = {" +c +A +G +G +c +"} +(5,1,1) = {" +c +W +G +m +c +"} +(6,1,1) = {" +c +G +G +Y +c +"} +(7,1,1) = {" +c +K +Q +e +c +"} +(8,1,1) = {" +V +V +V +V +V +"} diff --git a/maps/cynosure/submaps/8x9/MeetingRoom.dmm b/maps/cynosure/submaps/8x9/MeetingRoom.dmm new file mode 100644 index 00000000000..a5acd09c686 --- /dev/null +++ b/maps/cynosure/submaps/8x9/MeetingRoom.dmm @@ -0,0 +1,312 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"b" = ( +/obj/structure/bed/chair/sofa/brown/right{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/template_noop) +"c" = ( +/turf/simulated/wall/concrete{ + can_open = 1 + }, +/area/template_noop) +"d" = ( +/obj/structure/table/woodentable, +/obj/item/book/bundle/custom_library/nonfiction/viabilityofcorporategov, +/turf/simulated/floor/carpet, +/area/template_noop) +"g" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/random/maintenance, +/turf/simulated/floor/carpet, +/area/template_noop) +"i" = ( +/obj/machinery/light/flamp, +/obj/structure/sign/poster{ + pixel_y = -32; + poster_decl = /decl/poster/pol_9 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"k" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/template_noop) +"l" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/template_noop) +"m" = ( +/turf/template_noop, +/area/template_noop) +"n" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/carpet, +/area/template_noop) +"o" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/random/contraband, +/turf/simulated/floor/carpet, +/area/template_noop) +"q" = ( +/obj/structure/table/woodentable, +/obj/item/paicard, +/turf/simulated/floor/carpet, +/area/template_noop) +"r" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/carpet, +/area/template_noop) +"u" = ( +/obj/structure/reagent_dispensers/water_cooler/full{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"w" = ( +/obj/structure/sign/poster{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/nanotrasen/pol_10 + }, +/turf/simulated/floor/carpet, +/area/template_noop) +"x" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/template_noop) +"z" = ( +/obj/structure/table/woodentable, +/obj/random/mre, +/obj/random/snack, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/wood, +/area/template_noop) +"A" = ( +/obj/structure/sign/poster/custom{ + dir = 8; + pixel_x = -32; + poster_decl = /decl/poster/vore_43 + }, +/turf/simulated/floor/wood/broken, +/area/template_noop) +"B" = ( +/turf/simulated/floor/carpet, +/area/template_noop) +"C" = ( +/obj/effect/spawner/graffiti{ + color = "#FF9300"; + color_secondary = "#A55403"; + graffiti_type = "end" + }, +/turf/simulated/floor/wood, +/area/template_noop) +"D" = ( +/obj/effect/spawner/graffiti{ + color = "#FFF200"; + color_secondary = "#886422"; + graffiti_type = "guy" + }, +/obj/machinery/light/flamp, +/turf/simulated/floor/wood, +/area/template_noop) +"E" = ( +/obj/effect/spawner/graffiti{ + color = "#DA00FF"; + color_secondary = "#810CFF"; + graffiti_type = "revolution" + }, +/turf/simulated/floor/wood, +/area/template_noop) +"G" = ( +/turf/simulated/floor/wood, +/area/template_noop) +"H" = ( +/obj/structure/table/woodentable, +/obj/random/snack, +/turf/simulated/floor/carpet, +/area/template_noop) +"J" = ( +/obj/structure/table/woodentable, +/obj/item/storage/fancy/markers, +/turf/simulated/floor/carpet, +/area/template_noop) +"L" = ( +/obj/structure/table/woodentable, +/obj/random/cigarettes, +/obj/item/clothing/glasses/threedglasses, +/turf/simulated/floor/carpet, +/area/template_noop) +"M" = ( +/turf/simulated/floor/wood/broken, +/area/template_noop) +"O" = ( +/obj/structure/loot_pile/maint/junk, +/obj/machinery/power/apc{ + coverlocked = 0; + locked = 0; + name = "south bump"; + operating = 0; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"Q" = ( +/obj/structure/bed/chair/sofa/brown/right{ + dir = 8 + }, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/carpet, +/area/template_noop) +"R" = ( +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/turf/simulated/floor/carpet, +/area/template_noop) +"S" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 4 + }, +/obj/random/snack, +/turf/simulated/floor/carpet, +/area/template_noop) +"T" = ( +/obj/random/maintenance, +/turf/simulated/floor/carpet, +/area/template_noop) +"V" = ( +/obj/machinery/light_construct/flamp, +/turf/simulated/floor/wood/broken, +/area/template_noop) +"W" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/cups{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/random/maintenance, +/obj/random/powercell, +/turf/simulated/floor/wood, +/area/template_noop) +"X" = ( +/obj/structure/table/woodentable, +/obj/random/contraband, +/obj/random/drinkbottle, +/turf/simulated/floor/carpet, +/area/template_noop) +"Z" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/wood, +/area/template_noop) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +D +G +G +G +A +Z +z +a +"} +(3,1,1) = {" +a +w +x +S +b +T +C +W +a +"} +(4,1,1) = {" +a +n +X +q +L +k +G +M +c +"} +(5,1,1) = {" +a +g +H +d +J +o +G +O +a +"} +(6,1,1) = {" +a +R +Q +l +r +B +M +u +a +"} +(7,1,1) = {" +a +V +G +G +E +G +i +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +m +"} diff --git a/maps/cynosure/submaps/8x9/RitualRoom.dmm b/maps/cynosure/submaps/8x9/RitualRoom.dmm new file mode 100644 index 00000000000..ba9072188ef --- /dev/null +++ b/maps/cynosure/submaps/8x9/RitualRoom.dmm @@ -0,0 +1,273 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"d" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"f" = ( +/obj/structure/table/sifwoodentable, +/obj/item/godfig{ + desc = "A holy figure of some kind of energy formation."; + icon_state = "singularity" + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"g" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"m" = ( +/turf/template_noop, +/area/template_noop) +"n" = ( +/obj/item/storage/backpack/cultpack, +/obj/item/clothing/suit/storage/hooded/chaplain_hoodie, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/clean, +/obj/structure/sign/poster/custom{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/vore_100 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"q" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"r" = ( +/obj/effect/spawner/graffiti{ + color = "#DA0000"; + color_secondary = "#810C0C"; + graffiti_type = "rune4" + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"t" = ( +/obj/structure/flora/pottedplant/dead, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"u" = ( +/obj/effect/spawner/graffiti{ + color = "#DA0000"; + color_secondary = "#810C0C"; + graffiti_type = "rune6" + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"x" = ( +/obj/structure/table/sifwoodentable, +/obj/item/flame/candle/black, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"z" = ( +/obj/effect/spawner/graffiti{ + color = "#DA0000"; + color_secondary = "#810C0C"; + graffiti_type = "rune5" + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"A" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"C" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"D" = ( +/obj/effect/spawner/graffiti{ + color = "#DA0000"; + color_secondary = "#810C0C"; + graffiti_type = "rune1" + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"F" = ( +/obj/effect/spawner/graffiti{ + color = "#DA0000"; + color_secondary = "#810C0C"; + graffiti_type = "rune2" + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"H" = ( +/obj/structure/table/sifwoodentable, +/obj/item/flame/candle/black, +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"L" = ( +/obj/structure/table/bench/sifwooden/padded, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"M" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"N" = ( +/obj/effect/spawner/graffiti{ + color = "#DA0000"; + color_secondary = "#810C0C"; + graffiti_type = "rune3" + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"O" = ( +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"S" = ( +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"T" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"V" = ( +/obj/item/stool/padded, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"W" = ( +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"X" = ( +/obj/structure/table/sifwoodentable, +/obj/item/storage/fancy/blackcandle_box{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/flame/lighter/random{ + pixel_x = -6 + }, +/obj/item/storage/bible/booze{ + icon_state = "tome"; + name = "tome"; + pixel_x = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Y" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Z" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/dark, +/area/template_noop) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +D +M +d +N +M +Z +z +a +"} +(3,1,1) = {" +a +W +x +S +L +T +C +W +a +"} +(4,1,1) = {" +a +n +X +q +L +W +L +g +a +"} +(5,1,1) = {" +a +g +H +d +L +M +A +O +a +"} +(6,1,1) = {" +a +F +T +S +r +T +S +u +a +"} +(7,1,1) = {" +a +V +f +t +L +Y +t +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +m +"} diff --git a/maps/cynosure/submaps/9x10/PressureChamber.dmm b/maps/cynosure/submaps/9x10/PressureChamber.dmm new file mode 100644 index 00000000000..47967f747fe --- /dev/null +++ b/maps/cynosure/submaps/9x10/PressureChamber.dmm @@ -0,0 +1,215 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall, +/area/template_noop) +"d" = ( +/obj/random/crate, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/bomb_supply, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/template_noop) +"e" = ( +/obj/item/storage/briefcase/inflatable{ + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"l" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"m" = ( +/obj/item/tape/atmos, +/turf/simulated/floor/plating, +/area/template_noop) +"s" = ( +/obj/machinery/door/airlock{ + name = "Construction Area" + }, +/obj/item/tape/atmos, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"t" = ( +/obj/item/frame/apc, +/turf/simulated/floor/plating, +/area/template_noop) +"y" = ( +/turf/template_noop, +/area/template_noop) +"z" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/template_noop) +"D" = ( +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/plating, +/area/template_noop) +"F" = ( +/obj/random/crate, +/obj/random/maintenance/engineering, +/obj/random/toolbox, +/obj/random/tool/powermaint, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/template_noop) +"G" = ( +/obj/machinery/button/windowtint{ + id = "PressureChamber"; + pixel_x = 22; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"J" = ( +/obj/structure/window/reinforced/polarized/full{ + id = "PressureChamber" + }, +/turf/simulated/floor/plating, +/area/template_noop) +"K" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/template_noop) +"L" = ( +/obj/random/crate, +/obj/random/tank, +/obj/random/tank, +/obj/random/tank, +/obj/random/tank, +/obj/item/clothing/mask/gas/zaddat, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/template_noop) +"N" = ( +/obj/item/inflatable/door, +/turf/simulated/floor/plating, +/area/template_noop) +"O" = ( +/obj/item/book/manual/atmospipes, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"T" = ( +/obj/item/inflatable/door/torn, +/turf/simulated/floor/plating, +/area/template_noop) +"Y" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"Z" = ( +/turf/simulated/floor/plating, +/area/template_noop) + +(1,1,1) = {" +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +"} +(2,1,1) = {" +Y +Z +Z +Z +T +Z +N +Z +F +Y +"} +(3,1,1) = {" +Y +Z +Z +Z +l +G +Z +Z +Z +Y +"} +(4,1,1) = {" +Y +Z +Z +Z +Y +J +a +e +Z +Y +"} +(5,1,1) = {" +Y +Z +Z +Z +Y +D +O +Z +Z +s +"} +(6,1,1) = {" +Y +Z +Z +z +Y +K +Z +Z +Z +Y +"} +(7,1,1) = {" +Y +l +Y +Y +Y +Z +Z +Z +t +Y +"} +(8,1,1) = {" +Y +L +d +Y +Y +m +Y +Y +Y +Y +"} +(9,1,1) = {" +Y +Y +l +Y +y +y +y +y +y +y +"} diff --git a/maps/cynosure/submaps/9x10/Sauna.dmm b/maps/cynosure/submaps/9x10/Sauna.dmm new file mode 100644 index 00000000000..7b6872c1abc --- /dev/null +++ b/maps/cynosure/submaps/9x10/Sauna.dmm @@ -0,0 +1,219 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"e" = ( +/obj/random/crate, +/obj/random/tool/powermaint, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/item/frame/light, +/turf/simulated/floor/plating, +/area/template_noop) +"l" = ( +/obj/item/stack/tile/wood/sif{ + amount = 5 + }, +/obj/machinery/light_construct/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"m" = ( +/obj/item/tape/engineering, +/turf/simulated/floor/plating, +/area/template_noop) +"r" = ( +/obj/item/stack/material/plastic{ + amount = 20 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"s" = ( +/obj/machinery/door/airlock{ + name = "Construction Area" + }, +/obj/item/tape/engineering, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"t" = ( +/obj/item/frame/apc, +/turf/simulated/floor/plating, +/area/template_noop) +"y" = ( +/turf/template_noop, +/area/template_noop) +"A" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"C" = ( +/obj/structure/closet, +/obj/item/towel/random, +/obj/item/towel/random, +/turf/simulated/floor/plating, +/area/template_noop) +"F" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"G" = ( +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/template_noop) +"I" = ( +/obj/item/stack/material/glass/reinforced{ + amount = 10 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"J" = ( +/obj/item/stack/tile/wood/sif{ + amount = 5 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"K" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/template_noop) +"L" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/template_noop) +"N" = ( +/obj/structure/table/bench, +/obj/machinery/light_construct/small{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/template_noop) +"O" = ( +/obj/structure/table/bench, +/turf/simulated/floor/wood/sif, +/area/template_noop) +"R" = ( +/obj/structure/windoor_assembly, +/turf/simulated/floor/plating, +/area/template_noop) +"T" = ( +/turf/simulated/floor/wood/sif, +/area/template_noop) +"Z" = ( +/turf/simulated/floor/plating, +/area/template_noop) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +N +O +O +T +K +Z +Z +F +a +"} +(3,1,1) = {" +a +O +T +T +Z +Z +Z +Z +Z +a +"} +(4,1,1) = {" +a +O +T +T +Z +Z +r +e +Z +a +"} +(5,1,1) = {" +a +O +T +T +J +I +Z +Z +Z +s +"} +(6,1,1) = {" +a +O +Z +Z +A +Z +Z +Z +C +a +"} +(7,1,1) = {" +a +l +Z +G +R +Z +Z +Z +t +a +"} +(8,1,1) = {" +a +L +L +a +a +m +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +y +y +y +y +y +y +"} diff --git a/maps/cynosure/submaps/9x10/ShootingRange.dmm b/maps/cynosure/submaps/9x10/ShootingRange.dmm new file mode 100644 index 00000000000..fdf72ef3b6f --- /dev/null +++ b/maps/cynosure/submaps/9x10/ShootingRange.dmm @@ -0,0 +1,341 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"e" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/gun/energy/laser/practice{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"f" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/frame, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"j" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"k" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"l" = ( +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"m" = ( +/obj/item/tape/police, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/template_noop) +"n" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/target_stake, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"o" = ( +/obj/item/frame/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"p" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"s" = ( +/obj/machinery/door/airlock{ + name = "Construction Area" + }, +/obj/item/tape/police, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"t" = ( +/obj/machinery/magnetic_controller{ + autolink = 1; + density = 0; + pixel_y = -30 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + operating = 0; + pixel_x = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"v" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/vore_37 + }, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"w" = ( +/obj/machinery/magnetic_module, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/template_noop) +"x" = ( +/obj/random/crate, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/storage/box/practiceshells/large, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/s45/practice, +/obj/item/ammo_magazine/s45/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/turf/simulated/floor/plating, +/area/template_noop) +"y" = ( +/turf/template_noop, +/area/template_noop) +"B" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"F" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"G" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"I" = ( +/obj/effect/spawner/graffiti{ + color = "#DA0000"; + color_secondary = "#810C0C"; + graffiti_type = "matt" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"L" = ( +/obj/random/crate, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/sunglasses/big, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/plating, +/area/template_noop) +"M" = ( +/obj/machinery/door/window/northleft, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"N" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"O" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"Q" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/poster/nanotrasen, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"T" = ( +/obj/structure/target_stake, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"U" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) +"X" = ( +/obj/structure/frame{ + anchored = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"Y" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light_construct, +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"Z" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/template_noop) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +N +N +o +N +N +U +X +Q +a +"} +(3,1,1) = {" +a +n +N +N +N +I +U +k +Y +a +"} +(4,1,1) = {" +a +N +w +N +N +N +U +e +F +a +"} +(5,1,1) = {" +a +j +N +T +N +N +U +k +F +s +"} +(6,1,1) = {" +a +O +O +O +O +O +Z +f +v +a +"} +(7,1,1) = {" +a +l +l +G +l +B +p +M +t +a +"} +(8,1,1) = {" +a +L +x +a +a +m +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +y +y +y +y +y +y +"} diff --git a/maps/cynosure/submaps/9x10/Theater.dmm b/maps/cynosure/submaps/9x10/Theater.dmm new file mode 100644 index 00000000000..f33fff955ee --- /dev/null +++ b/maps/cynosure/submaps/9x10/Theater.dmm @@ -0,0 +1,278 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"d" = ( +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/template_noop) +"g" = ( +/obj/machinery/door/airlock{ + name = "Construction Area" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"h" = ( +/obj/item/camera_assembly{ + pixel_y = -7 + }, +/obj/structure/sign/poster{ + pixel_y = -32; + poster_decl = /decl/poster/bay_28 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"i" = ( +/obj/structure/closet/crate/nanothreads, +/obj/item/pen/crayon/marker/mime, +/obj/item/clothing/shoes/mime, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/under/mime, +/obj/item/clothing/mask/gas/mime, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/template_noop) +"m" = ( +/obj/structure/table/bench, +/obj/item/stack/tile/carpet, +/turf/simulated/floor/wood, +/area/template_noop) +"p" = ( +/obj/random/junk, +/turf/simulated/floor/wood, +/area/template_noop) +"q" = ( +/obj/item/bikehorn, +/obj/effect/floor_decal/spline/plain, +/obj/structure/curtain{ + color = "#B00000" + }, +/turf/simulated/floor/wood, +/area/template_noop) +"r" = ( +/obj/structure/closet/crate/nanothreads, +/obj/item/clothing/shoes/clown_shoes, +/obj/item/storage/backpack/clown, +/obj/item/clothing/under/rank/clown, +/obj/item/clothing/mask/gas/clown_hat, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/template_noop) +"t" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/curtain{ + color = "#B00000" + }, +/turf/simulated/floor/wood, +/area/template_noop) +"v" = ( +/obj/item/frame/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"x" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/template_noop) +"y" = ( +/obj/item/instrument/violin, +/turf/simulated/floor/wood, +/area/template_noop) +"z" = ( +/obj/item/stack/tile/carpet, +/obj/structure/sign/poster{ + pixel_y = -32; + poster_decl = /decl/poster/vore_96 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"A" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"B" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/template_noop) +"F" = ( +/obj/structure/table/bench, +/turf/simulated/floor/plating, +/area/template_noop) +"G" = ( +/obj/item/frame/apc, +/obj/structure/sign/poster{ + pixel_y = -32; + poster_decl = /decl/poster/bay_6 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"H" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/template_noop) +"L" = ( +/obj/machinery/vending/snix{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"O" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/curtain{ + color = "#B00000" + }, +/obj/effect/spawner/graffiti{ + color = "#A8E61D"; + color_secondary = "#61840F"; + graffiti_type = "face" + }, +/turf/simulated/floor/wood, +/area/template_noop) +"P" = ( +/obj/item/stack/tile/wood{ + amount = 12 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"Q" = ( +/turf/template_noop, +/area/template_noop) +"U" = ( +/obj/effect/decal/cleanable/fruit_smudge{ + color = "#D10000" + }, +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"V" = ( +/obj/structure/table/bench, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/template_noop) +"X" = ( +/turf/simulated/floor/wood, +/area/template_noop) +"Y" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"Z" = ( +/obj/structure/table/bench, +/turf/simulated/floor/wood, +/area/template_noop) + +(1,1,1) = {" +a +H +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +X +X +O +Y +Z +X +Z +L +a +"} +(3,1,1) = {" +a +X +y +t +X +Z +p +Z +z +a +"} +(4,1,1) = {" +a +X +X +t +X +Z +X +Z +B +a +"} +(5,1,1) = {" +a +U +X +t +X +m +P +F +A +g +"} +(6,1,1) = {" +a +X +X +t +d +F +A +V +h +a +"} +(7,1,1) = {" +a +X +X +q +X +v +A +A +G +a +"} +(8,1,1) = {" +a +r +i +a +a +A +a +a +a +a +"} +(9,1,1) = {" +a +a +x +a +Q +Q +Q +Q +Q +Q +"} diff --git a/maps/cynosure/submaps/9x8/GamesRoom.dmm b/maps/cynosure/submaps/9x8/GamesRoom.dmm new file mode 100644 index 00000000000..e6459871620 --- /dev/null +++ b/maps/cynosure/submaps/9x8/GamesRoom.dmm @@ -0,0 +1,308 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"b" = ( +/obj/random/contraband, +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"c" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/random/carp_plushie, +/turf/simulated/floor/wood, +/area/template_noop) +"d" = ( +/obj/machinery/vending/weeb, +/turf/simulated/floor/wood, +/area/template_noop) +"e" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/template_noop) +"j" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/template_noop) +"k" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"l" = ( +/obj/structure/bed/chair/comfy/black, +/obj/random/plushielarge, +/turf/simulated/floor/wood, +/area/template_noop) +"m" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"o" = ( +/obj/machinery/door/airlock{ + name = "Construction Area" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"q" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/template_noop, +/area/template_noop) +"s" = ( +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"u" = ( +/obj/item/stack/tile/wood, +/turf/simulated/floor/plating, +/area/template_noop) +"v" = ( +/obj/structure/sign/poster/custom{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/pol_15 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"x" = ( +/obj/structure/table/gamblingtable, +/obj/item/storage/pill_bottle/dice, +/obj/item/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"y" = ( +/obj/effect/spawner/graffiti{ + color = "#2D2D2D"; + color_secondary = "#000000"; + graffiti_type = "uboa" + }, +/turf/simulated/floor/wood, +/area/template_noop) +"A" = ( +/obj/structure/sign/poster{ + pixel_y = -32; + poster_decl = /decl/poster/bay_13 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"B" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/template_noop) +"C" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"D" = ( +/obj/item/stack/material/wood{ + amount = 24 + }, +/obj/machinery/light_construct/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"E" = ( +/obj/structure/table/gamblingtable, +/obj/random/cash, +/turf/simulated/floor/wood, +/area/template_noop) +"H" = ( +/turf/template_noop, +/area/template_noop) +"I" = ( +/obj/random/plushie, +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"J" = ( +/obj/structure/bed/chair/comfy/black, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/template_noop) +"L" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/plating, +/area/template_noop) +"M" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"N" = ( +/obj/item/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"R" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"S" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards, +/turf/simulated/floor/wood, +/area/template_noop) +"T" = ( +/obj/structure/table/woodentable, +/obj/random/toy, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/template_noop) +"U" = ( +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"V" = ( +/turf/simulated/floor/wood, +/area/template_noop) +"W" = ( +/obj/structure/table/gamblingtable, +/obj/random/drinkbottle, +/turf/simulated/floor/wood, +/area/template_noop) +"Y" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/template_noop) + +(1,1,1) = {" +H +H +q +H +a +a +a +a +"} +(2,1,1) = {" +a +a +B +a +a +U +m +a +"} +(3,1,1) = {" +a +d +e +k +D +N +N +a +"} +(4,1,1) = {" +a +v +Y +R +V +M +A +a +"} +(5,1,1) = {" +a +l +W +x +I +u +M +o +"} +(6,1,1) = {" +a +J +S +E +b +u +u +a +"} +(7,1,1) = {" +a +s +c +j +V +u +R +a +"} +(8,1,1) = {" +a +y +V +V +C +L +T +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +"} diff --git a/maps/cynosure/submaps/9x8/ServerRoom.dmm b/maps/cynosure/submaps/9x8/ServerRoom.dmm new file mode 100644 index 00000000000..86f9f325bad --- /dev/null +++ b/maps/cynosure/submaps/9x8/ServerRoom.dmm @@ -0,0 +1,272 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/concrete, +/area/template_noop) +"b" = ( +/obj/machinery/door/airlock{ + name = "Construction Area" + }, +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"e" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"k" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/template_noop, +/area/template_noop) +"n" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"p" = ( +/turf/template_noop, +/area/template_noop) +"r" = ( +/obj/structure/salvageable/data, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"s" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"t" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/template_noop) +"v" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"x" = ( +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"y" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"z" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"A" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"B" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"F" = ( +/obj/structure/salvageable/computer, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"H" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"J" = ( +/obj/machinery/light_construct/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"K" = ( +/obj/structure/salvageable/server, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"N" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/salvageable/personal, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"O" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"Q" = ( +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/nofail, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/maintenance, +/obj/structure/sign/poster/custom{ + pixel_y = -32; + poster_decl = /decl/poster/bay_38 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"R" = ( +/obj/machinery/light_construct/small{ + dir = 1 + }, +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"V" = ( +/obj/structure/salvageable/server, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"W" = ( +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) +"Z" = ( +/obj/structure/sign/poster{ + dir = 8; + pixel_x = -32; + poster_decl = /decl/poster/bay_3 + }, +/obj/item/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/random/technology_scanner, +/obj/item/bikehorn/rubberducky, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/template_noop) + +(1,1,1) = {" +p +p +k +p +a +a +a +a +"} +(2,1,1) = {" +a +a +t +a +a +Z +Q +a +"} +(3,1,1) = {" +a +K +e +B +n +y +N +a +"} +(4,1,1) = {" +a +K +H +K +K +z +F +a +"} +(5,1,1) = {" +a +V +H +H +H +O +x +b +"} +(6,1,1) = {" +a +K +H +K +K +A +r +a +"} +(7,1,1) = {" +a +R +W +s +s +v +J +a +"} +(8,1,1) = {" +a +K +K +K +K +K +K +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +"} diff --git a/maps/cynosure/turfs/outdoors.dm b/maps/cynosure/turfs/outdoors.dm new file mode 100644 index 00000000000..f324b6f9d3d --- /dev/null +++ b/maps/cynosure/turfs/outdoors.dm @@ -0,0 +1,181 @@ +// Sif Planetside stuff +#define O2SIF 0.181 +#define N2SIF 0.819 + +#define MOLES_CELLSIF 114.50978 + +#define MOLES_O2SIF (MOLES_CELLSIF * O2SIF) // O2 value on Sif(18%) +#define MOLES_N2SIF (MOLES_CELLSIF * N2SIF) // N2 value on Sif(82%) + +#define TEMPERATURE_SIF 243.15 // Roughly -30C / -22F +#define TEMPERATURE_ALTSIF 225.15 + +/turf/simulated/floor/outdoors/mud/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/floor/outdoors/rocks/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/floor/tiled/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + outdoors = OUTDOORS_YES + +/turf/simulated/floor/tiled/steel/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + outdoors = OUTDOORS_YES + +/turf/simulated/floor/plating/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + outdoors = OUTDOORS_YES + +/turf/simulated/floor/outdoors/snow/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/floor/outdoors/grass/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/floor/outdoors/dirt/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/mineral/sif + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/mineral/ignore_mapgen/sif + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/mineral/floor/sif + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/mineral/floor/ignore_mapgen/sif + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/mineral/floor/sif/mud + name = "mud" + icon_state = "mud" + sand_icon_state = "mud" + +/turf/simulated/mineral/floor/sif/dirt + name = "sand" + icon_state = "dirt" + sand_icon_state = "dirt" + +/turf/simulated/floor/outdoors/mud/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +// PoI compatability, to stop active edges. +// In hindsight it would've been better to do this first instead of making a billion /sif subtypes above, +// but maybe we can transition to this instead now and over time get rid of the /sif subtypes. +// The downside is if someone wants to use this in normal/vaccum they'll need to make a new subtype, but since the typical use case has changed, this might be acceptable. + +/turf/simulated/mineral + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/floor/outdoors + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/floor/water + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/shuttle/floor/alienplating/external + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/shuttle/floor/voidcraft/external + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/shuttle/floor/voidcraft/external/dark + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/shuttle/floor/voidcraft/external/light + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/floor/plating/external + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/floor/tiled/external + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + +/turf/simulated/sky + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_ALTSIF + +// Space mineral tiles are now not the default, so they get demoted to subtype status. + +/turf/simulated/mineral/vacuum + oxygen = 0 + nitrogen = 0 + temperature = TCMB + +/turf/simulated/mineral/ignore_mapgen/vacuum + oxygen = 0 + nitrogen = 0 + temperature = TCMB + +/turf/simulated/mineral/floor/vacuum + oxygen = 0 + nitrogen = 0 + temperature = TCMB + +/turf/simulated/mineral/floor/ignore_mapgen/vacuum + oxygen = 0 + nitrogen = 0 + temperature = TCMB + +// Step trigger to fall down to planet Sif +/obj/effect/step_trigger/teleporter/planetary_fall/sif/find_planet() + planet = planet_sif + +/turf/simulated/floor/concrete/sif/planetuse + oxygen = MOLES_O2SIF + nitrogen = MOLES_N2SIF + temperature = TEMPERATURE_SIF + outdoors = OUTDOORS_YES \ No newline at end of file diff --git a/maps/submaps/surface_submaps/mountains/Rockb1.dmm b/maps/submaps/surface_submaps/mountains/Rockb1.dmm index 3029679547a..0aca284a139 100644 --- a/maps/submaps/surface_submaps/mountains/Rockb1.dmm +++ b/maps/submaps/surface_submaps/mountains/Rockb1.dmm @@ -12,7 +12,7 @@ /turf/simulated/mineral/ignore_mapgen, /area/submap/Rockb1) "e" = ( -/turf/simulated/wall/r_wall, +/turf/simulated/wall/r_concrete, /area/submap/Rockb1) "f" = ( /obj/structure/table/woodentable, diff --git a/maps/submaps/surface_submaps/plains/Diner.dmm b/maps/submaps/surface_submaps/plains/Diner.dmm index d6fa3316b41..18a15d30aa3 100644 --- a/maps/submaps/surface_submaps/plains/Diner.dmm +++ b/maps/submaps/surface_submaps/plains/Diner.dmm @@ -9,7 +9,7 @@ /turf/simulated/floor/outdoors/dirt, /area/submap/Diner) "ad" = ( -/turf/simulated/wall, +/turf/simulated/wall/concrete, /area/submap/Diner) "ae" = ( /obj/structure/window/reinforced/full, @@ -52,7 +52,7 @@ /area/submap/Diner) "am" = ( /obj/structure/sink/kitchen, -/turf/simulated/wall, +/turf/simulated/wall/concrete, /area/submap/Diner) "an" = ( /obj/structure/flora/tree/sif, diff --git a/maps/submaps/surface_submaps/wilderness/borglab.dmm b/maps/submaps/surface_submaps/wilderness/borglab.dmm index b2865e495de..8975b8af155 100644 --- a/maps/submaps/surface_submaps/wilderness/borglab.dmm +++ b/maps/submaps/surface_submaps/wilderness/borglab.dmm @@ -1,227 +1,227 @@ -"aa" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/random/maintenance,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"ab" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/random/energy,/turf/simulated/floor/plating,/area/submap/BorgLab) -"ac" = (/obj/machinery/light_construct{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/turf/simulated/floor/plating,/area/submap/BorgLab) -"ad" = (/obj/effect/floor_decal/sign/c,/turf/simulated/wall/r_wall,/area/submap/BorgLab) -"ae" = (/obj/effect/floor_decal/rust/mono_rusted3,/obj/random/maintenance/research,/mob/living/simple_mob/humanoid/merc/ranged/ionrifle{health = 15; maxHealth = 15},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"af" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/decal/cleanable/generic,/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ag" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/humanoid/merc/melee/sword/poi{health = 15; maxHealth = 15},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ah" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small/emergency/flicker,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/contraband,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ai" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"aj" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/random/energy/highend,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"ak" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"al" = (/obj/effect/floor_decal/techfloor/orange,/obj/random/contraband,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"bj" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/brown,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"bz" = (/obj/random/trash,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"bE" = (/obj/structure/closet/secure_closet/chemical{locked = 0},/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/tool/screwdriver,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"bI" = (/obj/structure/window/reinforced,/obj/structure/grille/broken,/obj/item/weapon/material/shard{pixel_y = 10},/obj/item/weapon/material/shard{pixel_x = 6},/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) -"bL" = (/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/BorgLab) -"bN" = (/obj/machinery/artifact_analyser,/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"bY" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/structure/loot_pile/surface/bones,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"cA" = (/obj/effect/floor_decal/sign/d,/turf/simulated/wall/r_wall,/area/submap/BorgLab) -"cC" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/freezer,/area/submap/BorgLab) -"cZ" = (/obj/effect/floor_decal/techfloor/orange,/obj/structure/loot_pile/surface/drone,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"dd" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"de" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge,/obj/effect/floor_decal/rust,/obj/machinery/light_construct,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"dK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) -"dT" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"ej" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"eV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/table/standard,/obj/structure/railing,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"fh" = (/obj/effect/floor_decal/rust,/obj/effect/gibspawner/robot,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ga" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/weapon/material/shard{pixel_x = -3; pixel_y = -6},/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"gc" = (/obj/structure/railing{dir = 1},/obj/machinery/light/small/emergency/flicker{dir = 8},/turf/simulated/floor/plating,/area/submap/BorgLab) -"gf" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/item/weapon/cell/super/empty,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"gh" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light_construct{dir = 1},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"gN" = (/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"he" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"hW" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) -"ic" = (/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"if" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/single,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ii" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"iS" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"iY" = (/obj/structure/loot_pile/maint/boxfort,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/BorgLab) -"jf" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/plating,/area/submap/BorgLab) -"jz" = (/obj/machinery/light/small/emergency/flicker{dir = 8},/obj/effect/floor_decal/rust/color_rustedcee{dir = 4},/obj/machinery/button/remote/blast_door{dir = 8; id = "borg"},/turf/simulated/floor/tiled/dark,/area/submap/BorgLab) -"jR" = (/obj/effect/floor_decal/techfloor/orange,/obj/item/weapon/broken_gun/ionrifle,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"kj" = (/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/trash,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"kt" = (/obj/item/device/mass_spectrometer/adv,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"kI" = (/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) -"lz" = (/obj/machinery/light_switch,/turf/simulated/wall/r_wall,/area/submap/BorgLab) -"lJ" = (/obj/effect/floor_decal/rust,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/light/small/emergency/flicker{dir = 1},/turf/simulated/floor/plating,/area/submap/BorgLab) -"lU" = (/obj/machinery/chem_master,/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ma" = (/obj/effect/floor_decal/sign/b,/turf/simulated/wall/r_wall,/area/submap/BorgLab) -"mf" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) -"mi" = (/obj/structure/closet/radiation,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/rust/color_rustedcee,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ms" = (/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) -"mw" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/random/multiple/gun/projectile/rifle,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"mB" = (/obj/machinery/door/window/brigdoor/westright{dir = 2; name = "Containment Pen"; req_one_access = list(43,1)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"mE" = (/obj/effect/floor_decal/techfloor/orange,/obj/item/weapon/storage/backpack/holding/duffle,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"nb" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ne" = (/obj/machinery/door/window/brigdoor/westright{dir = 1; name = "Containment Pen"; req_one_access = list(43,1)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"nk" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"ny" = (/obj/structure/curtain/open/shower,/obj/effect/floor_decal/borderfloor/cee{dir = 4},/obj/effect/floor_decal/rust,/obj/machinery/shower{dir = 4; pixel_x = 5},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"nW" = (/obj/effect/floor_decal/rust,/obj/structure/table,/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"oa" = (/obj/effect/floor_decal/industrial/warning,/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"op" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"pe" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/random/trash,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"pY" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"qa" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/monkeysdelight,/obj/effect/floor_decal/rust/mono_rusted2,/turf/simulated/floor/tiled/dark,/area/submap/BorgLab) -"qW" = (/turf/simulated/floor/plating,/area/submap/BorgLab) -"ra" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"rO" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard{pixel_x = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"rP" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/random/junk,/turf/simulated/floor/plating,/area/submap/BorgLab) -"sr" = (/turf/simulated/floor/outdoors/dirt,/area/template_noop) -"sK" = (/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/plating,/area/submap/BorgLab) -"ta" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/brown,/obj/machinery/light_construct{dir = 8},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) -"th" = (/obj/effect/floor_decal/rust,/obj/structure/table,/obj/random/maintenance/research,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"tr" = (/obj/machinery/light_construct/small{dir = 1},/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/color_rustedfull,/turf/simulated/floor/plating,/area/submap/BorgLab) -"tx" = (/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"ty" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"tX" = (/obj/effect/wingrille_spawn/reinforced,/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) -"ub" = (/obj/effect/floor_decal/industrial/warning,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"ug" = (/obj/machinery/door/window/brigdoor/westright{dir = 2; name = "Containment Pen"; req_one_access = list(43,1)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) -"uQ" = (/obj/effect/gibspawner/human,/obj/random/trash,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"uX" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"wq" = (/obj/structure/table/standard,/obj/item/weapon/phone,/obj/effect/floor_decal/rust/mono_rusted2,/turf/simulated/floor/tiled/dark,/area/submap/BorgLab) -"wt" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"xh" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/gibspawner/human,/obj/random/trash,/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"xk" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/submap/BorgLab) -"xu" = (/obj/machinery/artifact_scanpad,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/rust/mono_rusted3,/obj/machinery/artifact/predefined/hungry_statue,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"xz" = (/obj/structure/bed,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"xO" = (/obj/effect/decal/cleanable/generic,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"xU" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"yq" = (/obj/structure/grille/broken,/obj/item/weapon/material/shard,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"yz" = (/obj/effect/floor_decal/industrial/warning,/obj/item/weapon/material/shard{pixel_x = -3; pixel_y = -6},/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"yB" = (/obj/random/trash,/mob/living/simple_mob/mechanical/mecha/hoverpod,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"yI" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"yR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ze" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/BorgLab) -"zk" = (/turf/simulated/floor/tiled,/area/submap/BorgLab) -"As" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"AI" = (/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Bl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Bq" = (/obj/random/trash,/mob/living/simple_mob/mechanical/mining_drone,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Cf" = (/obj/structure/table/standard,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/floor_decal/rust,/obj/item/weapon/module/power_control,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Cz" = (/obj/item/stack/material/phoron{amount = 10},/turf/simulated/floor/plating,/area/submap/BorgLab) -"CA" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"CS" = (/obj/effect/floor_decal/rust,/obj/effect/gibspawner/robot,/turf/simulated/floor/plating,/area/submap/BorgLab) -"CX" = (/obj/structure/table/standard,/obj/random/junk,/obj/random/trash,/obj/random/maintenance/research,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Dj" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Dq" = (/turf/template_noop,/area/submap/BorgLab) -"Ds" = (/obj/effect/floor_decal/rust,/obj/structure/closet/firecloset/full/double,/obj/effect/floor_decal/rust/color_rustedfull,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Dv" = (/obj/structure/toilet,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/freezer,/area/submap/BorgLab) -"DF" = (/turf/template_noop,/area/template_noop) -"DW" = (/obj/random/trash,/obj/random/maintenance/research,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Fj" = (/obj/effect/floor_decal/industrial/warning,/obj/item/weapon/material/shard{pixel_y = 10},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Ft" = (/obj/effect/floor_decal/industrial/warning,/obj/random/junk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Fu" = (/obj/item/weapon/storage/box/beakers,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Fv" = (/obj/structure/table/standard,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Gy" = (/obj/random/maintenance/research,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Gz" = (/mob/living/simple_mob/mechanical/mining_drone,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"GA" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/submap/BorgLab) -"GC" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"GS" = (/obj/item/stack/material/gold{amount = 25},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Ic" = (/obj/random/trash,/mob/living/simple_mob/mechanical/mecha/ripley/deathripley,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Jd" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Jh" = (/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard,/obj/effect/floor_decal/rust/mono_rusted3,/obj/random/trash,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Jm" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Jo" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/item/weapon/material/shard{pixel_y = 10},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"Jp" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Jr" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"JZ" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"KH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/weapon/material/shard{pixel_y = 10},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) -"Lr" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille/broken,/obj/item/weapon/material/shard{pixel_x = -3; pixel_y = -6},/obj/item/weapon/material/shard{pixel_y = 10},/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"Lz" = (/obj/structure/table/standard,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/trash,/obj/random/maintenance/research,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"LB" = (/obj/item/stack/material/phoron{amount = 10},/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/box/lights/mixed,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/item/stack/material/phoron{amount = 10},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/submap/BorgLab) -"LC" = (/obj/effect/gibspawner/human,/mob/living/simple_mob/mechanical/mecha/odysseus/murdysseus{faction = "corrupt"},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"MT" = (/obj/machinery/space_heater,/obj/effect/floor_decal/rust,/obj/machinery/light/small/emergency/flicker{dir = 4},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Nb" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Nj" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Nq" = (/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Ns" = (/obj/effect/floor_decal/rust,/obj/effect/gibspawner/robot,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Nt" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Nv" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/trash,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"NB" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"NC" = (/obj/structure/grille/broken,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{pixel_y = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Oq" = (/obj/effect/floor_decal/rust,/obj/random/trash,/obj/item/stack/material/phoron{amount = 10},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Oz" = (/obj/item/weapon/pickaxe/plasmacutter,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"OD" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"OH" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) -"OW" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/item/weapon/broken_gun/laserrifle,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Pf" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Qe" = (/obj/effect/map_effect/interval/sound_emitter/energy_gunfight,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Qg" = (/turf/simulated/mineral/ignore_mapgen,/area/template_noop) -"Qn" = (/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Qs" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small/emergency/flicker,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Qz" = (/obj/effect/floor_decal/rust,/obj/structure/loot_pile/surface/drone,/turf/simulated/floor/plating,/area/submap/BorgLab) -"QW" = (/obj/structure/closet/l3closet/general,/obj/effect/floor_decal/rust,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/rust/color_rustedcee,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Rt" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/random/maintenance/research,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"RG" = (/turf/simulated/mineral/ignore_mapgen,/area/submap/BorgLab) -"RL" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) -"RP" = (/turf/simulated/floor/outdoors/dirt,/area/submap/BorgLab) -"Su" = (/obj/effect/floor_decal/techfloor/orange,/obj/item/stack/material/uranium{amount = 15},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Sy" = (/obj/structure/windoor_assembly{dir = 4},/obj/random/trash,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"SG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"SZ" = (/obj/effect/floor_decal/techfloor/orange,/obj/structure/loot_pile/surface/bones,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Tj" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Tp" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Tv" = (/obj/effect/floor_decal/sign/a,/turf/simulated/wall/r_wall,/area/submap/BorgLab) -"TD" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"TN" = (/obj/structure/closet/l3closet/virology,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) -"TU" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) -"TW" = (/obj/effect/gibspawner/human,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Uj" = (/obj/structure/closet/firecloset/full/double,/obj/effect/floor_decal/rust{pixel_y = 1},/obj/machinery/light/small/emergency/flicker{dir = 1},/obj/random/maintenance,/obj/random/maintenance/medical,/obj/effect/floor_decal/rust/color_rustedcee,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Uy" = (/obj/effect/floor_decal/rust,/obj/random/trash,/obj/random/maintenance/research,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Uz" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/borderfloorwhite/cee{dir = 1},/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/freezer,/area/submap/BorgLab) -"UM" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"UV" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) -"UW" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille/broken,/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) -"Vc" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Vh" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Vr" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"VH" = (/obj/structure/cable/blue,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/item/frame/apc,/turf/simulated/floor/plating,/area/submap/BorgLab) -"VU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Wh" = (/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"Wq" = (/obj/effect/floor_decal/rust,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/plating,/area/submap/BorgLab) -"WK" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/item/weapon/broken_gun/laser_retro,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/plating,/area/submap/BorgLab) -"WQ" = (/turf/simulated/wall/r_wall,/area/submap/BorgLab) -"WR" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"XG" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/gibspawner/human,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Yk" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Yy" = (/obj/structure/table/steel,/obj/item/weapon/coin/phoron,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/submap/BorgLab) -"YD" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) -"YZ" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Za" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Zc" = (/obj/structure/railing,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Zn" = (/obj/item/device/measuring_tape,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Zq" = (/obj/machinery/door/window/brigdoor/westright{dir = 1; name = "Containment Pen"; req_one_access = list(43,1)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) -"Zt" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Zy" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"ZO" = (/obj/effect/floor_decal/rust,/obj/random/trash,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) - -(1,1,1) = {" -DFDFDFDFsrQgQgDFsrDFQgDFDFDFDFDFDFDFDFDFDFDFsrDFDFDFDFDFDFDFDFDF -DFDFQgsrQgQgQgQgQgQgQgDFDFDFDFDFDFDFDFDFDFDFDFsrDFDFQgQgQgQgDFDF -DFDFQgQgQgQgQgQgQgQgQgQgQgDFDFDFDFDFDFDFDFDFQgbLbLQgQgQgQgQgDFDF -DFDFsrQgWQWQWQWQWQWQQgQgQgQgQgDFQgQgQgDFQgQgQgiYbLbLbLRPDqsrDFDF -DFDFsrQgWQpYtrYyLBWQQgQgQgQgQgQgQgQgQgQgQgQgQgRGRGRGDqDqDqDFDFDF -DFsrQgQgWQVHTUOqCzWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGDqRPDFDFDF -DFDFQgWQWQWQWQGAWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGDqDFDFDF -DFDFQgWQmiUjQWQnDvWQaaxzOWWQuXTDNjWQmwTDbYWQpeWKJrWQWQRGRGDFDFDF -DFQgQgWQrPZayISycCWQjfLCnkWQTWGzuQWQTUyBtxWQWhxOWqWQWQWQRGQgDFDF -srQgQgWQtagfbjicUzWQVcJpabWQUVVcUMWQVcODVcWQyzububWQsKWQWQQgDFDF -DFQgQgWQNsZOCAgNWQWQbIugOHWQYDwtyqWQYDmBYDWQJomBYDlzWQWQWQWQWQDF -srQgWQWQZtmfNCWQWQeVRLejPfghyRrarOiiAsAsifacGCVriSNtWQnylJWQZcsr -QgQgWQTjlUCANqOzhWzkNjXGnWLzFvaeJhaftyCSCXththBlYkNvkIYZWRmsQesr -QgQgWQDjkjktdTUyZtJZagnbYZahFtJmYkaiddoaNbQsFjqWVhSGWQTNDsWQgcDF -QgWQxkCfYkfhGyMTWQWQYDneYDcALrneheadUWdKOHmaKHZqtXTvWQWQWQWQWQDF -QgWQjzRtFuZyDWxUqaWQJdajVUWQJdRLopWQgaTpopWQNBopJdWQqWWQWQQgDFDF -QgWQxkxubNdebEZnwqWQtxIctxWQGSBqtxWQbzAItxWQNjxhtxWQWQWQQgDFDFDF -QgQgWQWQWQWQWQWQWQWQSuNjjRWQSZNjcZWQakNjmEWQQzSZalWQWQRGQgDFDFDF -DFQgQgRGRGRGRGRGRGWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGDFsrDFDF -DFsrQgRGRGRGRGRGRGRGWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGRGRPDFsrDF -DFDFDFRGRGRGiYbLRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGzebLRPDFDFDF -DFsrDFRPbLbLbLRPRPDFDFQgQgQgDFQgQgQgQgQgQgRGRGRGRGRPbLbLRPQgDFDF -DFDFDFRPQgQgbLRPDFDFDFDFDFDFDFDFDFDFQgQgDFDFDFDFRPRPRPQgQgQgDFDF -DFDFsrDFQgQgQgDFDFsrDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFQgQgQgDFDF -DFDFDFDFDFDFDFsrDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFsrDFDFDFDFDFDFDF -"} +"aa" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/random/maintenance,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"ab" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/random/energy,/turf/simulated/floor/plating,/area/submap/BorgLab) +"ac" = (/obj/machinery/light_construct{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/turf/simulated/floor/plating,/area/submap/BorgLab) +"ad" = (/obj/effect/floor_decal/sign/c,/turf/simulated/wall/r_wall,/area/submap/BorgLab) +"ae" = (/obj/effect/floor_decal/rust/mono_rusted3,/obj/random/maintenance/research,/mob/living/simple_mob/humanoid/merc/ranged/ionrifle{health = 15; maxHealth = 15},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"af" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/decal/cleanable/generic,/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ag" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/humanoid/merc/melee/sword/poi{health = 15; maxHealth = 15},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ah" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small/emergency/flicker,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/contraband,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ai" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"aj" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/random/energy/highend,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"ak" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"al" = (/obj/effect/floor_decal/techfloor/orange,/obj/random/contraband,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"bj" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/brown,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"bz" = (/obj/random/trash,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"bE" = (/obj/structure/closet/secure_closet/chemical{locked = 0},/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/tool/screwdriver,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"bI" = (/obj/structure/window/reinforced,/obj/structure/grille/broken,/obj/item/weapon/material/shard{pixel_y = 10},/obj/item/weapon/material/shard{pixel_x = 6},/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) +"bL" = (/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/BorgLab) +"bN" = (/obj/machinery/artifact_analyser,/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"bY" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/structure/loot_pile/surface/bones,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"cA" = (/obj/effect/floor_decal/sign/d,/turf/simulated/wall/r_wall,/area/submap/BorgLab) +"cC" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/freezer,/area/submap/BorgLab) +"cZ" = (/obj/effect/floor_decal/techfloor/orange,/obj/structure/loot_pile/surface/drone,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"dd" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"de" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge,/obj/effect/floor_decal/rust,/obj/machinery/light_construct,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"dK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) +"dT" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) +"ej" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"eV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/table/standard,/obj/structure/railing,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"fh" = (/obj/effect/floor_decal/rust,/obj/effect/gibspawner/robot,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ga" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/weapon/material/shard{pixel_x = -3; pixel_y = -6},/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"gc" = (/obj/structure/railing{dir = 1},/obj/machinery/light/small/emergency/flicker{dir = 8},/turf/simulated/floor/plating,/area/submap/BorgLab) +"gf" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/item/weapon/cell/super/empty,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"gh" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light_construct{dir = 1},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"gN" = (/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) +"he" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"hW" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) +"ic" = (/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"if" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/single,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ii" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"iS" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"iY" = (/obj/structure/loot_pile/maint/boxfort,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/BorgLab) +"jf" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/plating,/area/submap/BorgLab) +"jz" = (/obj/machinery/light/small/emergency/flicker{dir = 8},/obj/effect/floor_decal/rust/color_rustedcee{dir = 4},/obj/machinery/button/remote/blast_door{dir = 8; id = "borg"},/turf/simulated/floor/tiled/dark,/area/submap/BorgLab) +"jR" = (/obj/effect/floor_decal/techfloor/orange,/obj/item/weapon/broken_gun/ionrifle,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"kj" = (/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/trash,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"kt" = (/obj/item/device/mass_spectrometer/adv,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"kI" = (/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) +"lz" = (/obj/machinery/light_switch,/turf/simulated/wall/r_wall,/area/submap/BorgLab) +"lJ" = (/obj/effect/floor_decal/rust,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/light/small/emergency/flicker{dir = 1},/turf/simulated/floor/plating,/area/submap/BorgLab) +"lU" = (/obj/machinery/chem_master,/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ma" = (/obj/effect/floor_decal/sign/b,/turf/simulated/wall/r_wall,/area/submap/BorgLab) +"mf" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) +"mi" = (/obj/structure/closet/radiation,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/rust/color_rustedcee,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ms" = (/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) +"mw" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/random/multiple/gun/projectile/rifle,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"mB" = (/obj/machinery/door/window/brigdoor/westright{dir = 2; name = "Containment Pen"; req_one_access = list(43,1)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"mE" = (/obj/effect/floor_decal/techfloor/orange,/obj/item/weapon/storage/backpack/holding/duffle,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"nb" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ne" = (/obj/machinery/door/window/brigdoor/westright{dir = 1; name = "Containment Pen"; req_one_access = list(43,1)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"nk" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) +"ny" = (/obj/structure/curtain/open/shower,/obj/effect/floor_decal/borderfloor/cee{dir = 4},/obj/effect/floor_decal/rust,/obj/machinery/shower{dir = 4; pixel_x = 5},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"nW" = (/obj/effect/floor_decal/rust,/obj/structure/table,/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"oa" = (/obj/effect/floor_decal/industrial/warning,/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"op" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"pe" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/random/trash,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"pY" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"qa" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/monkeysdelight,/obj/effect/floor_decal/rust/mono_rusted2,/turf/simulated/floor/tiled/dark,/area/submap/BorgLab) +"qW" = (/turf/simulated/floor/plating,/area/submap/BorgLab) +"ra" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"rO" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard{pixel_x = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"rP" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/random/junk,/turf/simulated/floor/plating,/area/submap/BorgLab) +"sr" = (/turf/simulated/floor/outdoors/dirt,/area/template_noop) +"sK" = (/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/plating,/area/submap/BorgLab) +"ta" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/brown,/obj/machinery/light_construct{dir = 8},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) +"th" = (/obj/effect/floor_decal/rust,/obj/structure/table,/obj/random/maintenance/research,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"tr" = (/obj/machinery/light_construct/small{dir = 1},/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/color_rustedfull,/turf/simulated/floor/plating,/area/submap/BorgLab) +"tx" = (/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"ty" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) +"tX" = (/obj/effect/wingrille_spawn/reinforced,/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) +"ub" = (/obj/effect/floor_decal/industrial/warning,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"ug" = (/obj/machinery/door/window/brigdoor/westright{dir = 2; name = "Containment Pen"; req_one_access = list(43,1)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) +"uQ" = (/obj/effect/gibspawner/human,/obj/random/trash,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"uX" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"wq" = (/obj/structure/table/standard,/obj/item/weapon/phone,/obj/effect/floor_decal/rust/mono_rusted2,/turf/simulated/floor/tiled/dark,/area/submap/BorgLab) +"wt" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"xh" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/gibspawner/human,/obj/random/trash,/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"xk" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/submap/BorgLab) +"xu" = (/obj/machinery/artifact_scanpad,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/rust/mono_rusted3,/obj/machinery/artifact/predefined/hungry_statue,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"xz" = (/obj/structure/bed,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"xO" = (/obj/effect/decal/cleanable/generic,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"xU" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"yq" = (/obj/structure/grille/broken,/obj/item/weapon/material/shard,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"yz" = (/obj/effect/floor_decal/industrial/warning,/obj/item/weapon/material/shard{pixel_x = -3; pixel_y = -6},/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"yB" = (/obj/random/trash,/mob/living/simple_mob/mechanical/mecha/hoverpod,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"yI" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"yR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ze" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/BorgLab) +"zk" = (/turf/simulated/floor/tiled,/area/submap/BorgLab) +"As" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"AI" = (/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Bl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Bq" = (/obj/random/trash,/mob/living/simple_mob/mechanical/mining_drone,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Cf" = (/obj/structure/table/standard,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/floor_decal/rust,/obj/item/weapon/module/power_control,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Cz" = (/obj/item/stack/material/phoron{amount = 10},/turf/simulated/floor/plating,/area/submap/BorgLab) +"CA" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"CS" = (/obj/effect/floor_decal/rust,/obj/effect/gibspawner/robot,/turf/simulated/floor/plating,/area/submap/BorgLab) +"CX" = (/obj/structure/table/standard,/obj/random/junk,/obj/random/trash,/obj/random/maintenance/research,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Dj" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Dq" = (/turf/template_noop,/area/submap/BorgLab) +"Ds" = (/obj/effect/floor_decal/rust,/obj/structure/closet/firecloset/full/double,/obj/effect/floor_decal/rust/color_rustedfull,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Dv" = (/obj/structure/toilet,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/freezer,/area/submap/BorgLab) +"DF" = (/turf/template_noop,/area/template_noop) +"DW" = (/obj/random/trash,/obj/random/maintenance/research,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Fj" = (/obj/effect/floor_decal/industrial/warning,/obj/item/weapon/material/shard{pixel_y = 10},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Ft" = (/obj/effect/floor_decal/industrial/warning,/obj/random/junk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Fu" = (/obj/item/weapon/storage/box/beakers,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Fv" = (/obj/structure/table/standard,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Gy" = (/obj/random/maintenance/research,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Gz" = (/mob/living/simple_mob/mechanical/mining_drone,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"GA" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/submap/BorgLab) +"GC" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"GS" = (/obj/item/stack/material/gold{amount = 25},/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Ic" = (/obj/random/trash,/mob/living/simple_mob/mechanical/mecha/ripley/deathripley,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Jd" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Jh" = (/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard,/obj/effect/floor_decal/rust/mono_rusted3,/obj/random/trash,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Jm" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Jo" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/item/weapon/material/shard{pixel_y = 10},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"Jp" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Jr" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"JZ" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"KH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/weapon/material/shard{pixel_y = 10},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) +"Lr" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille/broken,/obj/item/weapon/material/shard{pixel_x = -3; pixel_y = -6},/obj/item/weapon/material/shard{pixel_y = 10},/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"Lz" = (/obj/structure/table/standard,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/trash,/obj/random/maintenance/research,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"LB" = (/obj/item/stack/material/phoron{amount = 10},/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/box/lights/mixed,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/item/stack/material/phoron{amount = 10},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/submap/BorgLab) +"LC" = (/obj/effect/gibspawner/human,/mob/living/simple_mob/mechanical/mecha/odysseus/murdysseus{faction = "corrupt"},/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"MT" = (/obj/machinery/space_heater,/obj/effect/floor_decal/rust,/obj/machinery/light/small/emergency/flicker{dir = 4},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Nb" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Nj" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Nq" = (/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Ns" = (/obj/effect/floor_decal/rust,/obj/effect/gibspawner/robot,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Nt" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Nv" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/trash,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"NB" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"NC" = (/obj/structure/grille/broken,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{pixel_y = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Oq" = (/obj/effect/floor_decal/rust,/obj/random/trash,/obj/item/stack/material/phoron{amount = 10},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Oz" = (/obj/item/weapon/pickaxe/plasmacutter,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"OD" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) +"OH" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) +"OW" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/item/weapon/broken_gun/laserrifle,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Pf" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Qe" = (/obj/effect/map_effect/interval/sound_emitter/energy_gunfight,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Qg" = (/turf/simulated/mineral/ignore_mapgen,/area/template_noop) +"Qn" = (/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Qs" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small/emergency/flicker,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Qz" = (/obj/effect/floor_decal/rust,/obj/structure/loot_pile/surface/drone,/turf/simulated/floor/plating,/area/submap/BorgLab) +"QW" = (/obj/structure/closet/l3closet/general,/obj/effect/floor_decal/rust,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/effect/floor_decal/rust/color_rustedcee,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Rt" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/random/maintenance/research,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"RG" = (/turf/simulated/mineral/ignore_mapgen,/area/submap/BorgLab) +"RL" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) +"RP" = (/turf/simulated/floor/outdoors/dirt,/area/submap/BorgLab) +"Su" = (/obj/effect/floor_decal/techfloor/orange,/obj/item/stack/material/uranium{amount = 15},/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Sy" = (/obj/structure/windoor_assembly{dir = 4},/obj/random/trash,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"SG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"SZ" = (/obj/effect/floor_decal/techfloor/orange,/obj/structure/loot_pile/surface/bones,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Tj" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Tp" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Tv" = (/obj/effect/floor_decal/sign/a,/turf/simulated/wall/r_wall,/area/submap/BorgLab) +"TD" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"TN" = (/obj/structure/closet/l3closet/virology,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) +"TU" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) +"TW" = (/obj/effect/gibspawner/human,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Uj" = (/obj/structure/closet/firecloset/full/double,/obj/effect/floor_decal/rust{pixel_y = 1},/obj/machinery/light/small/emergency/flicker{dir = 1},/obj/random/maintenance,/obj/random/maintenance/medical,/obj/effect/floor_decal/rust/color_rustedcee,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Uy" = (/obj/effect/floor_decal/rust,/obj/random/trash,/obj/random/maintenance/research,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Uz" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/borderfloorwhite/cee{dir = 1},/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/freezer,/area/submap/BorgLab) +"UM" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"UV" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) +"UW" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille/broken,/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) +"Vc" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Vh" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Vr" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"VH" = (/obj/structure/cable/blue,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/item/frame/apc,/turf/simulated/floor/plating,/area/submap/BorgLab) +"VU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Wh" = (/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"Wq" = (/obj/effect/floor_decal/rust,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/plating,/area/submap/BorgLab) +"WK" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/item/weapon/broken_gun/laser_retro,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/plating,/area/submap/BorgLab) +"WQ" = (/turf/simulated/wall/r_wall,/area/submap/BorgLab) +"WR" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"XG" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/gibspawner/human,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Yk" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Yy" = (/obj/structure/table/steel,/obj/item/weapon/coin/phoron,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/submap/BorgLab) +"YD" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) +"YZ" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Za" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"Zc" = (/obj/structure/railing,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Zn" = (/obj/item/device/measuring_tape,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Zq" = (/obj/machinery/door/window/brigdoor/westright{dir = 1; name = "Containment Pen"; req_one_access = list(43,1)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) +"Zt" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/BorgLab) +"Zy" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ZO" = (/obj/effect/floor_decal/rust,/obj/random/trash,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) + +(1,1,1) = {" +DFDFDFDFsrQgQgDFsrDFQgDFDFDFDFDFDFDFDFDFDFDFsrDFDFDFDFDFDFDFDFDF +DFDFQgsrQgQgQgQgQgQgQgDFDFDFDFDFDFDFDFDFDFDFDFsrDFDFQgQgQgQgDFDF +DFDFQgQgQgQgQgQgQgQgQgQgQgDFDFDFDFDFDFDFDFDFQgbLbLQgQgQgQgQgDFDF +DFDFsrQgWQWQWQWQWQWQQgQgQgQgQgDFQgQgQgDFQgQgQgiYbLbLbLRPDqsrDFDF +DFDFsrQgWQpYtrYyLBWQQgQgQgQgQgQgQgQgQgQgQgQgQgRGRGRGDqDqDqDFDFDF +DFsrQgQgWQVHTUOqCzWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGDqRPDFDFDF +DFDFQgWQWQWQWQGAWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGDqDFDFDF +DFDFQgWQmiUjQWQnDvWQaaxzOWWQuXTDNjWQmwTDbYWQpeWKJrWQWQRGRGDFDFDF +DFQgQgWQrPZayISycCWQjfLCnkWQTWGzuQWQTUyBtxWQWhxOWqWQWQWQRGQgDFDF +srQgQgWQtagfbjicUzWQVcJpabWQUVVcUMWQVcODVcWQyzububWQsKWQWQQgDFDF +DFQgQgWQNsZOCAgNWQWQbIugOHWQYDwtyqWQYDmBYDWQJomBYDlzWQWQWQWQWQDF +srQgWQWQZtmfNCWQWQeVRLejPfghyRrarOiiAsAsifacGCVriSNtWQnylJWQZcsr +QgQgWQTjlUCANqOzhWzkNjXGnWLzFvaeJhaftyCSCXththBlYkNvkIYZWRmsQesr +QgQgWQDjkjktdTUyZtJZagnbYZahFtJmYkaiddoaNbQsFjqWVhSGWQTNDsWQgcDF +QgWQxkCfYkfhGyMTWQWQYDneYDcALrneheadUWdKOHmaKHZqtXTvWQWQWQWQWQDF +QgWQjzRtFuZyDWxUqaWQJdajVUWQJdRLopWQgaTpopWQNBopJdWQqWWQWQQgDFDF +QgWQxkxubNdebEZnwqWQtxIctxWQGSBqtxWQbzAItxWQNjxhtxWQWQWQQgDFDFDF +QgQgWQWQWQWQWQWQWQWQSuNjjRWQSZNjcZWQakNjmEWQQzSZalWQWQRGQgDFDFDF +DFQgQgRGRGRGRGRGRGWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGDFsrDFDF +DFsrQgRGRGRGRGRGRGRGWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGRGRPDFsrDF +DFDFDFRGRGRGiYbLRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGzebLRPDFDFDF +DFsrDFRPbLbLbLRPRPDFDFQgQgQgDFQgQgQgQgQgQgRGRGRGRGRPbLbLRPQgDFDF +DFDFDFRPQgQgbLRPDFDFDFDFDFDFDFDFDFDFQgQgDFDFDFDFRPRPRPQgQgQgDFDF +DFDFsrDFQgQgQgDFDFsrDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFQgQgQgDFDF +DFDFDFDFDFDFDFsrDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFDFsrDFDFDFDFDFDFDF +"}