mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-19 04:08:55 +01:00
Merge pull request #8848 from Cyantime/spaceweirdness
Remove gravity from debris field and rogue mining zones
This commit is contained in:
committed by
Chompstation Bot
parent
2fda5bc91f
commit
49ef2d2ee9
@@ -6,6 +6,12 @@
|
||||
|
||||
//Rouguelike Mining
|
||||
/area/asteroid/rogue
|
||||
has_gravity = 0
|
||||
requires_power = 1
|
||||
always_unpowered = 1
|
||||
power_light = 0
|
||||
power_equip = 0
|
||||
power_environ = 0
|
||||
var/asteroid_spawns = list()
|
||||
var/mob_spawns = list()
|
||||
var/shuttle_area //It would be neat if this were more dynamic, but eh.
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
icon_state = ""
|
||||
initial_icon = ""
|
||||
|
||||
dir_in = null //Don't reset direction when empty
|
||||
|
||||
step_in = 2 //Fast
|
||||
|
||||
health = 400
|
||||
|
||||
@@ -11,12 +11,12 @@
|
||||
/obj/structure/lattice/Initialize()
|
||||
. = ..()
|
||||
|
||||
if(!(istype(src.loc, /turf/space) || istype(src.loc, /turf/simulated/open) || istype(src.loc, /turf/simulated/mineral)))
|
||||
if(!(istype(src.loc, /turf/space) || istype(src.loc, /turf/simulated/open) || istype(src.loc, /turf/simulated/mineral) || istype(src.loc, /turf/simulated/shuttle/plating/airless/carry)))
|
||||
return INITIALIZE_HINT_QDEL
|
||||
|
||||
for(var/obj/structure/lattice/LAT in src.loc)
|
||||
if(LAT != src)
|
||||
crash_with("Found multiple lattices at '[log_info_line(loc)]'")
|
||||
log_debug("Found multiple lattices at '[log_info_line(loc)]'") //VOREStation Edit, why was this a runtime, it's harmless
|
||||
return INITIALIZE_HINT_QDEL
|
||||
icon = 'icons/obj/smoothlattice.dmi'
|
||||
icon_state = "latticeblank"
|
||||
|
||||
@@ -43,6 +43,35 @@
|
||||
icon_state = "floor"
|
||||
set_light(0,0,"#ffffff")
|
||||
|
||||
/turf/simulated/shuttle/plating/airless/carry/attackby(obj/item/C, mob/user) //this is gross
|
||||
if (istype(C, /obj/item/stack/rods))
|
||||
var/obj/structure/lattice/L = locate(/obj/structure/lattice, src)
|
||||
if(L)
|
||||
return
|
||||
var/obj/item/stack/rods/R = C
|
||||
if (R.use(1))
|
||||
to_chat(user, "<span class='notice'>Constructing support lattice ...</span>")
|
||||
playsound(src, 'sound/weapons/Genhit.ogg', 50, 1)
|
||||
new/obj/structure/lattice(src)
|
||||
return
|
||||
|
||||
if (istype(C, /obj/item/stack/tile/floor))
|
||||
var/obj/structure/lattice/L = locate(/obj/structure/lattice, src)
|
||||
if(L)
|
||||
var/obj/item/stack/tile/floor/S = C
|
||||
if (S.get_amount() < 1)
|
||||
return
|
||||
qdel(L)
|
||||
playsound(src, 'sound/weapons/Genhit.ogg', 50, 1)
|
||||
S.use(1)
|
||||
ChangeTurf(/turf/simulated/floor/airless)
|
||||
return
|
||||
else
|
||||
to_chat(user, "<span class='warning'>The plating is going to need some support.</span>")
|
||||
|
||||
/turf/simulated/shuttle/plating/airless/carry/is_solid_structure()
|
||||
return locate(/obj/structure/lattice, src)
|
||||
|
||||
/turf/simulated/floor/gorefloor
|
||||
name = "infected tile"
|
||||
desc = "Slick, sickly-squirming meat has grown in and out of cracks once empty. It pulsates intermittently, and with every beat, blood seeps out of pores."
|
||||
@@ -53,4 +82,4 @@
|
||||
name = "putrid mass"
|
||||
desc = "It is entirely made of sick, gurgling flesh. It is releasing a sickly odour."
|
||||
icon_state = "bloodfloor_2"
|
||||
icon = 'icons/goonstation/turf/meatland.dmi'
|
||||
icon = 'icons/goonstation/turf/meatland.dmi'
|
||||
|
||||
@@ -1,3 +1,15 @@
|
||||
/obj/machinery/power/smes/batteryrack/mapped
|
||||
var/cell_type = /obj/item/weapon/cell/apc
|
||||
var/cell_number = 3
|
||||
|
||||
/obj/machinery/power/smes/batteryrack/mapped/Initialize()
|
||||
. = ..()
|
||||
for(var/i = 1 to cell_number)
|
||||
if(i > max_cells)
|
||||
break
|
||||
var/obj/item/weapon/cell/newcell = new cell_type(src.loc)
|
||||
insert_cell(newcell)
|
||||
|
||||
/obj/item/weapon/module/power_control/attackby(var/obj/item/I, var/mob/user)
|
||||
if(I.is_multitool())
|
||||
to_chat(user, SPAN_NOTICE("You begin tweaking the power control circuits to support a power cell rack."))
|
||||
|
||||
@@ -127,6 +127,8 @@
|
||||
|
||||
rm_controller.dbg("ZM(pa): The asteroid has [A.map.len] X-lists.")
|
||||
|
||||
var/list/changedturfs = list()
|
||||
|
||||
for(var/Ix=1, Ix <= A.map.len, Ix++)
|
||||
var/list/curr_x = A.map[Ix]
|
||||
rm_controller.dbg("ZM(pa): Now doing X:[Ix] which has [curr_x.len] Y-lists.")
|
||||
@@ -153,15 +155,17 @@
|
||||
|
||||
rm_controller.dbg("ZM(pa): Replacing [P.type] with [T].")
|
||||
var/turf/newturf = P.ChangeTurf(T)
|
||||
changedturfs += newturf
|
||||
switch(newturf.type)
|
||||
if(/turf/simulated/mineral/vacuum)
|
||||
place_resources(newturf)
|
||||
|
||||
newturf.update_icon(1)
|
||||
else //Anything not a turf
|
||||
rm_controller.dbg("ZM(pa): Creating [T].")
|
||||
new T(spot)
|
||||
|
||||
for(var/turf/T in changedturfs)
|
||||
T.update_icon(1)
|
||||
|
||||
/datum/rogue/zonemaster/proc/place_resources(var/turf/simulated/mineral/M)
|
||||
#define XENOARCH_SPAWN_CHANCE 0.3
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 178 KiB After Width: | Height: | Size: 231 KiB |
@@ -50,28 +50,167 @@
|
||||
icon = 'icons/turf/areas_vr.dmi'
|
||||
icon_state = "dark"
|
||||
|
||||
/area/tether_away/debrisfield/explored
|
||||
/area/tether_away/debrisfield/shuttle_buffer //For space around shuttle landmarks to keep submaps from generating to block them
|
||||
icon_state = "debrisexplored"
|
||||
name = "\improper Space"
|
||||
requires_power = 1
|
||||
always_unpowered = 1
|
||||
dynamic_lighting = 0
|
||||
has_gravity = 0
|
||||
power_light = 0
|
||||
power_equip = 0
|
||||
power_environ = 0
|
||||
ambience = AMBIENCE_SPACE
|
||||
flags = AREA_FLAG_IS_NOT_PERSISTENT
|
||||
|
||||
/area/tether_away/debrisfield/unexplored
|
||||
/area/submap/debrisfield
|
||||
icon = 'icons/turf/areas_vr.dmi'
|
||||
icon_state = "debrisunexplored"
|
||||
|
||||
/area/tether_away/debrisfield/derelict
|
||||
/area/submap/debrisfield/derelict
|
||||
icon_state = "debrisexplored"
|
||||
forced_ambience = list('sound/ambience/tension/tension.ogg', 'sound/ambience/tension/horror.ogg')
|
||||
|
||||
//TFF 26/12/19 - Sub-areas for the APCs.
|
||||
/area/tether_away/debrisfield/derelict/ai_access_port
|
||||
|
||||
/area/submap/debrisfield/derelict/ai_access_port
|
||||
name = "POI - Abandoned Derelict AI Acess Port"
|
||||
|
||||
/area/tether_away/debrisfield/derelict/ai_access_starboard
|
||||
/area/submap/debrisfield/derelict/ai_access_starboard
|
||||
name = "POI - Abandoned Derelict AI Access Starboard"
|
||||
|
||||
/area/tether_away/debrisfield/derelict/ai_chamber
|
||||
/area/submap/debrisfield/derelict/ai_chamber
|
||||
name = "POI - Abandoned Derelict AI Chamber"
|
||||
|
||||
/area/tether_away/debrisfield/derelict/bridge
|
||||
/area/submap/debrisfield/derelict/bridge
|
||||
name = "POI - Abandoned Derelict Bridge"
|
||||
|
||||
/area/tether_away/debrisfield/derelict/interior
|
||||
name = "POI - Abandoned Derelict Interior"
|
||||
/area/submap/debrisfield/derelict/interior
|
||||
name = "POI - Abandoned Derelict Interior"
|
||||
|
||||
/area/submap/debrisfield/foodstand
|
||||
name = "POI - Foodstand"
|
||||
|
||||
/area/submap/debrisfield/sci_overrun
|
||||
name = "POI - Overrun Science Ship"
|
||||
requires_power = 0
|
||||
|
||||
/area/submap/debrisfield/old_sat
|
||||
name = "POI - Old Satellite"
|
||||
|
||||
/area/submap/debrisfield/old_tele
|
||||
name = "POI - Old Teleporter"
|
||||
|
||||
/area/submap/debrisfield/mining_drone_ship
|
||||
name = "POI - Disabled Mining Drone"
|
||||
requires_power = 0
|
||||
|
||||
/area/submap/debrisfield/mining_outpost
|
||||
name = "POI - Destroyed Mining Outpost"
|
||||
|
||||
/area/submap/debrisfield/tinyshuttle
|
||||
secret_name = 0
|
||||
|
||||
/area/submap/debrisfield/tinyshuttle/crew
|
||||
name = "Crew Bay"
|
||||
|
||||
/area/submap/debrisfield/tinyshuttle/bridge
|
||||
name = "Bridge"
|
||||
|
||||
/area/submap/debrisfield/tinyshuttle/hangar
|
||||
name = "Hangar"
|
||||
has_gravity = 0
|
||||
|
||||
/area/submap/debrisfield/tinyshuttle/engine
|
||||
name = "Systems Bay"
|
||||
|
||||
/datum/shuttle/autodock/overmap/tinycarrier
|
||||
name = "Debris Carrier"
|
||||
warmup_time = 0
|
||||
current_location = "debris_field_carrier_start"
|
||||
docking_controller_tag = "debris_carrier_docker"
|
||||
shuttle_area = list(/area/submap/debrisfield/tinyshuttle/crew, /area/submap/debrisfield/tinyshuttle/bridge, /area/submap/debrisfield/tinyshuttle/hangar, /area/submap/debrisfield/tinyshuttle/engine)
|
||||
fuel_consumption = 3
|
||||
defer_initialisation = TRUE
|
||||
move_direction = WEST
|
||||
|
||||
/obj/effect/shuttle_landmark/shuttle_initializer/tinycarrier
|
||||
name = "Debris Field"
|
||||
base_area = /area/space
|
||||
base_turf = /turf/space
|
||||
landmark_tag = "debris_field_carrier_start"
|
||||
shuttle_type = /datum/shuttle/autodock/overmap/tinycarrier
|
||||
|
||||
/obj/effect/shuttle_landmark/shuttle_initializer/tinycarrier/Initialize()
|
||||
var/obj/effect/overmap/visitable/O = get_overmap_sector(get_z(src)) //make this into general system some other time
|
||||
LAZYINITLIST(O.initial_restricted_waypoints)
|
||||
O.initial_restricted_waypoints["Debris Carrier"] = list(landmark_tag)
|
||||
. = ..()
|
||||
|
||||
/obj/effect/overmap/visitable/ship/landable/tinycarrier
|
||||
scanner_name = "TBD"
|
||||
scanner_desc = "TBD"
|
||||
vessel_mass = 12000
|
||||
vessel_size = SHIP_SIZE_SMALL
|
||||
shuttle = "Debris Carrier"
|
||||
|
||||
/obj/effect/overmap/visitable/ship/landable/tinycarrier/Initialize()
|
||||
. = ..()
|
||||
var/datum/lore/organization/O = loremaster.organizations[/datum/lore/organization/other/sysdef]
|
||||
var/newname = "SDV [pick(O.ship_names)]"
|
||||
scanner_name = newname
|
||||
scanner_desc = {"\[i\]Registration\[/i\]: [newname]
|
||||
\[i\]Class\[/i\]: Light Escort Carrier
|
||||
\[i\]Transponder\[/i\]: Transmitting (MIL), Weak Signal
|
||||
\[b\]Notice\[/b\]: Registration Expired"}
|
||||
rename_areas(newname)
|
||||
|
||||
/obj/effect/overmap/visitable/ship/landable/tinycarrier/proc/rename_areas(newname)
|
||||
if(!SSshuttles.subsystem_initialized)
|
||||
spawn(300)
|
||||
rename_areas(newname)
|
||||
return
|
||||
var/datum/shuttle/S = SSshuttles.shuttles[shuttle]
|
||||
for(var/area/A in S.shuttle_area)
|
||||
A.name = "[newname] [initial(A.name)]"
|
||||
if(A.apc)
|
||||
A.apc.name = "[A.name] APC"
|
||||
A.air_vent_names = list()
|
||||
A.air_scrub_names = list()
|
||||
A.air_vent_info = list()
|
||||
A.air_scrub_info = list()
|
||||
for(var/obj/machinery/alarm/AA in A)
|
||||
AA.name = "[A.name] Air Alarm"
|
||||
|
||||
/obj/machinery/computer/shuttle_control/explore/tinycarrier
|
||||
shuttle_tag = "Debris Carrier"
|
||||
req_one_access = list()
|
||||
|
||||
/obj/mecha/combat/fighter/baron/loaded/busted
|
||||
starting_components = list(/obj/item/mecha_parts/component/hull/lightweight,/obj/item/mecha_parts/component/actuator/hispeed,/obj/item/mecha_parts/component/armor,/obj/item/mecha_parts/component/gas,/obj/item/mecha_parts/component/electrical/high_current)
|
||||
|
||||
/obj/mecha/combat/fighter/baron/loaded/busted/Initialize()
|
||||
. = ..()
|
||||
health = round(rand(50,120))
|
||||
cell?.charge = 0
|
||||
for(var/slot in internal_components)
|
||||
var/obj/item/mecha_parts/component/comp = internal_components[slot]
|
||||
if(!istype(comp))
|
||||
continue
|
||||
comp.adjust_integrity(-(round(rand(comp.max_integrity - 10, 0))))
|
||||
|
||||
setInternalDamage(MECHA_INT_SHORT_CIRCUIT)
|
||||
|
||||
/obj/structure/fuel_port/empty_tank/Initialize()
|
||||
. = ..()
|
||||
var/obj/item/weapon/tank/phoron/T = locate() in src
|
||||
if(T)
|
||||
T.air_contents.remove(T.air_contents.total_moles)
|
||||
|
||||
/area/submap/debrisfield/misc_debris //for random bits of debris that should use dynamic lights
|
||||
requires_power = 1
|
||||
always_unpowered = 1
|
||||
has_gravity = 0
|
||||
power_light = 0
|
||||
power_equip = 0
|
||||
power_environ = 0
|
||||
|
||||
+19055
-19058
File diff suppressed because it is too large
Load Diff
@@ -18,6 +18,41 @@
|
||||
mappath = 'asteroids3.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/asteroids4
|
||||
name = "Asteroids 4"
|
||||
mappath = 'asteroids4.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/asteroids5
|
||||
name = "Asteroids 5"
|
||||
mappath = 'asteroids5.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/asteroids6
|
||||
name = "Asteroids 6"
|
||||
mappath = 'asteroids6.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/asteroids7
|
||||
name = "Asteroids 7"
|
||||
mappath = 'asteroids7.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/asteroids8
|
||||
name = "Asteroids 8"
|
||||
mappath = 'asteroids8.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/asteroids9
|
||||
name = "Asteroids 9"
|
||||
mappath = 'asteroids9.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/asteroids10
|
||||
name = "Asteroids 10"
|
||||
mappath = 'asteroids10.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/carp_asteroids1
|
||||
name = "Carp Asteroids 1"
|
||||
mappath = 'carp_asteroids1.dmm'
|
||||
@@ -38,6 +73,21 @@
|
||||
mappath = 'carp_asteroids4.dmm'
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/debrisfield/carp_asteroids5
|
||||
name = "Carp Asteroids 5"
|
||||
mappath = 'carp_asteroids5.dmm'
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/debrisfield/carp_asteroids6
|
||||
name = "Carp Asteroids 6"
|
||||
mappath = 'carp_asteroids6.dmm'
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/debrisfield/carp_asteroids7
|
||||
name = "Carp Asteroids 7"
|
||||
mappath = 'carp_asteroids7.dmm'
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/debrisfield/foodstand
|
||||
name = "Food Stand"
|
||||
mappath = 'foodstand.dmm'
|
||||
@@ -74,6 +124,76 @@
|
||||
mappath = 'debris6.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/debris7
|
||||
name = "Debris 7"
|
||||
mappath = 'debris7.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/debris8
|
||||
name = "Debris 8"
|
||||
mappath = 'debris8.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/debris9
|
||||
name = "Debris 9"
|
||||
mappath = 'debris9.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/debris10
|
||||
name = "Debris 10"
|
||||
mappath = 'debris10.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/debris11
|
||||
name = "Debris 11"
|
||||
mappath = 'debris11.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/debris12
|
||||
name = "Debris 12"
|
||||
mappath = 'debris12.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/debris13
|
||||
name = "Debris 13"
|
||||
mappath = 'debris13.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/debris14
|
||||
name = "Debris 14"
|
||||
mappath = 'debris14.dmm'
|
||||
cost = 2
|
||||
|
||||
/datum/map_template/debrisfield/escape_pod
|
||||
name = "Ancient Escape Pod"
|
||||
mappath = 'escape_pod.dmm'
|
||||
cost = 5
|
||||
allow_duplicates = FALSE
|
||||
|
||||
/datum/map_template/debrisfield/old_satellite
|
||||
name = "Old Satellite"
|
||||
mappath = 'old_satellite.dmm'
|
||||
cost = 10
|
||||
allow_duplicates = FALSE
|
||||
|
||||
/datum/map_template/debrisfield/old_teleporter
|
||||
name = "Old Teleporter"
|
||||
mappath = 'old_teleporter.dmm'
|
||||
cost = 10
|
||||
allow_duplicates = FALSE
|
||||
|
||||
/datum/map_template/debrisfield/old_mining_outpost
|
||||
name = "Old Drone Mining Outpost"
|
||||
mappath = 'mining_drones.dmm'
|
||||
cost = 20
|
||||
allow_duplicates = FALSE
|
||||
|
||||
/datum/map_template/debrisfield/ship_mining_drone
|
||||
name = "Disabled Mining Drone Ship"
|
||||
mappath = 'ship_mining_drone.dmm'
|
||||
cost = 35
|
||||
allow_duplicates = FALSE
|
||||
|
||||
/datum/map_template/debrisfield/ship_sup_exploded
|
||||
name = "Exploded Cargo Ship"
|
||||
mappath = 'ship_sup_exploded.dmm'
|
||||
@@ -98,6 +218,12 @@
|
||||
cost = 30
|
||||
allow_duplicates = FALSE
|
||||
|
||||
/datum/map_template/debrisfield/tinycarrier
|
||||
name = "Disabled Tiny Carrier"
|
||||
mappath = 'tinycarrier.dmm'
|
||||
cost = 30
|
||||
allow_duplicates = FALSE
|
||||
|
||||
/datum/map_template/debrisfield/alien_massive_derelict
|
||||
name = "Alien Derelict"
|
||||
mappath = 'derelict.dmm'
|
||||
|
||||
@@ -1,10 +1,16 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -31,77 +37,77 @@ b
|
||||
(3,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
a
|
||||
b
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
b
|
||||
b
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
b
|
||||
b
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
b
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
b
|
||||
b
|
||||
"}
|
||||
|
||||
@@ -0,0 +1,238 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
c
|
||||
c
|
||||
d
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
d
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(14,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
@@ -1,10 +1,16 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -39,60 +45,60 @@ a
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
b
|
||||
a
|
||||
"}
|
||||
|
||||
@@ -1,10 +1,16 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -31,55 +37,55 @@ a
|
||||
(3,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
b
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
a
|
||||
b
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
b
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
b
|
||||
b
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
b
|
||||
a
|
||||
"}
|
||||
|
||||
@@ -0,0 +1,134 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
b
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
d
|
||||
c
|
||||
b
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
@@ -0,0 +1,126 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
b
|
||||
b
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
b
|
||||
b
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
b
|
||||
b
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
a
|
||||
b
|
||||
d
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
b
|
||||
a
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
"}
|
||||
(14,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
"}
|
||||
@@ -0,0 +1,98 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
b
|
||||
c
|
||||
c
|
||||
b
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
d
|
||||
c
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
d
|
||||
d
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
d
|
||||
d
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
d
|
||||
d
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
b
|
||||
c
|
||||
d
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
b
|
||||
c
|
||||
c
|
||||
a
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
a
|
||||
c
|
||||
d
|
||||
a
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
a
|
||||
d
|
||||
d
|
||||
a
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
a
|
||||
d
|
||||
d
|
||||
a
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
"}
|
||||
(14,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
"}
|
||||
@@ -0,0 +1,112 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
b
|
||||
b
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
b
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
"}
|
||||
@@ -0,0 +1,126 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
b
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
b
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
b
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
@@ -0,0 +1,302 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(14,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(15,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
"}
|
||||
(16,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
"}
|
||||
@@ -1,14 +1,20 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/obj/tether_away_spawner/debrisfield/carp,
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -39,91 +45,91 @@ a
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
b
|
||||
b
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
d
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
c
|
||||
a
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
e
|
||||
d
|
||||
c
|
||||
c
|
||||
b
|
||||
b
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
b
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
|
||||
@@ -1,14 +1,20 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/obj/tether_away_spawner/debrisfield/carp,
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -31,81 +37,81 @@ a
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
d
|
||||
e
|
||||
e
|
||||
b
|
||||
b
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
e
|
||||
e
|
||||
e
|
||||
c
|
||||
b
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
b
|
||||
d
|
||||
d
|
||||
e
|
||||
b
|
||||
b
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
d
|
||||
b
|
||||
b
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
d
|
||||
b
|
||||
b
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
b
|
||||
c
|
||||
a
|
||||
a
|
||||
b
|
||||
d
|
||||
d
|
||||
e
|
||||
b
|
||||
b
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
b
|
||||
b
|
||||
a
|
||||
b
|
||||
b
|
||||
d
|
||||
e
|
||||
e
|
||||
b
|
||||
b
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
e
|
||||
e
|
||||
e
|
||||
b
|
||||
b
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
e
|
||||
e
|
||||
d
|
||||
a
|
||||
b
|
||||
"}
|
||||
|
||||
@@ -1,14 +1,20 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/obj/tether_away_spawner/debrisfield/carp,
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -43,90 +49,90 @@ a
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
d
|
||||
e
|
||||
e
|
||||
e
|
||||
d
|
||||
d
|
||||
e
|
||||
e
|
||||
e
|
||||
b
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
d
|
||||
d
|
||||
e
|
||||
e
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
b
|
||||
"}
|
||||
|
||||
@@ -1,14 +1,20 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/obj/tether_away_spawner/debrisfield/carp/hard,
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -33,70 +39,70 @@ b
|
||||
(3,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
b
|
||||
c
|
||||
c
|
||||
d
|
||||
c
|
||||
b
|
||||
b
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
b
|
||||
b
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
c
|
||||
a
|
||||
d
|
||||
d
|
||||
e
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
b
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
b
|
||||
a
|
||||
"}
|
||||
|
||||
@@ -0,0 +1,178 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/floor/vacuum,
|
||||
/area/submap/debrisfield/misc_debris)
|
||||
"e" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/submap/debrisfield/misc_debris)
|
||||
"f" = (
|
||||
/obj/tether_away_spawner/debrisfield/carp,
|
||||
/turf/simulated/mineral/floor/vacuum,
|
||||
/area/submap/debrisfield/misc_debris)
|
||||
"g" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
g
|
||||
g
|
||||
g
|
||||
g
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
g
|
||||
g
|
||||
e
|
||||
g
|
||||
g
|
||||
g
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
g
|
||||
d
|
||||
d
|
||||
f
|
||||
g
|
||||
g
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
f
|
||||
g
|
||||
g
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
g
|
||||
g
|
||||
e
|
||||
d
|
||||
g
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
a
|
||||
g
|
||||
c
|
||||
c
|
||||
g
|
||||
e
|
||||
g
|
||||
g
|
||||
g
|
||||
b
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
a
|
||||
a
|
||||
g
|
||||
g
|
||||
c
|
||||
g
|
||||
g
|
||||
g
|
||||
g
|
||||
g
|
||||
a
|
||||
a
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
@@ -0,0 +1,242 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/obj/tether_away_spawner/debrisfield/carp,
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
b
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
e
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
a
|
||||
a
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
d
|
||||
d
|
||||
d
|
||||
d
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(14,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
@@ -0,0 +1,216 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/mineral/floor/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"f" = (
|
||||
/obj/tether_away_spawner/debrisfield/carp/hard,
|
||||
/turf/simulated/mineral/floor/vacuum,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
e
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
e
|
||||
e
|
||||
e
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
e
|
||||
e
|
||||
e
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
d
|
||||
e
|
||||
d
|
||||
f
|
||||
d
|
||||
e
|
||||
e
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
e
|
||||
e
|
||||
e
|
||||
d
|
||||
c
|
||||
c
|
||||
e
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
e
|
||||
e
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
e
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
@@ -2,17 +2,20 @@
|
||||
"a" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"d" = (
|
||||
/obj/structure/girder,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"e" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -25,16 +28,16 @@ c
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
e
|
||||
e
|
||||
c
|
||||
b
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
e
|
||||
e
|
||||
b
|
||||
b
|
||||
"}
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/obj/structure/girder,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/obj/item/weapon/material/shard,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"d" = (
|
||||
/obj/structure/grille/broken,
|
||||
/obj/item/weapon/material/shard,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
"e" = (
|
||||
/obj/item/stack/rods,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"f" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"g" = (
|
||||
/obj/structure/grille,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
d
|
||||
g
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
b
|
||||
e
|
||||
f
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
c
|
||||
f
|
||||
c
|
||||
"}
|
||||
@@ -0,0 +1,53 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
dir = 4;
|
||||
icon_state = "pipe-c"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/obj/structure/disposalpipe/broken{
|
||||
dir = 8;
|
||||
icon_state = "pipe-b"
|
||||
},
|
||||
/obj/structure/lattice,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"d" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
"e" = (
|
||||
/obj/structure/disposalpipe/segment,
|
||||
/obj/random/junk,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"f" = (
|
||||
/obj/structure/disposalpipe/broken{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
"g" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
d
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
b
|
||||
e
|
||||
f
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
c
|
||||
a
|
||||
g
|
||||
"}
|
||||
@@ -0,0 +1,43 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
|
||||
dir = 6
|
||||
},
|
||||
/obj/structure/lattice,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
|
||||
dir = 10
|
||||
},
|
||||
/turf/simulated/floor/reinforced/airless{
|
||||
name = "reinforced floor"
|
||||
},
|
||||
/area/space)
|
||||
"c" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
|
||||
/turf/simulated/floor/reinforced/airless{
|
||||
name = "reinforced floor"
|
||||
},
|
||||
/area/space)
|
||||
"d" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"e" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
|
||||
/turf/simulated/floor/reinforced/airless{
|
||||
name = "reinforced floor"
|
||||
},
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
e
|
||||
c
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
b
|
||||
e
|
||||
d
|
||||
"}
|
||||
@@ -0,0 +1,78 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/wall/shull,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"c" = (
|
||||
/obj/item/stack/rods,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"d" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/visible{
|
||||
dir = 6
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/obj/machinery/atmospherics/unary/engine{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"f" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"g" = (
|
||||
/obj/structure/girder,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"h" = (
|
||||
/obj/machinery/atmospherics/pipe/manifold/visible{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"i" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"j" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/item/weapon/material/shard/shrapnel,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"k" = (
|
||||
/obj/item/weapon/material/shard/shrapnel,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
c
|
||||
f
|
||||
f
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
b
|
||||
b
|
||||
g
|
||||
i
|
||||
k
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
b
|
||||
d
|
||||
h
|
||||
i
|
||||
f
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
b
|
||||
e
|
||||
i
|
||||
j
|
||||
a
|
||||
"}
|
||||
@@ -0,0 +1,80 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/obj/item/weapon/material/shard/shrapnel,
|
||||
/obj/machinery/firealarm/alarms_hidden{
|
||||
dir = 4;
|
||||
pixel_x = -24
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"b" = (
|
||||
/obj/structure/girder,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"f" = (
|
||||
/obj/item/stack/rods,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"g" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/item/stack/rods,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"h" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"i" = (
|
||||
/obj/item/weapon/material/shard/shrapnel,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"j" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"k" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"l" = (
|
||||
/turf/simulated/wall,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
b
|
||||
l
|
||||
j
|
||||
j
|
||||
e
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
c
|
||||
a
|
||||
f
|
||||
j
|
||||
k
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
i
|
||||
d
|
||||
d
|
||||
j
|
||||
k
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
k
|
||||
j
|
||||
g
|
||||
h
|
||||
k
|
||||
"}
|
||||
@@ -1,14 +1,21 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"d" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -17,17 +24,17 @@ c
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
b
|
||||
d
|
||||
c
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
c
|
||||
e
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
b
|
||||
c
|
||||
e
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
|
||||
@@ -1,18 +1,25 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"d" = (
|
||||
/obj/structure/girder,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"e" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"f" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -25,16 +32,16 @@ d
|
||||
(2,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
c
|
||||
e
|
||||
f
|
||||
c
|
||||
c
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
b
|
||||
c
|
||||
b
|
||||
b
|
||||
e
|
||||
e
|
||||
b
|
||||
c
|
||||
"}
|
||||
|
||||
@@ -1,24 +1,27 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"c" = (
|
||||
/obj/structure/girder,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"d" = (
|
||||
/turf/simulated/shuttle/wall,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"e" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"f" = (
|
||||
/turf/simulated/shuttle/floor/white/airless,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"g" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -44,7 +47,7 @@ b
|
||||
(4,1,1) = {"
|
||||
a
|
||||
d
|
||||
e
|
||||
g
|
||||
b
|
||||
a
|
||||
"}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/space,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/obj/structure/lattice,
|
||||
@@ -8,10 +8,13 @@
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/turf/simulated/shuttle/wall/dark,
|
||||
/area/space)
|
||||
"e" = (
|
||||
/turf/simulated/shuttle/wall/dark,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -27,8 +30,8 @@ d
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
d
|
||||
d
|
||||
e
|
||||
e
|
||||
b
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
|
||||
@@ -1,24 +1,28 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"b" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
|
||||
(1,1,1) = {"
|
||||
b
|
||||
b
|
||||
a
|
||||
c
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
b
|
||||
b
|
||||
a
|
||||
b
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
b
|
||||
b
|
||||
a
|
||||
c
|
||||
"}
|
||||
|
||||
@@ -0,0 +1,107 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/wall/dshull,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/item/stack/cable_coil/cut,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"d" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
"e" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"f" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"g" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"h" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"i" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/item/stack/cable_coil/cut,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"j" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
d
|
||||
d
|
||||
d
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
c
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
e
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
f
|
||||
h
|
||||
h
|
||||
i
|
||||
j
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
g
|
||||
g
|
||||
g
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
g
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
@@ -0,0 +1,121 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"c" = (
|
||||
/turf/simulated/floor/hull/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"d" = (
|
||||
/obj/machinery/power/pointdefense{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/hull/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"e" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"f" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
e
|
||||
a
|
||||
e
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
f
|
||||
e
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
c
|
||||
c
|
||||
d
|
||||
c
|
||||
c
|
||||
c
|
||||
e
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
c
|
||||
f
|
||||
e
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
b
|
||||
f
|
||||
f
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
e
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
@@ -0,0 +1,82 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/space)
|
||||
"d" = (
|
||||
/turf/simulated/wall/lead,
|
||||
/area/space)
|
||||
"e" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"f" = (
|
||||
/obj/structure/closet/crate/radiation,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"g" = (
|
||||
/obj/structure/table/rack,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"h" = (
|
||||
/turf/simulated/wall/lead,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
"i" = (
|
||||
/obj/structure/sign/warning/radioactive,
|
||||
/turf/simulated/wall/lead,
|
||||
/area/tether_away/debrisfield/shuttle_buffer)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
b
|
||||
d
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
f
|
||||
h
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
g
|
||||
h
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
b
|
||||
c
|
||||
i
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
b
|
||||
c
|
||||
h
|
||||
e
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
c
|
||||
e
|
||||
e
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
b
|
||||
e
|
||||
e
|
||||
a
|
||||
"}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,63 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/obj/structure/shuttle/engine/propulsion{
|
||||
dir = 8;
|
||||
pixel_x = -16
|
||||
},
|
||||
/turf/simulated/shuttle/wall/hard_corner,
|
||||
/area/submap/debrisfield/misc_debris)
|
||||
"b" = (
|
||||
/turf/simulated/shuttle/wall,
|
||||
/area/submap/debrisfield/misc_debris)
|
||||
"c" = (
|
||||
/obj/machinery/door/unpowered/shuttle,
|
||||
/turf/simulated/shuttle/floor/airless,
|
||||
/area/submap/debrisfield/misc_debris)
|
||||
"d" = (
|
||||
/obj/structure/bed/chair/bay/shuttle{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/decal/remains/human,
|
||||
/obj/item/weapon/bananapeel{
|
||||
layer = 2.5
|
||||
},
|
||||
/turf/simulated/shuttle/floor/airless,
|
||||
/area/submap/debrisfield/misc_debris)
|
||||
"e" = (
|
||||
/obj/structure/bed/chair/bay/shuttle{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/decal/remains/tajaran,
|
||||
/obj/item/device/radio/intercom{
|
||||
dir = 1;
|
||||
pixel_y = 24;
|
||||
req_access = list()
|
||||
},
|
||||
/turf/simulated/shuttle/floor/airless,
|
||||
/area/submap/debrisfield/misc_debris)
|
||||
"f" = (
|
||||
/obj/structure/shuttle/window,
|
||||
/obj/structure/grille,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/misc_debris)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
c
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
b
|
||||
d
|
||||
b
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
b
|
||||
e
|
||||
b
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
b
|
||||
f
|
||||
b
|
||||
"}
|
||||
@@ -1,23 +1,23 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"c" = (
|
||||
/turf/simulated/mineral/floor/vacuum,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"d" = (
|
||||
/turf/simulated/wall/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"e" = (
|
||||
/obj/structure/closet/secure_closet/freezer/meat,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/carpmeat,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/carpmeat,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/carpmeat,
|
||||
/turf/simulated/floor/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"f" = (
|
||||
/obj/structure/table/woodentable,
|
||||
/obj/item/weapon/reagent_containers/food/condiment/coldsauce,
|
||||
@@ -25,19 +25,19 @@
|
||||
/obj/item/weapon/reagent_containers/food/condiment/hotsauce,
|
||||
/obj/item/weapon/reagent_containers/food/condiment/soysauce,
|
||||
/turf/simulated/floor/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"g" = (
|
||||
/obj/structure/table/woodentable,
|
||||
/obj/machinery/microwave,
|
||||
/turf/simulated/floor/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"h" = (
|
||||
/obj/structure/simple_door/wood,
|
||||
/turf/simulated/floor/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"i" = (
|
||||
/turf/simulated/floor/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"j" = (
|
||||
/obj/structure/closet/crate/freezer,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/taco,
|
||||
@@ -48,23 +48,23 @@
|
||||
/obj/item/weapon/reagent_containers/food/snacks/cheeseburrito,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/cheeseburrito,
|
||||
/turf/simulated/floor/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"k" = (
|
||||
/obj/structure/table/woodentable,
|
||||
/turf/simulated/floor/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
"l" = (
|
||||
/obj/structure/table/woodentable,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/taco,
|
||||
/turf/simulated/floor/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
"m" = (
|
||||
/obj/structure/table/woodentable,
|
||||
/obj/machinery/cash_register{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/wood,
|
||||
/area/tether_away/debrisfield/explored)
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"l" = (
|
||||
/obj/structure/table/woodentable,
|
||||
/obj/item/weapon/reagent_containers/food/snacks/taco,
|
||||
/turf/simulated/floor/wood,
|
||||
/area/submap/debrisfield/foodstand)
|
||||
"m" = (
|
||||
/obj/structure/table/woodentable,
|
||||
/turf/simulated/floor/wood,
|
||||
/area/submap/debrisfield/foodstand)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
@@ -121,7 +121,7 @@ a
|
||||
(5,1,1) = {"
|
||||
b
|
||||
b
|
||||
b
|
||||
c
|
||||
c
|
||||
d
|
||||
d
|
||||
@@ -133,22 +133,22 @@ a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
b
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
e
|
||||
i
|
||||
m
|
||||
k
|
||||
c
|
||||
c
|
||||
c
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
b
|
||||
c
|
||||
c
|
||||
c
|
||||
d
|
||||
f
|
||||
i
|
||||
@@ -165,7 +165,7 @@ c
|
||||
d
|
||||
g
|
||||
j
|
||||
k
|
||||
m
|
||||
c
|
||||
c
|
||||
c
|
||||
|
||||
@@ -0,0 +1,409 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/mob/living/simple_mob/mechanical/mining_drone{
|
||||
faction = "poi_mining_drones"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"d" = (
|
||||
/obj/machinery/power/rtg,
|
||||
/obj/structure/cable{
|
||||
d2 = 2;
|
||||
icon_state = "0-2"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"e" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/power/smes/batteryrack/mapped{
|
||||
input_attempt = 1;
|
||||
mode = 3;
|
||||
output_attempt = 1
|
||||
},
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"f" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"g" = (
|
||||
/turf/simulated/wall,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"h" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/turf/simulated/wall,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"i" = (
|
||||
/obj/item/stack/material/steel,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"j" = (
|
||||
/obj/structure/girder,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"k" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"l" = (
|
||||
/obj/structure/ore_box,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"m" = (
|
||||
/obj/structure/cable,
|
||||
/obj/machinery/power/terminal{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"n" = (
|
||||
/obj/machinery/porta_turret/stationary/syndie{
|
||||
faction = "poi_mining_drones";
|
||||
icon_state = "turret_cover_industrial";
|
||||
turret_type = "industrial"
|
||||
},
|
||||
/obj/effect/map_effect/perma_light,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"o" = (
|
||||
/obj/machinery/power/apc/alarms_hidden{
|
||||
dir = 1;
|
||||
pixel_y = 24
|
||||
},
|
||||
/obj/structure/cable{
|
||||
d2 = 8;
|
||||
icon_state = "0-8"
|
||||
},
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"p" = (
|
||||
/obj/item/weapon/material/shard,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"q" = (
|
||||
/obj/structure/sign/poster{
|
||||
pixel_y = 32;
|
||||
poster_type = "/datum/poster/bay_50"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"r" = (
|
||||
/obj/random/multiple/underdark/ores,
|
||||
/obj/structure/closet/syndicate/resources{
|
||||
name = "storage locker"
|
||||
},
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"s" = (
|
||||
/obj/structure/bed/chair{
|
||||
dir = 4
|
||||
},
|
||||
/obj/effect/floor_decal/rust/steel_decals_rusted2{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"t" = (
|
||||
/obj/item/modular_computer/console/preset/civilian{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/asteroid_steel/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"u" = (
|
||||
/obj/item/weapon/ore,
|
||||
/obj/effect/floor_decal/asteroid,
|
||||
/turf/simulated/floor/tiled/asteroid_steel/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"v" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"w" = (
|
||||
/obj/item/weapon/material/shard,
|
||||
/obj/structure/grille/broken,
|
||||
/obj/item/stack/rods,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"x" = (
|
||||
/obj/structure/grille,
|
||||
/obj/structure/window/reinforced,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"y" = (
|
||||
/obj/machinery/conveyor,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"z" = (
|
||||
/obj/machinery/light/small/emergency{
|
||||
auto_flicker = 1;
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"A" = (
|
||||
/obj/effect/floor_decal/rust,
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"B" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"C" = (
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"D" = (
|
||||
/obj/item/weapon/material/shard,
|
||||
/obj/effect/floor_decal/steeldecal/steel_decals_central5{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"E" = (
|
||||
/obj/machinery/door/airlock/external/glass{
|
||||
density = 0;
|
||||
health = 0;
|
||||
icon_state = "door_open";
|
||||
stat = 1
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"F" = (
|
||||
/obj/machinery/door/airlock/external/glass/bolted,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"G" = (
|
||||
/obj/random/unidentified_medicine/old_medicine,
|
||||
/obj/random/unidentified_medicine/old_medicine,
|
||||
/obj/random/unidentified_medicine/old_medicine,
|
||||
/obj/random/unidentified_medicine/old_medicine,
|
||||
/obj/random/unidentified_medicine/old_medicine,
|
||||
/obj/random/unidentified_medicine/old_medicine,
|
||||
/obj/random/unidentified_medicine/old_medicine,
|
||||
/obj/random/unidentified_medicine/old_medicine,
|
||||
/obj/structure/closet/medical_wall{
|
||||
dir = 2;
|
||||
pixel_y = -24
|
||||
},
|
||||
/obj/item/stack/medical/bruise_pack,
|
||||
/obj/item/stack/medical/ointment,
|
||||
/obj/item/weapon/storage/mre/random,
|
||||
/obj/effect/floor_decal/rust/part_rusted3,
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"H" = (
|
||||
/obj/structure/closet/syndicate/resources{
|
||||
name = "storage locker"
|
||||
},
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"I" = (
|
||||
/obj/item/weapon/storage/toolbox/syndicate,
|
||||
/obj/structure/table/rack/steel,
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"J" = (
|
||||
/obj/machinery/light_switch{
|
||||
pixel_y = -24
|
||||
},
|
||||
/obj/effect/floor_decal/rust,
|
||||
/turf/simulated/floor/tiled/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"L" = (
|
||||
/obj/structure/grille,
|
||||
/obj/structure/window/reinforced/full,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"M" = (
|
||||
/obj/structure/grille,
|
||||
/obj/structure/window/reinforced/full,
|
||||
/obj/structure/window/reinforced,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"N" = (
|
||||
/obj/structure/grille,
|
||||
/obj/structure/window/reinforced/full,
|
||||
/obj/structure/window/reinforced,
|
||||
/obj/structure/window/reinforced{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"O" = (
|
||||
/obj/machinery/mineral/input,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"R" = (
|
||||
/obj/machinery/mineral/processing_unit,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"S" = (
|
||||
/obj/machinery/conveyor{
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/mineral/output,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"T" = (
|
||||
/obj/machinery/conveyor{
|
||||
dir = 4
|
||||
},
|
||||
/obj/structure/plasticflaps/mining,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
"U" = (
|
||||
/obj/machinery/conveyor{
|
||||
dir = 5
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_outpost)
|
||||
|
||||
(1,1,1) = {"
|
||||
v
|
||||
a
|
||||
B
|
||||
f
|
||||
c
|
||||
f
|
||||
c
|
||||
f
|
||||
f
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
v
|
||||
f
|
||||
f
|
||||
l
|
||||
y
|
||||
y
|
||||
y
|
||||
O
|
||||
g
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
v
|
||||
f
|
||||
g
|
||||
g
|
||||
g
|
||||
g
|
||||
g
|
||||
R
|
||||
g
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
v
|
||||
d
|
||||
h
|
||||
m
|
||||
z
|
||||
r
|
||||
g
|
||||
S
|
||||
g
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
v
|
||||
B
|
||||
g
|
||||
e
|
||||
A
|
||||
H
|
||||
g
|
||||
T
|
||||
g
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
v
|
||||
B
|
||||
g
|
||||
o
|
||||
C
|
||||
C
|
||||
f
|
||||
U
|
||||
g
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
v
|
||||
i
|
||||
g
|
||||
q
|
||||
C
|
||||
I
|
||||
g
|
||||
g
|
||||
g
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
v
|
||||
a
|
||||
j
|
||||
s
|
||||
C
|
||||
J
|
||||
g
|
||||
a
|
||||
B
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
i
|
||||
b
|
||||
k
|
||||
t
|
||||
C
|
||||
C
|
||||
M
|
||||
B
|
||||
n
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
b
|
||||
b
|
||||
k
|
||||
u
|
||||
D
|
||||
G
|
||||
g
|
||||
a
|
||||
a
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
b
|
||||
b
|
||||
k
|
||||
k
|
||||
E
|
||||
L
|
||||
g
|
||||
v
|
||||
v
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
v
|
||||
b
|
||||
b
|
||||
w
|
||||
f
|
||||
M
|
||||
v
|
||||
v
|
||||
v
|
||||
"}
|
||||
(13,1,1) = {"
|
||||
v
|
||||
v
|
||||
p
|
||||
x
|
||||
F
|
||||
N
|
||||
v
|
||||
v
|
||||
v
|
||||
"}
|
||||
@@ -0,0 +1,224 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"c" = (
|
||||
/obj/machinery/doppler_array,
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"d" = (
|
||||
/obj/structure/window/phoronbasic{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/window/phoronbasic{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"e" = (
|
||||
/obj/structure/window/phoronbasic{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/salvageable/server,
|
||||
/turf/simulated/floor/bluegrid/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"f" = (
|
||||
/obj/structure/window/phoronbasic{
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/window/phoronbasic{
|
||||
dir = 4
|
||||
},
|
||||
/obj/random/tech_supply/component,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"g" = (
|
||||
/obj/item/weapon/material/shard,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"h" = (
|
||||
/obj/structure/cable{
|
||||
d2 = 4;
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/power/solar/fake{
|
||||
adir = 135
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"i" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "0-8"
|
||||
},
|
||||
/obj/structure/cable{
|
||||
d2 = 4;
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/power/solar/fake{
|
||||
adir = 135
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"j" = (
|
||||
/obj/structure/window/phoronbasic{
|
||||
dir = 8
|
||||
},
|
||||
/obj/structure/cable{
|
||||
icon_state = "4-8"
|
||||
},
|
||||
/obj/random/tech_supply/component,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"k" = (
|
||||
/obj/structure/AIcore{
|
||||
anchored = 1;
|
||||
icon_state = "3";
|
||||
state = 3
|
||||
},
|
||||
/obj/structure/cable{
|
||||
d2 = 4;
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/structure/cable{
|
||||
icon_state = "0-8"
|
||||
},
|
||||
/turf/simulated/floor/bluegrid/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"l" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "4-8"
|
||||
},
|
||||
/obj/random/tech_supply/component,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"m" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "0-8"
|
||||
},
|
||||
/obj/machinery/power/solar/fake{
|
||||
stat = 1
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"n" = (
|
||||
/obj/structure/window/phoronbasic{
|
||||
dir = 8
|
||||
},
|
||||
/obj/structure/window/phoronbasic,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"o" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/item/weapon/material/shard,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"p" = (
|
||||
/obj/structure/window/phoronbasic,
|
||||
/obj/machinery/telecomms/broadcaster,
|
||||
/turf/simulated/floor/bluegrid/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"q" = (
|
||||
/obj/item/weapon/material/shard/phoron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/random/tech_supply/component,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_sat)
|
||||
"r" = (
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"s" = (
|
||||
/obj/item/weapon/ore/glass,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"t" = (
|
||||
/obj/item/stack/cable_coil/cut,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
h
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
i
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
i
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
c
|
||||
d
|
||||
j
|
||||
n
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
e
|
||||
k
|
||||
p
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
b
|
||||
b
|
||||
f
|
||||
l
|
||||
q
|
||||
a
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
a
|
||||
t
|
||||
m
|
||||
r
|
||||
s
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
o
|
||||
t
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
a
|
||||
a
|
||||
g
|
||||
t
|
||||
s
|
||||
a
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
a
|
||||
g
|
||||
a
|
||||
"}
|
||||
@@ -0,0 +1,267 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"a" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"b" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"c" = (
|
||||
/obj/structure/frame/computer,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"d" = (
|
||||
/obj/machinery/teleport/station{
|
||||
icon = 'icons/obj/stationobjs.dmi'
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"e" = (
|
||||
/obj/machinery/teleport/hub{
|
||||
icon = 'icons/obj/stationobjs.dmi'
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"f" = (
|
||||
/obj/machinery/power/apc/alarms_hidden{
|
||||
cell_type = null;
|
||||
coverlocked = 0;
|
||||
dir = 1;
|
||||
locked = 0;
|
||||
opened = 1;
|
||||
pixel_y = 24
|
||||
},
|
||||
/obj/structure/cable{
|
||||
d2 = 2;
|
||||
icon_state = "0-2"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"g" = (
|
||||
/obj/item/weapon/material/shard,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"h" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"i" = (
|
||||
/obj/structure/table/rack,
|
||||
/obj/item/clothing/gloves/fyellow,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"j" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/space)
|
||||
"k" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"l" = (
|
||||
/obj/machinery/door/airlock/external,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"m" = (
|
||||
/obj/item/weapon/storage/toolbox/mechanical,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"n" = (
|
||||
/obj/structure/cable{
|
||||
d1 = 1;
|
||||
d2 = 4;
|
||||
icon_state = "1-4"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"o" = (
|
||||
/obj/structure/cable{
|
||||
icon_state = "4-8"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"p" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/item/stack/cable_coil/cut,
|
||||
/turf/space,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"q" = (
|
||||
/obj/structure/closet/malf/suits,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"r" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/space,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"s" = (
|
||||
/turf/space,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"t" = (
|
||||
/obj/item/stack/cable_coil/cut,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"u" = (
|
||||
/obj/structure/girder,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/old_tele)
|
||||
"v" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
|
||||
(1,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
v
|
||||
a
|
||||
a
|
||||
a
|
||||
v
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
a
|
||||
a
|
||||
a
|
||||
v
|
||||
a
|
||||
a
|
||||
a
|
||||
v
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
a
|
||||
a
|
||||
j
|
||||
j
|
||||
a
|
||||
a
|
||||
a
|
||||
j
|
||||
j
|
||||
a
|
||||
a
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
a
|
||||
a
|
||||
j
|
||||
b
|
||||
b
|
||||
l
|
||||
b
|
||||
b
|
||||
j
|
||||
a
|
||||
a
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
h
|
||||
h
|
||||
h
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
a
|
||||
b
|
||||
b
|
||||
f
|
||||
k
|
||||
k
|
||||
n
|
||||
h
|
||||
b
|
||||
b
|
||||
j
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
a
|
||||
b
|
||||
c
|
||||
g
|
||||
h
|
||||
m
|
||||
o
|
||||
r
|
||||
t
|
||||
b
|
||||
a
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
a
|
||||
b
|
||||
d
|
||||
h
|
||||
h
|
||||
h
|
||||
p
|
||||
s
|
||||
r
|
||||
u
|
||||
a
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
j
|
||||
b
|
||||
e
|
||||
h
|
||||
h
|
||||
g
|
||||
h
|
||||
p
|
||||
h
|
||||
b
|
||||
j
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
j
|
||||
b
|
||||
b
|
||||
i
|
||||
h
|
||||
h
|
||||
h
|
||||
h
|
||||
b
|
||||
b
|
||||
j
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
a
|
||||
a
|
||||
b
|
||||
b
|
||||
h
|
||||
h
|
||||
q
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
"}
|
||||
(12,1,1) = {"
|
||||
a
|
||||
a
|
||||
j
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
b
|
||||
a
|
||||
a
|
||||
a
|
||||
"}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,752 @@
|
||||
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
||||
"aa" = (
|
||||
/turf/template_noop,
|
||||
/area/space)
|
||||
"ab" = (
|
||||
/turf/simulated/wall/rthull,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ac" = (
|
||||
/obj/structure/window/plastitanium/full,
|
||||
/obj/structure/window/plastitanium{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ad" = (
|
||||
/obj/machinery/power/emitter/gyrotron/anchored{
|
||||
active = 1;
|
||||
desc = "A heavy beam emitter modified for use in breaking apart ore-rich asteroids.";
|
||||
dir = 1;
|
||||
locked = 1;
|
||||
mega_energy = 0.2;
|
||||
name = "modified emitter";
|
||||
rate = 5;
|
||||
req_access = list(-1)
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
d2 = 2;
|
||||
icon_state = "0-2"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ae" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"af" = (
|
||||
/obj/structure/cable/yellow{
|
||||
d1 = 1;
|
||||
d2 = 2;
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ag" = (
|
||||
/obj/structure/girder/reinforced,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ah" = (
|
||||
/obj/structure/prop{
|
||||
desc = "An array of conventional power storage units, for when the added charge longivity and cost of a SMES unit is unneded or impractical.";
|
||||
icon = 'icons/obj/power.dmi';
|
||||
icon_state = "gridchecker_off";
|
||||
name = "capacitor bank"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
d2 = 4;
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ai" = (
|
||||
/obj/structure/cable/yellow{
|
||||
d1 = 1;
|
||||
d2 = 8;
|
||||
icon_state = "1-8"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
d1 = 1;
|
||||
d2 = 2;
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aj" = (
|
||||
/obj/machinery/door/blast/regular/open{
|
||||
dir = 4;
|
||||
id = "drone_toggle"
|
||||
},
|
||||
/obj/machinery/conveyor{
|
||||
operating = 1
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ak" = (
|
||||
/obj/structure/prop{
|
||||
desc = "There are a number of what seem to be error messages on these screens, none intelligible.";
|
||||
icon = 'icons/obj/mainframe.dmi';
|
||||
icon_state = "leftb";
|
||||
name = "console"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"al" = (
|
||||
/obj/structure/prop{
|
||||
desc = "This isn't going to be fixable.";
|
||||
icon = 'icons/obj/mainframe.dmi';
|
||||
icon_state = "aimainframeb";
|
||||
name = "broken console"
|
||||
},
|
||||
/obj/effect/map_effect/interval/effect_emitter/sparks,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"am" = (
|
||||
/turf/simulated/mineral/vacuum,
|
||||
/area/space)
|
||||
"an" = (
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ao" = (
|
||||
/obj/machinery/conveyor{
|
||||
operating = 1
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ap" = (
|
||||
/obj/structure/cable/yellow{
|
||||
d2 = 2;
|
||||
icon_state = "0-2"
|
||||
},
|
||||
/obj/machinery/power/terminal{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aq" = (
|
||||
/mob/living/simple_mob/mechanical/hivebot/swarm,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ar" = (
|
||||
/obj/machinery/power/rtg/fake_gen{
|
||||
desc = "An array of conventional power storage units, for when the added charge longivity and cost of a SMES unit is unneded or impractical.";
|
||||
icon = 'icons/obj/power.dmi';
|
||||
icon_state = "gridchecker_off";
|
||||
name = "capacitor bank";
|
||||
power_gen = 12000
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
d2 = 4;
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"as" = (
|
||||
/obj/structure/cable/yellow{
|
||||
d1 = 1;
|
||||
d2 = 8;
|
||||
icon_state = "1-8"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
d1 = 4;
|
||||
d2 = 8;
|
||||
icon_state = "4-8"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"at" = (
|
||||
/obj/structure/cable/yellow{
|
||||
d1 = 4;
|
||||
d2 = 8;
|
||||
icon_state = "4-8"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"au" = (
|
||||
/obj/machinery/door/blast/regular{
|
||||
id = "miner_poi_toggle"
|
||||
},
|
||||
/obj/structure/catwalk,
|
||||
/obj/structure/cable/yellow{
|
||||
d1 = 4;
|
||||
d2 = 8;
|
||||
icon_state = "4-8"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"av" = (
|
||||
/obj/machinery/conveyor{
|
||||
operating = 1
|
||||
},
|
||||
/obj/structure/catwalk,
|
||||
/obj/structure/cable/yellow{
|
||||
d1 = 4;
|
||||
d2 = 8;
|
||||
icon_state = "4-8";
|
||||
plane = -45
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aw" = (
|
||||
/obj/structure/cable/yellow{
|
||||
d1 = 1;
|
||||
d2 = 8;
|
||||
icon_state = "1-8"
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ax" = (
|
||||
/obj/machinery/button/remote/blast_door{
|
||||
id = "miner_poi_toggle";
|
||||
name = "Power Compartment Access";
|
||||
pixel_y = -24
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ay" = (
|
||||
/obj/machinery/door/airlock/maintenance_hatch,
|
||||
/turf/simulated/wall/rthull,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"az" = (
|
||||
/obj/machinery/door/blast/regular/open{
|
||||
dir = 4;
|
||||
id = "miner_poi_toggle"
|
||||
},
|
||||
/obj/machinery/conveyor{
|
||||
operating = 1
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aA" = (
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aB" = (
|
||||
/obj/item/weapon/ore,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aC" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/machinery/artifact,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aD" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aE" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aF" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/coal,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aG" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/coal,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aH" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aI" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/mob/living/simple_mob/mechanical/hivebot/support/commander,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aJ" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aK" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/coal,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aL" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aM" = (
|
||||
/obj/item/weapon/ore,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/coal,
|
||||
/obj/item/weapon/ore/coal,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aN" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aO" = (
|
||||
/obj/item/weapon/ore,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aP" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aQ" = (
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/structure/mob_spawner{
|
||||
density = 1;
|
||||
desc = "A bizarre mess of robotic limbs, glowing microrefineries, and nanoassemblers gradually converting the pile of raw materials into active hivebots.";
|
||||
destructible = 1;
|
||||
icon = 'icons/obj/recycling.dmi';
|
||||
icon_state = "grinder-b1";
|
||||
name = "hivebot assembler";
|
||||
simultaneous_spawns = 6;
|
||||
spawn_delay = 300;
|
||||
spawn_types = list(/mob/living/simple_mob/mechanical/hivebot/swarm = 200, /mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic = 50, /mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser = 25, /mob/living/simple_mob/mechanical/hivebot/ranged_damage/ion = 10, /mob/living/simple_mob/mechanical/hivebot/tank/meatshield = 10)
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aR" = (
|
||||
/obj/structure/shuttle/engine/heater{
|
||||
pixel_y = 8
|
||||
},
|
||||
/turf/space,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aS" = (
|
||||
/obj/item/weapon/ore/gold,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aT" = (
|
||||
/obj/item/weapon/ore,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aU" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/coal,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aV" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/obj/machinery/light/poi,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aW" = (
|
||||
/obj/item/weapon/ore,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aX" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/gold,
|
||||
/obj/item/weapon/ore/silver,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aY" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/iron,
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"aZ" = (
|
||||
/obj/structure/shuttle/engine/propulsion{
|
||||
pixel_y = 8
|
||||
},
|
||||
/turf/space,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"ba" = (
|
||||
/obj/structure/prop{
|
||||
desc = "An array of conventional power storage units, for when the added charge longivity and cost of a SMES unit is unneded or impractical.";
|
||||
icon = 'icons/obj/power.dmi';
|
||||
icon_state = "gridchecker_off";
|
||||
name = "capacitor bank"
|
||||
},
|
||||
/obj/structure/cable/yellow{
|
||||
d2 = 4;
|
||||
icon_state = "0-4"
|
||||
},
|
||||
/obj/machinery/light/small/poi{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
"bb" = (
|
||||
/obj/machinery/light/small/flicker{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/airless,
|
||||
/area/submap/debrisfield/mining_drone_ship)
|
||||
|
||||
(1,1,1) = {"
|
||||
aa
|
||||
aa
|
||||
aa
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
aR
|
||||
aZ
|
||||
"}
|
||||
(2,1,1) = {"
|
||||
aa
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
ah
|
||||
ba
|
||||
ar
|
||||
ab
|
||||
aA
|
||||
aA
|
||||
ab
|
||||
ab
|
||||
aa
|
||||
"}
|
||||
(3,1,1) = {"
|
||||
aa
|
||||
ac
|
||||
ad
|
||||
af
|
||||
ai
|
||||
ai
|
||||
as
|
||||
ab
|
||||
aB
|
||||
aJ
|
||||
aS
|
||||
ab
|
||||
aa
|
||||
"}
|
||||
(4,1,1) = {"
|
||||
aa
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
an
|
||||
at
|
||||
ab
|
||||
aC
|
||||
aK
|
||||
aT
|
||||
ab
|
||||
aa
|
||||
"}
|
||||
(5,1,1) = {"
|
||||
aa
|
||||
aa
|
||||
aa
|
||||
aa
|
||||
ab
|
||||
ab
|
||||
au
|
||||
ab
|
||||
aD
|
||||
aL
|
||||
aU
|
||||
ab
|
||||
aa
|
||||
"}
|
||||
(6,1,1) = {"
|
||||
aa
|
||||
aa
|
||||
aa
|
||||
aa
|
||||
aj
|
||||
ao
|
||||
av
|
||||
az
|
||||
aE
|
||||
aM
|
||||
aV
|
||||
ab
|
||||
aa
|
||||
"}
|
||||
(7,1,1) = {"
|
||||
aa
|
||||
am
|
||||
aa
|
||||
aa
|
||||
ab
|
||||
ab
|
||||
au
|
||||
ab
|
||||
aF
|
||||
aN
|
||||
aW
|
||||
ab
|
||||
aa
|
||||
"}
|
||||
(8,1,1) = {"
|
||||
am
|
||||
am
|
||||
am
|
||||
ab
|
||||
ab
|
||||
ap
|
||||
aw
|
||||
ab
|
||||
aG
|
||||
aO
|
||||
aX
|
||||
ab
|
||||
aa
|
||||
"}
|
||||
(9,1,1) = {"
|
||||
am
|
||||
am
|
||||
ae
|
||||
ag
|
||||
ak
|
||||
aq
|
||||
ax
|
||||
ab
|
||||
aH
|
||||
aP
|
||||
aY
|
||||
ab
|
||||
aa
|
||||
"}
|
||||
(10,1,1) = {"
|
||||
am
|
||||
am
|
||||
ae
|
||||
ae
|
||||
al
|
||||
bb
|
||||
an
|
||||
ab
|
||||
aI
|
||||
aQ
|
||||
ab
|
||||
ab
|
||||
aa
|
||||
"}
|
||||
(11,1,1) = {"
|
||||
aa
|
||||
am
|
||||
am
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
ay
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
aR
|
||||
aZ
|
||||
"}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -245,7 +245,7 @@
|
||||
/datum/map_template/tether_lateload/away_debrisfield/on_map_loaded(z)
|
||||
. = ..()
|
||||
//Commented out until we actually get POIs
|
||||
seed_submaps(list(Z_LEVEL_DEBRISFIELD), 200, /area/tether_away/debrisfield/unexplored, /datum/map_template/debrisfield)
|
||||
seed_submaps(list(Z_LEVEL_DEBRISFIELD), 400, /area/space, /datum/map_template/debrisfield)
|
||||
|
||||
/datum/map_z_level/tether_lateload/away_debrisfield
|
||||
name = "Away Mission - Debris Field"
|
||||
|
||||
Reference in New Issue
Block a user