mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-25 22:12:58 +01:00
Simulated to Unsimulated (#6410)
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
|
||||
var/list/rock_tcache = typecacheof(list(
|
||||
/turf/simulated/mineral,
|
||||
/turf/simulated/floor/asteroid,
|
||||
/turf/unsimulated/floor/asteroid,
|
||||
/turf/simulated/open
|
||||
))
|
||||
var/list/obstacle_tcache = typecacheof(list(
|
||||
@@ -54,7 +54,7 @@
|
||||
var/list/path_tcache = typecacheof(list(
|
||||
/turf/simulated/floor,
|
||||
/turf/unsimulated/floor
|
||||
)) - typecacheof(/turf/simulated/floor/asteroid)
|
||||
)) - typecacheof(/turf/unsimulated/floor/asteroid)
|
||||
|
||||
var/turf/T
|
||||
var/area/A
|
||||
|
||||
@@ -157,8 +157,8 @@
|
||||
for(var/obj/item/weapon/ore/ore in range(chassis,1))
|
||||
if(get_dir(chassis,ore)&chassis.dir)
|
||||
ore.Move(ore_box)
|
||||
else if(istype(target, /turf/simulated/floor/asteroid))
|
||||
for(var/turf/simulated/floor/asteroid/M in range(chassis,1))
|
||||
else if(istype(target, /turf/unsimulated/floor/asteroid))
|
||||
for(var/turf/unsimulated/floor/asteroid/M in range(chassis,1))
|
||||
if(get_dir(chassis,M)&chassis.dir)
|
||||
M.gets_dug()
|
||||
log_message("Drilled through \the [target]")
|
||||
@@ -216,8 +216,8 @@
|
||||
for(var/obj/item/weapon/ore/ore in range(chassis,1))
|
||||
if(get_dir(chassis,ore)&chassis.dir)
|
||||
ore.Move(ore_box)
|
||||
else if(istype(target,/turf/simulated/floor/asteroid))
|
||||
for(var/turf/simulated/floor/asteroid/M in range(target,1))
|
||||
else if(istype(target,/turf/unsimulated/floor/asteroid))
|
||||
for(var/turf/unsimulated/floor/asteroid/M in range(target,1))
|
||||
M.gets_dug()
|
||||
log_message("Drilled through \the [target]")
|
||||
if(locate(/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp) in chassis.equipment)
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
/obj/structure/lattice/Initialize()
|
||||
. = ..()
|
||||
if (restrict_placement)
|
||||
if(!(istype(loc, /turf/space) || isopenturf(loc) || istype(loc, /turf/simulated/floor/asteroid)))
|
||||
if(!(istype(loc, /turf/space) || isopenturf(loc) || istype(loc, /turf/unsimulated/floor/asteroid)))
|
||||
return INITIALIZE_HINT_QDEL
|
||||
for(var/obj/structure/lattice/LAT in loc)
|
||||
if(LAT != src)
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
//Don't place on openspace!
|
||||
if(istype(T,/turf/simulated/open))
|
||||
return
|
||||
//Dont place on unsimulated!
|
||||
if(istype(T,/turf/unsimulated))
|
||||
return
|
||||
|
||||
var/cardinal_turfs = T.CardinalTurfs()
|
||||
|
||||
|
||||
@@ -4,10 +4,6 @@
|
||||
var/wet_amount = 0
|
||||
var/image/wet_overlay = null
|
||||
|
||||
//Mining resources (for the large drills).
|
||||
var/has_resources
|
||||
var/list/resources
|
||||
|
||||
var/thermite = 0
|
||||
oxygen = MOLES_O2STANDARD
|
||||
nitrogen = MOLES_N2STANDARD
|
||||
|
||||
@@ -7,12 +7,6 @@
|
||||
var/broken
|
||||
var/burnt
|
||||
|
||||
// Plating data.
|
||||
var/base_name = "plating"
|
||||
var/base_desc = "The naked hull."
|
||||
var/base_icon = 'icons/turf/flooring/plating.dmi'
|
||||
var/base_icon_state = "plating"
|
||||
|
||||
// Flooring data.
|
||||
var/flooring_override
|
||||
var/initial_flooring
|
||||
|
||||
+19
-3
@@ -34,6 +34,16 @@
|
||||
|
||||
var/movement_cost = 0 // How much the turf slows down movement, if any.
|
||||
|
||||
//Mining resources (for the large drills).
|
||||
var/has_resources
|
||||
var/list/resources
|
||||
|
||||
// Plating data.
|
||||
var/base_name = "plating"
|
||||
var/base_desc = "The naked hull."
|
||||
var/base_icon = 'icons/turf/flooring/plating.dmi'
|
||||
var/base_icon_state = "plating"
|
||||
|
||||
// Parent code is duplicated in here instead of ..() for performance reasons.
|
||||
// There's ALSO a copy of this in mine_turfs.dm!
|
||||
/turf/Initialize(mapload, ...)
|
||||
@@ -329,17 +339,23 @@ var/const/enterloopsanity = 100
|
||||
* @return TRUE if a roof has been spawned, FALSE if not.
|
||||
*/
|
||||
/turf/proc/spawn_roof(flags = 0)
|
||||
var/turf/simulated/open/above = GetAbove(src)
|
||||
var/turf/above = GetAbove(src)
|
||||
if (!above)
|
||||
return FALSE
|
||||
|
||||
if (((istype(above)) || (flags & ROOF_FORCE_SPAWN)) && roof_type && above)
|
||||
above.ChangeTurf(roof_type)
|
||||
if ((isopenturf(above) || (flags & ROOF_FORCE_SPAWN)) && get_roof_type() && above)
|
||||
above.ChangeTurf(get_roof_type())
|
||||
roof_flags |= flags
|
||||
return TRUE
|
||||
|
||||
return FALSE
|
||||
|
||||
/**
|
||||
* Returns the roof type of the current turf
|
||||
*/
|
||||
/turf/proc/get_roof_type()
|
||||
return roof_type
|
||||
|
||||
/**
|
||||
* Cleans up the roof above a tile if there is one spawned and the ROOF_CLEANUP
|
||||
* flag is present on the source turf.
|
||||
|
||||
@@ -410,7 +410,7 @@ var/global/movement_disabled_exception //This is the client that calls the proc,
|
||||
|
||||
for(var/obj/machinery/door/airlock/A in world)
|
||||
var/turf/T = get_turf(A)
|
||||
if(istype(T, /turf/space) || istype(T, /turf/simulated/floor/asteroid) || isopenturf(T) || T.density)
|
||||
if(istype(T, /turf/space) || istype(T, /turf/unsimulated/floor/asteroid) || isopenturf(T) || T.density)
|
||||
to_chat(usr, "Airlock [A] with bad turf at ([A.x],[A.y],[A.z]) in [T.loc].")
|
||||
|
||||
/client/proc/get_bad_fdoors()
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
var/list/despawn_turfs = list(
|
||||
/turf/space,
|
||||
/turf/simulated/floor/asteroid,
|
||||
/turf/unsimulated/floor/asteroid,
|
||||
/turf/simulated/open,
|
||||
/turf/simulated/floor/reinforced/airless // Station roof.
|
||||
)
|
||||
|
||||
@@ -79,8 +79,8 @@
|
||||
return
|
||||
|
||||
//Drill through the flooring, if any.
|
||||
if(istype(get_turf(src), /turf/simulated/floor/asteroid))
|
||||
var/turf/simulated/floor/asteroid/T = get_turf(src)
|
||||
if(istype(get_turf(src), /turf/unsimulated/floor/asteroid))
|
||||
var/turf/unsimulated/floor/asteroid/T = get_turf(src)
|
||||
if(!T.dug)
|
||||
T.gets_dug()
|
||||
else if(istype(get_turf(src), /turf/simulated/floor))
|
||||
@@ -89,7 +89,7 @@
|
||||
|
||||
//Dig out the tasty ores.
|
||||
if(resource_field.len)
|
||||
var/turf/simulated/harvesting = pick(resource_field)
|
||||
var/turf/harvesting = pick(resource_field)
|
||||
|
||||
while(resource_field.len && !harvesting.resources)
|
||||
harvesting.has_resources = 0
|
||||
@@ -295,7 +295,7 @@
|
||||
|
||||
var/tx = T.x - 2
|
||||
var/ty = T.y - 2
|
||||
var/turf/simulated/mine_turf
|
||||
var/turf/mine_turf
|
||||
for(var/iy = 0,iy < 5, iy++)
|
||||
for(var/ix = 0, ix < 5, ix++)
|
||||
mine_turf = locate(tx + ix, ty + iy, T.z)
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"exotic matter" = 0
|
||||
)
|
||||
|
||||
for(var/turf/simulated/T in range(2, get_turf(user)))
|
||||
for(var/turf/T in range(2, get_turf(user)))
|
||||
|
||||
if(!T.has_resources)
|
||||
continue
|
||||
|
||||
@@ -411,7 +411,7 @@
|
||||
var/obj/item/stack/flag/F = locate() in get_turf(src)
|
||||
|
||||
var/turf/T = get_turf(src)
|
||||
if(!T || !istype(T, /turf/simulated/floor/asteroid))
|
||||
if(!T || !istype(T, /turf/unsimulated/floor/asteroid))
|
||||
to_chat(user, "The beacon won't stand up in this terrain.")
|
||||
return
|
||||
|
||||
@@ -495,7 +495,7 @@
|
||||
if(stored_matter <= 0)
|
||||
return
|
||||
|
||||
if(!istype(A, /turf/simulated/floor))
|
||||
if(!istype(A, /turf/simulated/floor) && !istype(A, /turf/unsimulated/floor))
|
||||
return
|
||||
|
||||
if(locate(/obj/structure/track) in A)
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
..()
|
||||
|
||||
// Special asteroid variant that goes with lava better.
|
||||
/turf/simulated/floor/asteroid/basalt
|
||||
/turf/unsimulated/floor/asteroid/basalt
|
||||
name = "basalt"
|
||||
icon = 'icons/turf/basalt.dmi'
|
||||
icon_state = "basalt"
|
||||
@@ -65,14 +65,14 @@
|
||||
|
||||
footstep_sound = "concretestep"
|
||||
|
||||
/turf/simulated/floor/asteroid/basalt/get_smooth_underlay_icon(mutable_appearance/underlay_appearance, turf/asking_turf, adjacency_dir)
|
||||
/turf/unsimulated/floor/asteroid/basalt/get_smooth_underlay_icon(mutable_appearance/underlay_appearance, turf/asking_turf, adjacency_dir)
|
||||
underlay_appearance.icon = icon
|
||||
underlay_appearance.icon_state = "basalt"
|
||||
if (prob(20))
|
||||
underlay_appearance.icon_state += "[rand(0,12)]"
|
||||
return TRUE
|
||||
|
||||
/turf/simulated/floor/asteroid/basalt/Initialize(mapload)
|
||||
/turf/unsimulated/floor/asteroid/basalt/Initialize(mapload)
|
||||
if (prob(20))
|
||||
var/variant = rand(0,12)
|
||||
icon_state = "basalt[variant]"
|
||||
@@ -85,7 +85,7 @@
|
||||
light_range = 2
|
||||
. = ..()
|
||||
|
||||
/turf/simulated/floor/asteroid/ash
|
||||
/turf/unsimulated/floor/asteroid/ash
|
||||
name = "ash"
|
||||
icon_state = "ash"
|
||||
desc = "A fine grey ash. Looks pretty tightly packed."
|
||||
@@ -94,12 +94,12 @@
|
||||
base_icon_state = "ash"
|
||||
footstep_sound = "sandstep"
|
||||
|
||||
/turf/simulated/floor/asteroid/ash/Initialize()
|
||||
/turf/unsimulated/floor/asteroid/ash/Initialize()
|
||||
. = ..()
|
||||
if (prob(20))
|
||||
add_overlay("asteroid[rand(0, 9)]", TRUE)
|
||||
|
||||
/turf/simulated/floor/asteroid/ash/rocky
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky
|
||||
name = "rocky ash"
|
||||
icon_state = "rockyash"
|
||||
base_icon_state = "rockyash"
|
||||
|
||||
@@ -17,7 +17,7 @@ var/list/mineral_can_smooth_with = list(
|
||||
|
||||
// Some extra types for the surface to keep things pretty.
|
||||
/turf/simulated/mineral/surface
|
||||
mined_turf = /turf/simulated/floor/asteroid/ash
|
||||
mined_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
|
||||
/turf/simulated/mineral //wall piece
|
||||
name = "rock"
|
||||
@@ -38,7 +38,7 @@ var/list/mineral_can_smooth_with = list(
|
||||
density = 1
|
||||
blocks_air = 1
|
||||
temperature = T0C
|
||||
var/mined_turf = /turf/simulated/floor/asteroid/ash/rocky
|
||||
var/mined_turf = /turf/unsimulated/floor/asteroid/ash/rocky
|
||||
var/ore/mineral
|
||||
var/mined_ore = 0
|
||||
var/last_act = 0
|
||||
@@ -528,7 +528,7 @@ var/list/mineral_can_smooth_with = list(
|
||||
|
||||
// Setting icon/icon_state initially will use these values when the turf is built on/replaced.
|
||||
// This means you can put grass on the asteroid etc.
|
||||
/turf/simulated/floor/asteroid
|
||||
/turf/unsimulated/floor/asteroid
|
||||
name = "coder's blight"
|
||||
icon = 'icons/turf/map_placeholders.dmi'
|
||||
icon_state = ""
|
||||
@@ -539,7 +539,6 @@ var/list/mineral_can_smooth_with = list(
|
||||
base_icon = 'icons/turf/map_placeholders.dmi'
|
||||
base_icon_state = "ash"
|
||||
|
||||
initial_flooring = null
|
||||
oxygen = 0
|
||||
nitrogen = 0
|
||||
temperature = TCMB
|
||||
@@ -553,14 +552,14 @@ var/list/mineral_can_smooth_with = list(
|
||||
// Same as the other, this is a global so we don't have a lot of pointless lists floating around.
|
||||
// Basalt is explicitly omitted so ash will spill onto basalt turfs.
|
||||
var/list/asteroid_floor_smooth = list(
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/turf/simulated/mineral,
|
||||
/turf/simulated/wall,
|
||||
/turf/simulated/shuttle
|
||||
)
|
||||
|
||||
// Copypaste parent for performance.
|
||||
/turf/simulated/floor/asteroid/Initialize(mapload)
|
||||
/turf/unsimulated/floor/asteroid/Initialize(mapload)
|
||||
if(initialized)
|
||||
crash_with("Warning: [src]([type]) initialized multiple times!")
|
||||
initialized = TRUE
|
||||
@@ -595,7 +594,7 @@ var/list/asteroid_floor_smooth = list(
|
||||
|
||||
return INITIALIZE_HINT_NORMAL
|
||||
|
||||
/turf/simulated/floor/asteroid/ex_act(severity)
|
||||
/turf/unsimulated/floor/asteroid/ex_act(severity)
|
||||
switch(severity)
|
||||
if(3.0)
|
||||
return
|
||||
@@ -615,10 +614,10 @@ var/list/asteroid_floor_smooth = list(
|
||||
gets_dug()
|
||||
return
|
||||
|
||||
/turf/simulated/floor/asteroid/is_plating()
|
||||
/turf/unsimulated/floor/asteroid/is_plating()
|
||||
return 0
|
||||
|
||||
/turf/simulated/floor/asteroid/attackby(obj/item/weapon/W as obj, mob/user as mob)
|
||||
/turf/unsimulated/floor/asteroid/attackby(obj/item/weapon/W as obj, mob/user as mob)
|
||||
|
||||
if(!W || !user)
|
||||
return 0
|
||||
@@ -669,13 +668,13 @@ var/list/asteroid_floor_smooth = list(
|
||||
playsound(user.loc, 'sound/effects/stonedoor_openclose.ogg', 50, 1)
|
||||
digging = 1
|
||||
if(!do_after(user, 60))
|
||||
if (istype(src, /turf/simulated/floor/asteroid))
|
||||
if (istype(src, /turf/unsimulated/floor/asteroid))
|
||||
digging = 0
|
||||
return
|
||||
|
||||
// Turfs are special. They don't delete. So we need to check if it's
|
||||
// still the same turf as before the sleep.
|
||||
if (!istype(src, /turf/simulated/floor/asteroid))
|
||||
if (!istype(src, /turf/unsimulated/floor/asteroid))
|
||||
return
|
||||
|
||||
playsound(user.loc, 'sound/effects/stonedoor_openclose.ogg', 50, 1)
|
||||
@@ -718,13 +717,13 @@ var/list/asteroid_floor_smooth = list(
|
||||
|
||||
digging = 1
|
||||
if(!do_after(user,40))
|
||||
if (istype(src, /turf/simulated/floor/asteroid))
|
||||
if (istype(src, /turf/unsimulated/floor/asteroid))
|
||||
digging = 0
|
||||
return
|
||||
|
||||
// Turfs are special. They don't delete. So we need to check if it's
|
||||
// still the same turf as before the sleep.
|
||||
if (!istype(src, /turf/simulated/floor/asteroid))
|
||||
if (!istype(src, /turf/unsimulated/floor/asteroid))
|
||||
return
|
||||
|
||||
to_chat(user, "<span class='notice'> You dug a hole.</span>")
|
||||
@@ -749,7 +748,7 @@ var/list/asteroid_floor_smooth = list(
|
||||
..(W,user)
|
||||
return
|
||||
|
||||
/turf/simulated/floor/asteroid/proc/gets_dug(mob/user)
|
||||
/turf/unsimulated/floor/asteroid/proc/gets_dug(mob/user)
|
||||
|
||||
add_overlay("asteroid_dug", TRUE)
|
||||
|
||||
@@ -814,7 +813,7 @@ var/list/asteroid_floor_smooth = list(
|
||||
else
|
||||
ChangeTurf(/turf/space)
|
||||
|
||||
/turf/simulated/floor/asteroid/Entered(atom/movable/M as mob|obj)
|
||||
/turf/unsimulated/floor/asteroid/Entered(atom/movable/M as mob|obj)
|
||||
..()
|
||||
if(istype(M,/mob/living/silicon/robot))
|
||||
var/mob/living/silicon/robot/R = M
|
||||
|
||||
@@ -229,12 +229,12 @@
|
||||
if(target.loc == src.loc)
|
||||
return 0
|
||||
var/turf/T = get_turf(target.loc)
|
||||
if(!istype(T,/turf/simulated/floor/asteroid))
|
||||
if(!istype(T,/turf/unsimulated/floor/asteroid))
|
||||
return 0
|
||||
if(locate(/mob/living/simple_animal/hostile/lesserworm) in T)
|
||||
return 0
|
||||
spawn_delay = world.time + spawn_time
|
||||
var/turf/simulated/floor/asteroid/A = T
|
||||
var/turf/unsimulated/floor/asteroid/A = T
|
||||
var/mob/living/simple_animal/hostile/lesserworm/L = new /mob/living/simple_animal/hostile/lesserworm(A)
|
||||
if(A.dug < 1)
|
||||
A.gets_dug()
|
||||
|
||||
@@ -223,4 +223,11 @@
|
||||
return TRUE
|
||||
|
||||
/turf/simulated/open/AddTracks(var/list/DNA, var/comingdir, var/goingdir, var/bloodcolor="#A10808")
|
||||
return
|
||||
return
|
||||
|
||||
//Returns the roof type of the turf below
|
||||
/turf/simulated/open/get_roof_type()
|
||||
var/turf/t = GetBelow(src)
|
||||
if(!t)
|
||||
return null
|
||||
return t.roof_type
|
||||
@@ -2,7 +2,7 @@
|
||||
iterations = 5
|
||||
descriptor = "moon caves"
|
||||
wall_type = /turf/simulated/mineral
|
||||
floor_type = /turf/simulated/floor/asteroid/ash/rocky
|
||||
floor_type = /turf/unsimulated/floor/asteroid/ash/rocky
|
||||
target_turf_type = /turf/unsimulated/mask
|
||||
var/mineral_sparse = /turf/simulated/mineral/random
|
||||
var/mineral_rich = /turf/simulated/mineral/random/high_chance
|
||||
@@ -156,8 +156,8 @@
|
||||
|
||||
/datum/random_map/automata/cave_system/chasms/surface
|
||||
descriptor = "chasm surface"
|
||||
wall_type = /turf/simulated/floor/asteroid/ash
|
||||
wall_type = /turf/unsimulated/floor/asteroid/ash
|
||||
floor_type = /turf/simulated/open/airless
|
||||
target_turf_type = /turf/unsimulated/chasm_mask
|
||||
mineral_sparse = /turf/simulated/floor/asteroid/ash
|
||||
mineral_rich = /turf/simulated/floor/asteroid/ash
|
||||
mineral_sparse = /turf/unsimulated/floor/asteroid/ash
|
||||
mineral_rich = /turf/unsimulated/floor/asteroid/ash
|
||||
|
||||
@@ -28,4 +28,4 @@
|
||||
if(0 to 4)
|
||||
return /turf/simulated/lava
|
||||
else
|
||||
return /turf/simulated/floor/asteroid/basalt
|
||||
return /turf/unsimulated/floor/asteroid/basalt
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
for(var/i=0,i<chunk_size,i++)
|
||||
for(var/j=0,j<chunk_size,j++)
|
||||
var/turf/simulated/T = locate(tx+j, ty+i, origin_z)
|
||||
var/turf/T = locate(tx+j, ty+i, origin_z)
|
||||
if(!istype(T) || !T.has_resources)
|
||||
continue
|
||||
if(!priority_process)
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
// Ignore station areas.
|
||||
if (the_station_areas[T.loc])
|
||||
continue
|
||||
else if (istype(T, /turf/space) || istype(T, /turf/simulated/floor/asteroid) || isopenturf(T))
|
||||
else if (istype(T, /turf/space) || istype(T, /turf/unsimulated/floor/asteroid) || isopenturf(T))
|
||||
for (var/uu in RANGE_TURFS(1, T))
|
||||
U = uu
|
||||
if (T == U)
|
||||
|
||||
@@ -99,7 +99,7 @@
|
||||
if(kickstand) return
|
||||
|
||||
//these things like space, not turf. Dragging shouldn't weigh you down.
|
||||
var/static/list/types = typecacheof(list(/turf/space, /turf/simulated/open, /turf/simulated/floor/asteroid))
|
||||
var/static/list/types = typecacheof(list(/turf/space, /turf/simulated/open, /turf/unsimulated/floor/asteroid))
|
||||
if(is_type_in_typecache(destination,types) || pulledby)
|
||||
if(!space_speed)
|
||||
return 0
|
||||
|
||||
@@ -172,7 +172,7 @@ datum/unit_test/wire_test/start_test()
|
||||
for(var/obj/machinery/door/airlock/A in world)
|
||||
var/turf/T = get_turf(A)
|
||||
checks++
|
||||
if(istype(T, /turf/space) || istype(T, /turf/simulated/floor/asteroid) || isopenturf(T) || T.density)
|
||||
if(istype(T, /turf/space) || istype(T, /turf/unsimulated/floor/asteroid) || isopenturf(T) || T.density)
|
||||
failed_checks++
|
||||
log_unit_test("Airlock [A] with bad turf at ([A.x],[A.y],[A.z]) in [T.loc].")
|
||||
|
||||
@@ -198,7 +198,7 @@ datum/unit_test/wire_test/start_test()
|
||||
if(firelock_increment > 1)
|
||||
failed_checks++
|
||||
log_unit_test("Double firedoor [F] at ([F.x],[F.y],[F.z]) in [T.loc].")
|
||||
else if(istype(T, /turf/space) || istype(T, /turf/simulated/floor/asteroid) || isopenturf(T) || T.density)
|
||||
else if(istype(T, /turf/space) || istype(T, /turf/unsimulated/floor/asteroid) || isopenturf(T) || T.density)
|
||||
failed_checks++
|
||||
log_unit_test("Firedoor with bad turf at ([F.x],[F.y],[F.z]) in [T.loc].")
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
|
||||
/area/shuttle/arrival/station
|
||||
icon_state = "shuttle"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/escape
|
||||
@@ -51,7 +51,7 @@
|
||||
/area/shuttle/escape/station
|
||||
name = "\improper Emergency Shuttle Station"
|
||||
icon_state = "shuttle2"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/escape/centcom
|
||||
@@ -71,7 +71,7 @@
|
||||
|
||||
/area/shuttle/escape_pod1/station
|
||||
icon_state = "shuttle2"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/escape_pod1/centcom
|
||||
@@ -89,7 +89,7 @@
|
||||
|
||||
/area/shuttle/escape_pod2/station
|
||||
icon_state = "shuttle2"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/escape_pod2/centcom
|
||||
@@ -107,7 +107,7 @@
|
||||
|
||||
/area/shuttle/escape_pod3/station
|
||||
icon_state = "shuttle2"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/escape_pod3/centcom
|
||||
@@ -125,7 +125,7 @@
|
||||
|
||||
/area/shuttle/escape_pod5/station
|
||||
icon_state = "shuttle2"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/escape_pod5/centcom
|
||||
@@ -157,7 +157,7 @@
|
||||
/area/shuttle/transport1/station
|
||||
icon_state = "shuttle"
|
||||
name = "\improper Transport Shuttle"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/specops/centcom
|
||||
@@ -169,7 +169,7 @@
|
||||
|
||||
/area/shuttle/specops/station
|
||||
icon_state = "shuttlered2"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/syndicate_elite
|
||||
@@ -182,7 +182,7 @@
|
||||
|
||||
/area/shuttle/syndicate_elite/station
|
||||
icon_state = "shuttlered2"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/administration
|
||||
@@ -197,7 +197,7 @@
|
||||
/area/shuttle/administration/station
|
||||
name = "\improper Administration Shuttle"
|
||||
icon_state = "shuttlered2"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/research
|
||||
@@ -206,7 +206,7 @@
|
||||
/area/shuttle/research/station
|
||||
icon_state = "shuttle2"
|
||||
flags = RAD_SHIELDED | SPAWN_ROOF
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
/area/shuttle/research/outpost
|
||||
@@ -228,6 +228,6 @@
|
||||
/area/shuttle/legion/station
|
||||
name = "\improper Foreign Legion Landing"
|
||||
icon_state = "shuttlegrn2"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
station_area = 1
|
||||
|
||||
|
||||
@@ -143,7 +143,7 @@
|
||||
name = "\improper Surface of the Station"
|
||||
icon_state = "southwest"
|
||||
station_area = 1
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
|
||||
/area/syndicate_station/above
|
||||
name = "\improper Above the Station"
|
||||
@@ -156,13 +156,13 @@
|
||||
/area/syndicate_station/caverns
|
||||
name = "\improper Caverns"
|
||||
icon_state = "southeast"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
|
||||
/area/syndicate_station/arrivals_dock
|
||||
name = "\improper Docked with Station"
|
||||
icon_state = "shuttle"
|
||||
station_area = 1
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
|
||||
/area/syndicate_station/transit
|
||||
name = "\improper Hyperspace"
|
||||
@@ -199,7 +199,7 @@
|
||||
name = "\improper Surface of the Station"
|
||||
icon_state = "southwest"
|
||||
station_area = 1
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
|
||||
/area/skipjack_station/above
|
||||
name = "\improper Above the Station"
|
||||
@@ -212,7 +212,7 @@
|
||||
/area/skipjack_station/cavern
|
||||
name = "\improper Caverns"
|
||||
icon_state = "southeast"
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
|
||||
//DJSTATION
|
||||
|
||||
@@ -258,7 +258,7 @@
|
||||
name = "\improper Docked with station"
|
||||
icon_state = "southwest"
|
||||
station_area = 1
|
||||
base_turf = /turf/simulated/floor/asteroid/ash
|
||||
base_turf = /turf/unsimulated/floor/asteroid/ash
|
||||
|
||||
/area/beach
|
||||
name = "Keelin's private beach"
|
||||
|
||||
@@ -193,6 +193,7 @@
|
||||
/area/maintenance/interstitial_construction_site
|
||||
name = "\improper Construction Site"
|
||||
icon_state = "engineering_workshop"
|
||||
flags = HIDE_FROM_HOLOMAP
|
||||
|
||||
// SUBSTATIONS (Subtype of maint, that should let them serve as shielded area during radstorm)
|
||||
|
||||
|
||||
@@ -21266,13 +21266,13 @@
|
||||
},
|
||||
/area/syndicate_station/start)
|
||||
"aVx" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"aVy" = (
|
||||
/obj/machinery/light/small{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/merchant_station)
|
||||
"aVz" = (
|
||||
/obj/effect/floor_decal/carpet,
|
||||
@@ -21292,7 +21292,7 @@
|
||||
/area/merchant_ship/start)
|
||||
"aVA" = (
|
||||
/obj/machinery/light/small,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/merchant_station)
|
||||
"aVB" = (
|
||||
/obj/structure/window/reinforced,
|
||||
|
||||
@@ -441,7 +441,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/engineering/atmos)
|
||||
"aba" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"abb" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
|
||||
@@ -614,7 +614,7 @@
|
||||
/area/engineering/atmos)
|
||||
"abx" = (
|
||||
/obj/random/junk,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"aby" = (
|
||||
/obj/structure/lattice/catwalk/indoor,
|
||||
@@ -699,7 +699,7 @@
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/disposalpipe/trunk,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"abL" = (
|
||||
/obj/machinery/door/firedoor,
|
||||
@@ -4094,7 +4094,7 @@
|
||||
pixel_y = 0;
|
||||
req_access = list(10,13)
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"aiW" = (
|
||||
/obj/machinery/atmospherics/pipe/zpipe/up/yellow{
|
||||
@@ -6385,7 +6385,7 @@
|
||||
/obj/effect/landmark{
|
||||
name = "cavernspawn"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"ani" = (
|
||||
/obj/structure/grille,
|
||||
@@ -10043,7 +10043,7 @@
|
||||
/obj/effect/landmark{
|
||||
name = "carpspawn"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"ase" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
@@ -10102,7 +10102,7 @@
|
||||
/obj/structure/window/reinforced{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"asw" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
@@ -10119,7 +10119,7 @@
|
||||
c_tag = "AI Core - Entrance";
|
||||
pixel_x = 16
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"asy" = (
|
||||
/obj/structure/cable{
|
||||
@@ -10133,18 +10133,18 @@
|
||||
/obj/machinery/light/small/emergency{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/turret_protected/ai_upload_foyer)
|
||||
"asB" = (
|
||||
/obj/structure/window/reinforced,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"asC" = (
|
||||
/obj/structure/window/reinforced{
|
||||
dir = 4
|
||||
},
|
||||
/obj/structure/window/reinforced,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"asD" = (
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
@@ -10162,14 +10162,14 @@
|
||||
dir = 8
|
||||
},
|
||||
/obj/structure/window/reinforced,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"asF" = (
|
||||
/obj/structure/window/reinforced{
|
||||
icon_state = "rwindow";
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"asG" = (
|
||||
/turf/simulated/floor{
|
||||
@@ -10238,7 +10238,7 @@
|
||||
/obj/structure/window/reinforced{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"asN" = (
|
||||
/obj/structure/window/reinforced{
|
||||
@@ -10250,7 +10250,7 @@
|
||||
/obj/structure/window/reinforced{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"asO" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
@@ -10271,7 +10271,7 @@
|
||||
/obj/structure/window/reinforced{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"asR" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
@@ -10506,7 +10506,7 @@
|
||||
icon_state = "rwindow";
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"atF" = (
|
||||
/obj/structure/table/rack{
|
||||
@@ -10747,7 +10747,7 @@
|
||||
/area/mine/unexplored)
|
||||
"auj" = (
|
||||
/obj/machinery/light/small/emergency,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/turret_protected/ai_upload_foyer)
|
||||
"auk" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
@@ -11059,7 +11059,7 @@
|
||||
/obj/structure/window/reinforced{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"auU" = (
|
||||
/obj/structure/table/rack{
|
||||
@@ -25251,7 +25251,7 @@
|
||||
/area/rnd/xenobiology)
|
||||
"bdr" = (
|
||||
/obj/item/clothing/head/collectable/petehat,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"bdB" = (
|
||||
/obj/effect/floor_decal/industrial/warning/dust{
|
||||
@@ -25332,7 +25332,7 @@
|
||||
/area/rnd/storage)
|
||||
"bes" = (
|
||||
/obj/effect/decal/remains/xeno,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"bey" = (
|
||||
/obj/effect/floor_decal/industrial/warning/dust{
|
||||
@@ -25619,14 +25619,14 @@
|
||||
/area/maintenance/research_xenobiology)
|
||||
"bgc" = (
|
||||
/obj/item/weapon/trap,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"bgd" = (
|
||||
/obj/machinery/light/spot/weak{
|
||||
icon_state = "tube_empty";
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/rnd/test_area)
|
||||
"bge" = (
|
||||
/obj/effect/floor_decal/industrial/warning/dust{
|
||||
@@ -25766,7 +25766,7 @@
|
||||
/area/maintenance/research_xenobiology)
|
||||
"bgy" = (
|
||||
/obj/structure/barricade,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"bgF" = (
|
||||
/obj/effect/floor_decal/industrial/warning/dust,
|
||||
@@ -26004,7 +26004,7 @@
|
||||
/area/rnd/mixing)
|
||||
"bhZ" = (
|
||||
/mob/living/simple_animal/hostile/bear,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"bic" = (
|
||||
/obj/structure/window/phoronreinforced{
|
||||
@@ -26268,7 +26268,7 @@
|
||||
/obj/structure/sign/fire{
|
||||
pixel_x = 32
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"biZ" = (
|
||||
/obj/machinery/atmospherics/portables_connector{
|
||||
@@ -29983,7 +29983,7 @@
|
||||
/area/medical/virologytesting)
|
||||
"liS" = (
|
||||
/obj/effect/decal/cleanable/blood,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"ljj" = (
|
||||
/obj/machinery/artifact_scanpad,
|
||||
@@ -30422,7 +30422,7 @@
|
||||
/obj/structure/disposaloutlet{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"mGR" = (
|
||||
/obj/structure/table/standard,
|
||||
@@ -30993,7 +30993,7 @@
|
||||
/area/medical/patient_wing_picnic)
|
||||
"owN" = (
|
||||
/obj/effect/decal/cleanable/generic,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"ozh" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
@@ -31697,7 +31697,7 @@
|
||||
"rmW" = (
|
||||
/obj/structure/barricade,
|
||||
/obj/structure/grille,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"rwo" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -33144,7 +33144,7 @@
|
||||
/obj/structure/grille/broken,
|
||||
/obj/structure/girder/displaced,
|
||||
/obj/effect/decal/cleanable/generic,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"wfd" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
@@ -33631,12 +33631,12 @@
|
||||
"xuT" = (
|
||||
/obj/random/junk,
|
||||
/obj/effect/decal/cleanable/blood,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"xyq" = (
|
||||
/obj/effect/decal/cleanable/blood/drip,
|
||||
/obj/random/coin,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"xyA" = (
|
||||
/obj/structure/table/standard,
|
||||
@@ -33930,7 +33930,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/obj/random/junk,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"yiA" = (
|
||||
/obj/machinery/door/firedoor,
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
/turf/unsimulated/chasm_mask,
|
||||
/area/mine/unexplored)
|
||||
"aab" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"aac" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/syndicate_station/caverns)
|
||||
"aad" = (
|
||||
/turf/simulated/wall,
|
||||
@@ -246,7 +246,7 @@
|
||||
"aaz" = (
|
||||
/obj/structure/lattice,
|
||||
/obj/structure/lattice,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"aaA" = (
|
||||
/obj/structure/closet,
|
||||
@@ -295,7 +295,7 @@
|
||||
/obj/structure/lattice,
|
||||
/obj/structure/grille/broken,
|
||||
/obj/structure/lattice,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"aaI" = (
|
||||
/obj/structure/cable{
|
||||
@@ -1186,7 +1186,7 @@
|
||||
/obj/effect/landmark{
|
||||
name = "cavernspawn"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"acv" = (
|
||||
/obj/structure/grille,
|
||||
@@ -2554,7 +2554,7 @@
|
||||
/obj/effect/landmark{
|
||||
name = "carpspawn"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"aeU" = (
|
||||
/obj/structure/grille/broken,
|
||||
@@ -6965,7 +6965,7 @@
|
||||
/area/maintenance/security_starboard)
|
||||
"ans" = (
|
||||
/obj/machinery/light/spot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/bridge)
|
||||
"ant" = (
|
||||
/obj/machinery/portable_atmospherics/canister/nitrogen,
|
||||
@@ -11607,7 +11607,7 @@
|
||||
/obj/machinery/light{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/bridge)
|
||||
"avi" = (
|
||||
/turf/simulated/wall,
|
||||
@@ -11708,7 +11708,7 @@
|
||||
icon_state = "tube1";
|
||||
pixel_x = 0
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/bridge)
|
||||
"avp" = (
|
||||
/turf/simulated/open,
|
||||
@@ -12651,7 +12651,7 @@
|
||||
name = "Reactor Vent";
|
||||
p_open = 0
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/engineering/engine_room)
|
||||
"awX" = (
|
||||
/turf/simulated/floor/greengrid/nitrogen,
|
||||
@@ -17792,7 +17792,7 @@
|
||||
/obj/machinery/light{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/crew_quarters/captain)
|
||||
"aFo" = (
|
||||
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
|
||||
@@ -62477,13 +62477,13 @@
|
||||
/obj/structure/track{
|
||||
icon_state = "track4"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"cfe" = (
|
||||
/obj/structure/track{
|
||||
icon_state = "track12"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"cff" = (
|
||||
/obj/structure/track{
|
||||
@@ -64313,7 +64313,7 @@
|
||||
},
|
||||
/area/outpost/mining_main/eva)
|
||||
"cio" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/skipjack_station/cavern)
|
||||
"cip" = (
|
||||
/obj/machinery/door/airlock/maintenance{
|
||||
@@ -66166,9 +66166,6 @@
|
||||
},
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/rnd/research)
|
||||
"lpr" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/area/maintenance/research_port)
|
||||
"lpH" = (
|
||||
/obj/structure/curtain/open/shower,
|
||||
/obj/machinery/shower{
|
||||
@@ -66551,7 +66548,7 @@
|
||||
pixel_y = 25;
|
||||
req_access = list(13)
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"nug" = (
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
@@ -90261,7 +90258,7 @@ bfQ
|
||||
bcY
|
||||
hlp
|
||||
mBU
|
||||
lpr
|
||||
bcY
|
||||
bSB
|
||||
hlp
|
||||
feo
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
/turf/unsimulated/chasm_mask,
|
||||
/area/mine/unexplored)
|
||||
"ab" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"ac" = (
|
||||
/obj/random/junk,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"ad" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
@@ -386,7 +386,7 @@
|
||||
pixel_x = -32;
|
||||
pixel_y = -26
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"aS" = (
|
||||
/obj/structure/grille,
|
||||
@@ -7215,7 +7215,7 @@
|
||||
/obj/effect/landmark{
|
||||
name = "cavernspawn"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"oF" = (
|
||||
/turf/simulated/open,
|
||||
@@ -7329,7 +7329,7 @@
|
||||
/turf/simulated/wall,
|
||||
/area/medical/upperlevel)
|
||||
"qe" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/maintenance/interstitial_construction_site)
|
||||
"qg" = (
|
||||
/turf/simulated/wall,
|
||||
@@ -8167,7 +8167,7 @@
|
||||
"Ch" = (
|
||||
/obj/structure/grille,
|
||||
/obj/structure/barricade,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"CN" = (
|
||||
/obj/machinery/door/firedoor,
|
||||
@@ -9895,7 +9895,7 @@
|
||||
/area/medical/upperlevel)
|
||||
"OX" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/maintenance/interstitial_construction_site)
|
||||
"Pp" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
@@ -10532,7 +10532,7 @@
|
||||
icon_state = "bulb1";
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/maintenance/interstitial_construction_site)
|
||||
"Vv" = (
|
||||
/obj/effect/floor_decal/corner/lime/full,
|
||||
|
||||
@@ -196,7 +196,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/maintenance/foresolar)
|
||||
"aw" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"ax" = (
|
||||
/obj/structure/grille,
|
||||
@@ -240,7 +240,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/maintenance/foresolar)
|
||||
"az" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/shuttle/arrival/station)
|
||||
"aA" = (
|
||||
/obj/structure/grille,
|
||||
@@ -998,7 +998,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/hallway/secondary/entry/dock)
|
||||
"bU" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/shuttle/escape/station)
|
||||
"bV" = (
|
||||
/obj/structure/window/reinforced{
|
||||
@@ -2167,7 +2167,7 @@
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/tcommsat/computer)
|
||||
"ec" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/syndicate_station/arrivals_dock)
|
||||
"ed" = (
|
||||
/obj/effect/floor_decal/corner/blue/full,
|
||||
@@ -7487,7 +7487,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/hallway/secondary/entry/fore)
|
||||
"nx" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/shuttle/syndicate_elite/station)
|
||||
"ny" = (
|
||||
/obj/item/weapon/cell,
|
||||
@@ -7705,7 +7705,7 @@
|
||||
pixel_y = -26;
|
||||
req_one_access = list(13)
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"nN" = (
|
||||
/obj/machinery/door/firedoor,
|
||||
@@ -7878,7 +7878,7 @@
|
||||
/obj/machinery/light/small/emergency{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/tcommsat/entrance)
|
||||
"od" = (
|
||||
/obj/machinery/door/firedoor,
|
||||
@@ -9353,7 +9353,7 @@
|
||||
pixel_y = -26;
|
||||
req_one_access = list(13)
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"qY" = (
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -9686,7 +9686,7 @@
|
||||
/turf/simulated/shuttle/plating,
|
||||
/area/shuttle/escape_pod3/station)
|
||||
"rD" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/shuttle/administration/station)
|
||||
"rE" = (
|
||||
/obj/structure/cable/yellow{
|
||||
@@ -9946,7 +9946,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/bridge/levela)
|
||||
"sa" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/shuttle/specops/station)
|
||||
"sb" = (
|
||||
/obj/structure/table/standard,
|
||||
@@ -13987,7 +13987,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/bridge/levela)
|
||||
"zR" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/shuttle/transport1/station)
|
||||
"zS" = (
|
||||
/obj/machinery/washing_machine,
|
||||
@@ -16034,7 +16034,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/hallway/secondary/entry/aft)
|
||||
"DV" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/merchant_ship/docked)
|
||||
"DW" = (
|
||||
/turf/simulated/wall,
|
||||
@@ -16067,7 +16067,7 @@
|
||||
/turf/simulated/floor/tiled,
|
||||
/area/hallway/secondary/entry/aft)
|
||||
"Ea" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/supply/station)
|
||||
"Eb" = (
|
||||
/obj/structure/window/reinforced{
|
||||
@@ -16991,7 +16991,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/hallway/secondary/entry/aft)
|
||||
"FE" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/syndicate_station/surface)
|
||||
"FF" = (
|
||||
/obj/machinery/door/airlock/external{
|
||||
@@ -18320,7 +18320,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/maintenance/arrivals)
|
||||
"IJ" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/shuttle/legion/station)
|
||||
"IM" = (
|
||||
/obj/structure/closet/crate,
|
||||
@@ -18427,7 +18427,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/maintenance/portsolar)
|
||||
"Jc" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/skipjack_station/surface)
|
||||
"Jd" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden{
|
||||
@@ -21431,7 +21431,7 @@
|
||||
/obj/effect/landmark{
|
||||
name = "carpspawn"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"Xi" = (
|
||||
/obj/structure/cable{
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
/turf/simulated/open,
|
||||
/area/mine/explored)
|
||||
"ab" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"ac" = (
|
||||
/turf/simulated/mineral,
|
||||
@@ -1585,14 +1585,14 @@
|
||||
/area/security/checkpoint2)
|
||||
"dk" = (
|
||||
/obj/random/junk,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"dl" = (
|
||||
/turf/simulated/wall,
|
||||
/area/mine/explored)
|
||||
"dm" = (
|
||||
/obj/structure/boulder,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"dn" = (
|
||||
/obj/structure/ladder{
|
||||
@@ -1605,7 +1605,7 @@
|
||||
/obj/structure/boulder{
|
||||
icon_state = "boulder3"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"dp" = (
|
||||
/obj/structure/lattice/catwalk,
|
||||
@@ -2941,7 +2941,7 @@
|
||||
/area/tcommsat/lounge)
|
||||
"Kb" = (
|
||||
/obj/random/loot,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"WJ" = (
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
|
||||
@@ -14,9 +14,9 @@
|
||||
"1" = /turf/space,
|
||||
"2" = /turf/space,
|
||||
"3" = /turf/space,
|
||||
"4" = /turf/simulated/floor/asteroid/ash/rocky,
|
||||
"5" = /turf/simulated/floor/asteroid/ash/rocky,
|
||||
"6" = /turf/simulated/floor/asteroid/ash,
|
||||
"4" = /turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
"5" = /turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
"6" = /turf/unsimulated/floor/asteroid/ash,
|
||||
"7" = /turf/space,
|
||||
"8" = /turf/space,
|
||||
"9" = /turf/space
|
||||
|
||||
@@ -3,44 +3,44 @@
|
||||
/turf/unsimulated/chasm_mask,
|
||||
/area/mine/unexplored)
|
||||
"b" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"c" = (
|
||||
/turf/simulated/mineral,
|
||||
/area/mine/unexplored)
|
||||
"d" = (
|
||||
/obj/random/junk,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"f" = (
|
||||
/obj/random/coin,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"g" = (
|
||||
/obj/random/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"h" = (
|
||||
/obj/structure/closet/crate/secure/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"i" = (
|
||||
/obj/random/powercell,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"j" = (
|
||||
/obj/item/device/flashlight/lantern{
|
||||
on = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"k" = (
|
||||
/obj/item/clothing/head/helmet/space/void/mining,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"l" = (
|
||||
/turf/simulated/mineral/random/high_chance,
|
||||
@@ -48,27 +48,27 @@
|
||||
"m" = (
|
||||
/obj/effect/decal/cleanable/blood/splatter,
|
||||
/obj/effect/decal/remains,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"n" = (
|
||||
/obj/item/weapon/pickaxe/gold,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"o" = (
|
||||
/obj/random/medical,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"p" = (
|
||||
/obj/random/plushie,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"q" = (
|
||||
/obj/effect/decal/remains/mouse,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"r" = (
|
||||
/obj/random/spacecash,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
|
||||
(1,1,1) = {"
|
||||
|
||||
@@ -6,25 +6,25 @@
|
||||
/turf/simulated/mineral,
|
||||
/area/mine/unexplored)
|
||||
"c" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"d" = (
|
||||
/obj/structure/closet/crate/secure/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"f" = (
|
||||
/obj/effect/decal/remains/human,
|
||||
/obj/random/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"h" = (
|
||||
/obj/random/loot,
|
||||
/obj/effect/decal/remains/human,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"i" = (
|
||||
/turf/simulated/open/airless,
|
||||
|
||||
@@ -6,11 +6,11 @@
|
||||
/turf/simulated/mineral,
|
||||
/area/mine/unexplored)
|
||||
"c" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"d" = (
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/turf/simulated/wall/wood,
|
||||
@@ -24,7 +24,7 @@
|
||||
/area/mine/unexplored)
|
||||
"h" = (
|
||||
/obj/structure/simple_door/wood,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"i" = (
|
||||
/mob/living/simple_animal/hostile/carp/shark,
|
||||
@@ -32,16 +32,16 @@
|
||||
/area/mine/unexplored)
|
||||
"j" = (
|
||||
/obj/structure/closet/crate/secure/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"k" = (
|
||||
/obj/effect/decal/remains,
|
||||
/obj/random/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"l" = (
|
||||
/obj/effect/decal/remains,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"m" = (
|
||||
/turf/simulated/open/airless,
|
||||
|
||||
@@ -3,15 +3,15 @@
|
||||
/turf/unsimulated/chasm_mask,
|
||||
/area/mine/unexplored)
|
||||
"b" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"c" = (
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"d" = (
|
||||
/obj/structure/closet/crate/secure/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/turf/simulated/mineral,
|
||||
@@ -19,19 +19,19 @@
|
||||
"f" = (
|
||||
/obj/effect/decal/remains,
|
||||
/obj/random/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"g" = (
|
||||
/obj/structure/simple_door/wood,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"h" = (
|
||||
/mob/living/simple_animal/hostile/carp/shark,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"i" = (
|
||||
/obj/effect/decal/remains,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"j" = (
|
||||
/turf/simulated/open/airless,
|
||||
|
||||
@@ -9,32 +9,32 @@
|
||||
/turf/simulated/open/airless,
|
||||
/area/mine/unexplored)
|
||||
"d" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/obj/effect/decal/remains/human,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"f" = (
|
||||
/obj/structure/simple_door/wood,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"g" = (
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"h" = (
|
||||
/obj/effect/decal/remains/human,
|
||||
/obj/random/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"i" = (
|
||||
/mob/living/simple_animal/hostile/carp/shark,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"j" = (
|
||||
/obj/structure/closet/crate/secure/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
|
||||
(1,1,1) = {"
|
||||
|
||||
@@ -3,52 +3,52 @@
|
||||
/turf/unsimulated/chasm_mask,
|
||||
/area/mine/unexplored)
|
||||
"b" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"c" = (
|
||||
/turf/simulated/open/airless,
|
||||
/area/mine/unexplored)
|
||||
"d" = (
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/obj/effect/decal/remains/xeno,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"f" = (
|
||||
/obj/structure/closet/crate/secure/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"g" = (
|
||||
/obj/effect/decal/remains/human,
|
||||
/obj/random/voidsuit,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"h" = (
|
||||
/obj/random/projectile,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"i" = (
|
||||
/obj/item/device/gps/engineering,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"j" = (
|
||||
/turf/simulated/mineral,
|
||||
/area/mine/unexplored)
|
||||
"k" = (
|
||||
/obj/effect/decal/remains/human,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"l" = (
|
||||
/obj/effect/decal/remains/xeno,
|
||||
/obj/random/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"m" = (
|
||||
/obj/effect/decal/remains/human,
|
||||
/obj/random/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
|
||||
(1,1,1) = {"
|
||||
|
||||
@@ -7,24 +7,24 @@
|
||||
/area/mine/unexplored)
|
||||
"c" = (
|
||||
/obj/structure/closet/crate/secure/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"d" = (
|
||||
/mob/living/simple_animal/hostile/retaliate/cavern_dweller,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/turf/simulated/mineral/random/higher_chance,
|
||||
/area/mine/unexplored)
|
||||
"f" = (
|
||||
/obj/random/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"g" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"h" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/space)
|
||||
"i" = (
|
||||
/turf/simulated/open/airless,
|
||||
|
||||
@@ -40,18 +40,18 @@
|
||||
/turf/simulated/shuttle/floor,
|
||||
/area/mine/unexplored)
|
||||
"i" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"j" = (
|
||||
/mob/living/simple_animal/hostile/carp/shark,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"k" = (
|
||||
/turf/simulated/open/airless,
|
||||
/area/mine/unexplored)
|
||||
"l" = (
|
||||
/obj/structure/closet/crate/secure/loot,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
|
||||
(1,1,1) = {"
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
/turf/unsimulated/chasm_mask,
|
||||
/area/mine/unexplored)
|
||||
"b" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"d" = (
|
||||
/obj/effect/decal/remains/human,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/obj/item/stack/material/gold{
|
||||
@@ -21,7 +21,7 @@
|
||||
},
|
||||
/obj/item/weapon/archaeological_find,
|
||||
/mob/living/simple_animal/hostile/mimic/crate,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
|
||||
(1,1,1) = {"
|
||||
|
||||
@@ -7,22 +7,22 @@
|
||||
/area/mine/unexplored)
|
||||
"c" = (
|
||||
/obj/random/spacecash,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"d" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/obj/item/weapon/ore/phoron,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"f" = (
|
||||
/obj/item/weapon/ore,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"g" = (
|
||||
/mob/living/simple_animal/hostile/retaliate/minedrone,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"h" = (
|
||||
/obj/structure/table/rack,
|
||||
@@ -56,32 +56,32 @@
|
||||
/area/mine/unexplored)
|
||||
"n" = (
|
||||
/obj/random/junk,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"o" = (
|
||||
/obj/machinery/floodlight{
|
||||
on = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"p" = (
|
||||
/obj/item/weapon/ore/iron,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"q" = (
|
||||
/obj/structure/ore_box,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"r" = (
|
||||
/mob/living/silicon/robot/drone/mining,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"s" = (
|
||||
/turf/simulated/floor/airless/ceiling,
|
||||
/area/mine/unexplored)
|
||||
"t" = (
|
||||
/obj/item/weapon/ore/hydrogen,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"u" = (
|
||||
/obj/structure/table/standard,
|
||||
@@ -104,11 +104,11 @@
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/obj/item/weapon/ore/diamond,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"y" = (
|
||||
/obj/item/weapon/ore/uranium,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"z" = (
|
||||
/obj/structure/closet/crate/secure/loot,
|
||||
@@ -124,16 +124,16 @@
|
||||
/area/mine/unexplored)
|
||||
"C" = (
|
||||
/obj/item/weapon/ore/osmium,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"D" = (
|
||||
/obj/item/weapon/storage/bag/ore,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"E" = (
|
||||
/obj/structure/closet/crate,
|
||||
/obj/item/weapon/ore/strangerock,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
|
||||
(1,1,1) = {"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
/turf/simulated/floor/airless/ceiling,
|
||||
/area/mine/unexplored)
|
||||
"l" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"m" = (
|
||||
/turf/simulated/open/airless,
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
/turf/unsimulated/chasm_mask,
|
||||
/area/mine/unexplored)
|
||||
"ab" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/turf/simulated/shuttle/wall/dark{
|
||||
dir = 8;
|
||||
icon_state = "diagonalWall3"
|
||||
@@ -26,7 +26,7 @@
|
||||
/turf/simulated/floor/holofloor/tiled/dark,
|
||||
/area/crashed_ship)
|
||||
"ad" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/turf/simulated/shuttle/wall/dark{
|
||||
dir = 6;
|
||||
icon_state = "diagonalWall3"
|
||||
@@ -485,13 +485,13 @@
|
||||
/turf/simulated/floor/tiled/dark,
|
||||
/area/crashed_ship)
|
||||
"bt" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/turf/simulated/shuttle/wall/dark{
|
||||
icon_state = "diagonalWall3"
|
||||
},
|
||||
/area/crashed_ship)
|
||||
"bu" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/turf/simulated/shuttle/wall/dark{
|
||||
dir = 4;
|
||||
icon_state = "diagonalWall3"
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
/turf/unsimulated/chasm_mask,
|
||||
/area/mine/unexplored)
|
||||
"b" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"c" = (
|
||||
/turf/simulated/mineral/random,
|
||||
@@ -32,7 +32,7 @@
|
||||
/area/mine/unexplored)
|
||||
"j" = (
|
||||
/obj/effect/decal/cleanable/generic,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"k" = (
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
|
||||
@@ -155,7 +155,7 @@
|
||||
/turf/simulated/floor/holofloor/tiled/dark,
|
||||
/area/turret_protected/corp_vault)
|
||||
"x" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"y" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden{
|
||||
|
||||
@@ -3,30 +3,30 @@
|
||||
/turf/unsimulated/chasm_mask,
|
||||
/area/mine/unexplored)
|
||||
"b" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"c" = (
|
||||
/obj/structure/greatworm,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"e" = (
|
||||
/mob/living/simple_animal/hostile/greatworm,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"g" = (
|
||||
/mob/living/simple_animal/hostile/greatwormking,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"h" = (
|
||||
/turf/simulated/mineral,
|
||||
/area/mine/unexplored)
|
||||
"i" = (
|
||||
/obj/effect/decal/remains/human,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"j" = (
|
||||
/obj/item/weapon/archaeological_find,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
|
||||
(1,1,1) = {"
|
||||
|
||||
@@ -15913,7 +15913,7 @@
|
||||
/obj/machinery/light/small{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/merchant_station)
|
||||
"aSi" = (
|
||||
/turf/unsimulated/floor{
|
||||
@@ -16287,7 +16287,7 @@
|
||||
/area/centcom/holding)
|
||||
"aSY" = (
|
||||
/obj/machinery/light/small,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/merchant_station)
|
||||
"aSZ" = (
|
||||
/obj/structure/bed/chair/comfy/brown,
|
||||
@@ -16511,7 +16511,7 @@
|
||||
},
|
||||
/area/centcom/control)
|
||||
"aTw" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"aTx" = (
|
||||
/turf/space,
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/disposalpipe/trunk,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ae" = (
|
||||
/obj/structure/lattice,
|
||||
@@ -21,7 +21,7 @@
|
||||
/area/template_noop)
|
||||
"af" = (
|
||||
/obj/structure/disposalpipe/segment,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ag" = (
|
||||
/obj/structure/window/reinforced{
|
||||
@@ -1283,7 +1283,7 @@
|
||||
/obj/structure/disposaloutlet{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"cM" = (
|
||||
/obj/structure/window/reinforced/tinted{
|
||||
@@ -1511,7 +1511,7 @@
|
||||
dir = 8;
|
||||
icon_state = "pipe-c"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"dl" = (
|
||||
/obj/item/weapon/material/shard,
|
||||
@@ -2305,7 +2305,7 @@
|
||||
/obj/structure/disposalpipe/segment{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/outpost/research/disposal)
|
||||
"eG" = (
|
||||
/obj/structure/disposaloutlet{
|
||||
@@ -2314,7 +2314,7 @@
|
||||
/obj/structure/disposalpipe/trunk{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/outpost/research/disposal)
|
||||
"eH" = (
|
||||
/obj/structure/grille,
|
||||
@@ -2478,14 +2478,14 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/outpost/research/disposal)
|
||||
"eX" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/outpost/research/disposal)
|
||||
"eY" = (
|
||||
/obj/machinery/mass_driver{
|
||||
dir = 4;
|
||||
id = "research"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/outpost/research/disposal)
|
||||
"eZ" = (
|
||||
/obj/item/stack/rods,
|
||||
@@ -4733,13 +4733,13 @@
|
||||
/turf/simulated/floor/airless,
|
||||
/area/outpost/abandoned)
|
||||
"ja" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"jb" = (
|
||||
/obj/machinery/light/small{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"jc" = (
|
||||
/turf/simulated/wall,
|
||||
@@ -5363,7 +5363,7 @@
|
||||
/area/outpost/abandoned)
|
||||
"kq" = (
|
||||
/obj/structure/ore_box,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"kr" = (
|
||||
/turf/simulated/wall,
|
||||
@@ -5615,7 +5615,7 @@
|
||||
/obj/machinery/light/small{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"kY" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
@@ -5874,7 +5874,7 @@
|
||||
/obj/machinery/light_construct/small{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"lC" = (
|
||||
/obj/machinery/alarm{
|
||||
@@ -6322,11 +6322,11 @@
|
||||
},
|
||||
/area/outpost/abandoned)
|
||||
"my" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"mz" = (
|
||||
/obj/structure/closet,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"mA" = (
|
||||
/obj/structure/grille,
|
||||
@@ -6579,23 +6579,23 @@
|
||||
/area/outpost/abandoned)
|
||||
"mV" = (
|
||||
/obj/structure/table/steel,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"mW" = (
|
||||
/obj/structure/bed/chair{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"mX" = (
|
||||
/obj/structure/bed/chair{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"mY" = (
|
||||
/obj/structure/table/rack,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"mZ" = (
|
||||
/obj/structure/lattice,
|
||||
@@ -6672,14 +6672,14 @@
|
||||
pixel_y = 0;
|
||||
req_access = list(65)
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"nh" = (
|
||||
/obj/machinery/conveyor_switch{
|
||||
id = "anosample";
|
||||
req_access = list(65)
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"ni" = (
|
||||
/obj/structure/cable/blue{
|
||||
@@ -7018,11 +7018,11 @@
|
||||
/area/mine/unexplored)
|
||||
"nS" = (
|
||||
/obj/structure/closet/crate,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"nT" = (
|
||||
/obj/machinery/floodlight,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"nU" = (
|
||||
/obj/machinery/door/airlock/external{
|
||||
@@ -7264,7 +7264,7 @@
|
||||
pixel_x = 0;
|
||||
pixel_y = 32
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"oq" = (
|
||||
/obj/machinery/access_button{
|
||||
@@ -7359,7 +7359,7 @@
|
||||
icon_state = "4-8";
|
||||
pixel_x = 0
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"ow" = (
|
||||
/obj/structure/window/reinforced,
|
||||
@@ -7495,7 +7495,7 @@
|
||||
d2 = 2;
|
||||
icon_state = "1-2"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"oN" = (
|
||||
/obj/structure/window/reinforced{
|
||||
@@ -7522,12 +7522,12 @@
|
||||
"oP" = (
|
||||
/obj/structure/table/rack,
|
||||
/obj/item/weapon/storage/toolbox/mechanical,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"oQ" = (
|
||||
/obj/structure/table/rack,
|
||||
/obj/item/weapon/pickaxe,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"oR" = (
|
||||
/obj/machinery/light_construct/small,
|
||||
@@ -7535,7 +7535,7 @@
|
||||
/obj/item/stack/material/steel{
|
||||
amount = 10
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"oS" = (
|
||||
/turf/simulated/floor/tiled/airless{
|
||||
@@ -7558,7 +7558,7 @@
|
||||
d2 = 4;
|
||||
icon_state = "1-4"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"oU" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -7576,14 +7576,14 @@
|
||||
d2 = 8;
|
||||
icon_state = "2-8"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"oV" = (
|
||||
/obj/machinery/light{
|
||||
icon_state = "tube1";
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"oW" = (
|
||||
/turf/simulated/wall,
|
||||
@@ -7735,7 +7735,7 @@
|
||||
d2 = 4;
|
||||
icon_state = "2-4"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"pj" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
@@ -7750,7 +7750,7 @@
|
||||
icon_state = "4-8";
|
||||
pixel_x = 0
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"pk" = (
|
||||
/obj/machinery/access_button{
|
||||
@@ -8004,7 +8004,7 @@
|
||||
},
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"px" = (
|
||||
/obj/machinery/conveyor_switch{
|
||||
@@ -8083,7 +8083,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 5
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"pD" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -8101,7 +8101,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"pE" = (
|
||||
/obj/structure/disposalpipe/junction/yjunction,
|
||||
@@ -8116,13 +8116,13 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 10
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"pF" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"pG" = (
|
||||
/obj/structure/grille,
|
||||
@@ -8246,7 +8246,7 @@
|
||||
/obj/machinery/light/small{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"pU" = (
|
||||
/obj/structure/sign/securearea{
|
||||
@@ -8319,7 +8319,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 10
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"pZ" = (
|
||||
/turf/simulated/floor/airless,
|
||||
@@ -8340,7 +8340,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 6
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"qb" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -8358,13 +8358,13 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 9
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"qc" = (
|
||||
/obj/machinery/light_construct/small{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"qd" = (
|
||||
/obj/structure/grille,
|
||||
@@ -8526,7 +8526,7 @@
|
||||
/area/outpost/engineering/meeting)
|
||||
"qp" = (
|
||||
/obj/machinery/light/small,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"qq" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
@@ -8751,7 +8751,7 @@
|
||||
dir = 1
|
||||
},
|
||||
/obj/structure/disposalpipe/trunk,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"qK" = (
|
||||
/obj/structure/table/rack,
|
||||
@@ -8996,7 +8996,7 @@
|
||||
/area/outpost/engineering/hallway)
|
||||
"rk" = (
|
||||
/obj/machinery/light_construct/small,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"rl" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
@@ -9918,7 +9918,7 @@
|
||||
},
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"sS" = (
|
||||
/obj/machinery/light/small{
|
||||
@@ -10570,7 +10570,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"tU" = (
|
||||
/obj/structure/cable{
|
||||
@@ -10590,7 +10590,7 @@
|
||||
d2 = 4;
|
||||
icon_state = "1-4"
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"tV" = (
|
||||
/obj/structure/cable{
|
||||
@@ -10614,7 +10614,7 @@
|
||||
pixel_y = -25;
|
||||
req_access = list(10)
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"tW" = (
|
||||
/obj/structure/cable{
|
||||
@@ -11619,7 +11619,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 9
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"vw" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
|
||||
@@ -12283,7 +12283,7 @@
|
||||
/turf/simulated/floor/plating,
|
||||
/area/outpost/mining_main/dorms)
|
||||
"wO" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/outpost/mining_west)
|
||||
"wP" = (
|
||||
/obj/machinery/door/airlock{
|
||||
@@ -15490,7 +15490,7 @@
|
||||
},
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"Cq" = (
|
||||
/obj/machinery/sleeper{
|
||||
@@ -15688,7 +15688,7 @@
|
||||
},
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"CK" = (
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
@@ -15869,7 +15869,7 @@
|
||||
/obj/machinery/light{
|
||||
dir = 1
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"CY" = (
|
||||
/obj/structure/grille,
|
||||
@@ -16272,7 +16272,7 @@
|
||||
/obj/machinery/light/small{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"DI" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -16291,7 +16291,7 @@
|
||||
},
|
||||
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
|
||||
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"DJ" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -16309,7 +16309,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
dir = 10
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"DK" = (
|
||||
/obj/structure/lattice,
|
||||
@@ -16449,7 +16449,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
dir = 5
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"DZ" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -16467,7 +16467,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
|
||||
dir = 4
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"Ea" = (
|
||||
/obj/structure/disposalpipe/segment{
|
||||
@@ -16726,7 +16726,7 @@
|
||||
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
|
||||
dir = 9
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/explored)
|
||||
"Es" = (
|
||||
/turf/template_noop,
|
||||
|
||||
@@ -9,22 +9,22 @@
|
||||
/turf/simulated/mineral/random/higher_chance,
|
||||
/area/mine/unexplored)
|
||||
"ad" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"ae" = (
|
||||
/obj/effect/blob/core,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"af" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ag" = (
|
||||
/obj/effect/floor_decal/asteroid,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ah" = (
|
||||
/obj/effect/blob/core,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ai" = (
|
||||
/turf/simulated/wall/r_wall,
|
||||
@@ -46,17 +46,17 @@
|
||||
/turf/simulated/floor,
|
||||
/area/derelict/ship)
|
||||
"al" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/derelict/ship)
|
||||
"am" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"ap" = (
|
||||
/turf/simulated/floor,
|
||||
/area/derelict/ship)
|
||||
"aq" = (
|
||||
/obj/effect/floor_decal/asteroid,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"ar" = (
|
||||
/obj/structure/grille,
|
||||
@@ -148,7 +148,7 @@
|
||||
/area/derelict/ship)
|
||||
"aB" = (
|
||||
/obj/structure/grille,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/derelict/ship)
|
||||
"aC" = (
|
||||
/turf/simulated/floor,
|
||||
@@ -208,7 +208,7 @@
|
||||
/area/template_noop)
|
||||
"aI" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"aJ" = (
|
||||
/obj/structure/lattice,
|
||||
@@ -216,7 +216,7 @@
|
||||
/area/template_noop)
|
||||
"aK" = (
|
||||
/mob/living/simple_animal/hostile/retaliate/cavern_dweller,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"aL" = (
|
||||
/obj/structure/shuttle/engine/platform,
|
||||
@@ -235,7 +235,7 @@
|
||||
/area/derelict/ship)
|
||||
"aP" = (
|
||||
/obj/effect/floor_decal/asteroid,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/derelict/ship)
|
||||
"aQ" = (
|
||||
/obj/structure/lattice,
|
||||
@@ -243,7 +243,7 @@
|
||||
/area/derelict/ship)
|
||||
"aR" = (
|
||||
/obj/random/junk,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/derelict/ship)
|
||||
"aS" = (
|
||||
/obj/structure/shuttle/engine/router,
|
||||
@@ -255,7 +255,7 @@
|
||||
/area/derelict/ship)
|
||||
"aU" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"aV" = (
|
||||
/obj/structure/grille,
|
||||
|
||||
@@ -194,7 +194,7 @@
|
||||
/area/derelict/hallway/northwest)
|
||||
"aI" = (
|
||||
/obj/machinery/artifact,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"aJ" = (
|
||||
/obj/item/weapon/gun/energy/stunrevolver,
|
||||
@@ -473,7 +473,7 @@
|
||||
/turf/template_noop,
|
||||
/area/template_noop)
|
||||
"bG" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"bH" = (
|
||||
/obj/item/tape/engineering{
|
||||
|
||||
@@ -46,10 +46,10 @@
|
||||
/obj/structure/table/rack,
|
||||
/obj/item/weapon/storage/box/excavation,
|
||||
/obj/item/hoist_kit,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"ak" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"al" = (
|
||||
/obj/structure/lattice,
|
||||
@@ -68,7 +68,7 @@
|
||||
/obj/random/prebuilt_ka,
|
||||
/obj/structure/table/rack,
|
||||
/obj/item/mecha_parts/mecha_equipment/teleporter,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"ap" = (
|
||||
/obj/machinery/crystal,
|
||||
@@ -76,15 +76,15 @@
|
||||
/area/derelict/ship)
|
||||
"aq" = (
|
||||
/obj/machinery/giga_drill,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"ar" = (
|
||||
/obj/mecha/working/ripley/mining,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"as" = (
|
||||
/obj/structure/closet/excavation,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"at" = (
|
||||
/obj/structure/lattice/catwalk,
|
||||
@@ -96,7 +96,7 @@
|
||||
/area/derelict/ship)
|
||||
"aw" = (
|
||||
/obj/structure/ore_box,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"ax" = (
|
||||
/turf/simulated/floor/airless{
|
||||
@@ -115,7 +115,7 @@
|
||||
/area/derelict/ship)
|
||||
"aB" = (
|
||||
/obj/structure/boulder,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"aC" = (
|
||||
/obj/machinery/power/rtg/advanced,
|
||||
@@ -215,7 +215,7 @@
|
||||
/area/derelict/ship)
|
||||
"aZ" = (
|
||||
/obj/item/weapon/rig/eva/equipped,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"ba" = (
|
||||
/obj/effect/decal/remains,
|
||||
@@ -227,7 +227,7 @@
|
||||
/area/derelict/ship)
|
||||
"bd" = (
|
||||
/obj/machinery/floodlight,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"be" = (
|
||||
/obj/machinery/door/airlock/vault/bolted{
|
||||
@@ -265,11 +265,11 @@
|
||||
/area/derelict/ship)
|
||||
"bq" = (
|
||||
/obj/item/weapon/ore/coal,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"br" = (
|
||||
/obj/item/weapon/pickaxe/diamond,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"bs" = (
|
||||
/obj/item/weapon/ore/diamond,
|
||||
@@ -279,14 +279,14 @@
|
||||
/area/derelict/ship)
|
||||
"bt" = (
|
||||
/obj/effect/decal/mecha_wreckage/hoverpod,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"bu" = (
|
||||
/turf/simulated/wall,
|
||||
/area/derelict/ship)
|
||||
"bv" = (
|
||||
/obj/vehicle/bike,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"bw" = (
|
||||
/obj/machinery/door/airlock/external,
|
||||
@@ -353,7 +353,7 @@
|
||||
/area/derelict/ship)
|
||||
"bK" = (
|
||||
/obj/structure/girder,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"bM" = (
|
||||
/obj/machinery/door/airlock/glass,
|
||||
@@ -532,7 +532,7 @@
|
||||
/area/derelict/ship)
|
||||
"cu" = (
|
||||
/obj/item/weapon/archaeological_find,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"cv" = (
|
||||
/obj/structure/table/standard,
|
||||
|
||||
@@ -773,7 +773,7 @@
|
||||
/turf/simulated/floor/wood,
|
||||
/area/derelict/ship)
|
||||
"cj" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"ck" = (
|
||||
/turf/simulated/floor/greengrid,
|
||||
@@ -813,7 +813,7 @@
|
||||
/turf/simulated/floor/wood,
|
||||
/area/derelict/ship)
|
||||
"cq" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"cs" = (
|
||||
/obj/item/clothing/under/tajaran,
|
||||
@@ -1487,7 +1487,7 @@
|
||||
/area/derelict/ship)
|
||||
"eQ" = (
|
||||
/obj/structure/shuttle/engine/propulsion,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"eR" = (
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
@@ -1608,7 +1608,7 @@
|
||||
/turf/simulated/floor/tiled/white,
|
||||
/area/derelict/ship)
|
||||
"fj" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/shuttle/research/away)
|
||||
"fk" = (
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
|
||||
@@ -3,27 +3,27 @@
|
||||
/turf/simulated/mineral/random,
|
||||
/area/template_noop)
|
||||
"ac" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"ad" = (
|
||||
/turf/simulated/mineral/random/higher_chance,
|
||||
/area/template_noop)
|
||||
"ae" = (
|
||||
/obj/structure/alien/weeds,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"af" = (
|
||||
/obj/structure/alien/weeds,
|
||||
/mob/living/simple_animal/hostile/carp/shark,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"ag" = (
|
||||
/obj/structure/alien/weeds,
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"ah" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/turf/simulated/wall/cult,
|
||||
/area/template_noop)
|
||||
"ai" = (
|
||||
@@ -80,7 +80,7 @@
|
||||
/area/template_noop)
|
||||
"au" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"av" = (
|
||||
/turf/simulated/floor,
|
||||
@@ -109,14 +109,14 @@
|
||||
/area/derelict/ship)
|
||||
"az" = (
|
||||
/obj/structure/lattice,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"aA" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/derelict/ship)
|
||||
"aB" = (
|
||||
/obj/structure/boulder,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"aC" = (
|
||||
/obj/structure/inflatable,
|
||||
@@ -656,7 +656,7 @@
|
||||
/area/derelict/ship)
|
||||
"cn" = (
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"co" = (
|
||||
/obj/machinery/mech_recharger,
|
||||
@@ -946,7 +946,7 @@
|
||||
/area/derelict/ship)
|
||||
"dp" = (
|
||||
/obj/item/clothing/head/helmet/space/void/sol,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"dq" = (
|
||||
/obj/structure/window/reinforced,
|
||||
@@ -3202,7 +3202,7 @@
|
||||
/area/derelict/ship)
|
||||
"ki" = (
|
||||
/obj/item/clothing/suit/space/void/sol,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/template_noop)
|
||||
"kj" = (
|
||||
/obj/structure/table/reinforced/steel,
|
||||
|
||||
@@ -6,14 +6,14 @@
|
||||
/turf/template_noop,
|
||||
/area/shuttle/research/away)
|
||||
"ac" = (
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ad" = (
|
||||
/turf/simulated/mineral,
|
||||
/area/mine/unexplored)
|
||||
"ae" = (
|
||||
/obj/effect/floor_decal/asteroid,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ag" = (
|
||||
/turf/simulated/shuttle/wall/dark,
|
||||
@@ -83,7 +83,7 @@
|
||||
/obj/effect/floor_decal/industrial/warning{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"an" = (
|
||||
/obj/machinery/door/blast/shutters{
|
||||
@@ -107,7 +107,7 @@
|
||||
/area/derelict)
|
||||
"ao" = (
|
||||
/obj/machinery/light,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ap" = (
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
@@ -119,7 +119,7 @@
|
||||
},
|
||||
/area/derelict)
|
||||
"ar" = (
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"as" = (
|
||||
/obj/effect/floor_decal/industrial/warning,
|
||||
@@ -136,7 +136,7 @@
|
||||
/area/template_noop)
|
||||
"av" = (
|
||||
/obj/machinery/light,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"aw" = (
|
||||
/obj/machinery/door/blast/regular,
|
||||
@@ -305,7 +305,7 @@
|
||||
/obj/machinery/light{
|
||||
dir = 8
|
||||
},
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"aR" = (
|
||||
/obj/machinery/light{
|
||||
@@ -927,7 +927,7 @@
|
||||
/area/derelict)
|
||||
"cD" = (
|
||||
/obj/effect/floor_decal/asteroid,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"cE" = (
|
||||
/obj/structure/toilet,
|
||||
@@ -1831,7 +1831,7 @@
|
||||
/area/derelict)
|
||||
"eX" = (
|
||||
/obj/structure/barricade,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"eY" = (
|
||||
/obj/structure/barricade,
|
||||
@@ -1869,7 +1869,7 @@
|
||||
/area/mine/unexplored)
|
||||
"fe" = (
|
||||
/obj/machinery/floodlight,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ff" = (
|
||||
/turf/simulated/mineral/random/higher_chance,
|
||||
@@ -1883,15 +1883,15 @@
|
||||
"fh" = (
|
||||
/obj/structure/table/rack,
|
||||
/obj/item/weapon/pickaxe/diamonddrill,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"fi" = (
|
||||
/obj/structure/ore_box,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"fj" = (
|
||||
/obj/mecha/working/ripley/mining,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"fk" = (
|
||||
/obj/effect/floor_decal/asteroid,
|
||||
@@ -1901,7 +1901,7 @@
|
||||
/area/mine/unexplored)
|
||||
"fl" = (
|
||||
/obj/item/weapon/storage/bag/ore,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"fm" = (
|
||||
/obj/structure/table/rack,
|
||||
@@ -1944,19 +1944,19 @@
|
||||
/area/mine/unexplored)
|
||||
"fs" = (
|
||||
/obj/structure/alien/weeds,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"ft" = (
|
||||
/obj/structure/alien/weeds,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fu" = (
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fv" = (
|
||||
/obj/structure/alien/resin/wall,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fw" = (
|
||||
/obj/structure/alien/weeds,
|
||||
@@ -1964,12 +1964,12 @@
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fx" = (
|
||||
/obj/structure/alien/weeds,
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fy" = (
|
||||
/mob/living/simple_animal/hostile/carp,
|
||||
@@ -1978,20 +1978,20 @@
|
||||
"fz" = (
|
||||
/obj/structure/alien/weeds,
|
||||
/obj/structure/alien/resin/membrane,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fA" = (
|
||||
/obj/structure/alien/resin/membrane,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fB" = (
|
||||
/obj/structure/alien/resin/membrane,
|
||||
/obj/structure/alien/resin/membrane,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fC" = (
|
||||
/mob/living/simple_animal/hostile/carp/shark,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fD" = (
|
||||
/obj/machinery/porta_turret/sniper,
|
||||
@@ -2091,7 +2091,7 @@
|
||||
"fO" = (
|
||||
/obj/structure/alien/weeds,
|
||||
/mob/living/simple_animal/hostile/carp/shark,
|
||||
/turf/simulated/floor/asteroid/ash/rocky,
|
||||
/turf/unsimulated/floor/asteroid/ash/rocky,
|
||||
/area/mine/unexplored)
|
||||
"fP" = (
|
||||
/obj/machinery/light/small{
|
||||
@@ -2472,21 +2472,21 @@
|
||||
/area/derelict)
|
||||
"gN" = (
|
||||
/obj/machinery/mining/brace,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"gO" = (
|
||||
/obj/machinery/mining/drill,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"gP" = (
|
||||
/obj/effect/floor_decal/asteroid,
|
||||
/obj/machinery/mining/brace,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"gQ" = (
|
||||
/obj/effect/floor_decal/asteroid,
|
||||
/obj/machinery/mining/drill,
|
||||
/turf/simulated/floor/asteroid/ash,
|
||||
/turf/unsimulated/floor/asteroid/ash,
|
||||
/area/mine/unexplored)
|
||||
"gR" = (
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
|
||||
Reference in New Issue
Block a user