From dcbd03eacffc5ca886cc5418495ea0ca4577d93e Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Tue, 17 Oct 2023 18:27:16 -0400 Subject: [PATCH 01/21] initial --- .../colonialmarines/colonialmarines.dm | 20 --- .../structure_spawners/setup_distress.dm | 43 +++++- code/modules/cm_aliens/structures/tunnel.dm | 3 +- code/modules/cm_aliens/weeds.dm | 8 +- .../mutators/strains/drone/gardener.dm | 7 +- maps/map_files/BigRed/BigRed.dmm | 42 ++---- .../BigRed/sprinkles/25.chapel_cult.dmm | 7 +- .../standalone/crashlanding-offices.dmm | 2 +- maps/map_files/CORSAT/Corsat.dmm | 76 ++++------ .../map_files/CORSAT/standalone/sigma_ice.dmm | 4 +- maps/map_files/DesertDam/Desert_Dam.dmm | 23 ++- .../DesertDam/purpleriver/newbridge.dmm | 5 - .../FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 16 +-- .../map_files/Ice_Colony_v2/Ice_Colony_v2.dmm | 136 +++--------------- .../Ice_Colony_v3/Shivas_Snowball.dmm | 20 +-- maps/map_files/Kutjevo/Kutjevo.dmm | 22 +-- .../LV522_Chances_Claim.dmm | 106 +++----------- maps/map_files/LV624/LV624.dmm | 61 +++----- maps/map_files/LV624/standalone/clfship.dmm | 4 +- .../LV624/standalone/sandtemple-jungle.dmm | 4 +- .../LV624/standalone/sandtemple-se.dmm | 2 +- maps/map_files/New_Varadero/New_Varadero.dmm | 20 +-- .../Sorokyne_Strata/Sorokyne_Strata.dmm | 77 +++------- 23 files changed, 208 insertions(+), 500 deletions(-) diff --git a/code/game/gamemodes/colonialmarines/colonialmarines.dm b/code/game/gamemodes/colonialmarines/colonialmarines.dm index 258a1a962713..635f5efbdff5 100644 --- a/code/game/gamemodes/colonialmarines/colonialmarines.dm +++ b/code/game/gamemodes/colonialmarines/colonialmarines.dm @@ -57,18 +57,6 @@ new /obj/structure/blocker/fog(loc, time_to_dispel) qdel(src) -/obj/effect/landmark/lv624/xeno_tunnel - name = "xeno tunnel" - icon_state = "xeno_tunnel" - -/obj/effect/landmark/lv624/xeno_tunnel/Initialize(mapload, ...) - . = ..() - GLOB.xeno_tunnels += src - -/obj/effect/landmark/lv624/xeno_tunnel/Destroy() - GLOB.xeno_tunnels -= src - return ..() - //////////////////////////////////////////////////////////////////////////////////////// /* Pre-setup */ @@ -94,14 +82,6 @@ flags_round_type |= MODE_FOG_ACTIVATED ..() - - var/obj/structure/tunnel/T - var/i = 0 - var/turf/t - while(GLOB.xeno_tunnels.len && i++ < 3) - t = get_turf(pick_n_take(GLOB.xeno_tunnels)) - T = new(t) - T.id = "hole[i]" return TRUE //////////////////////////////////////////////////////////////////////////////////////// diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index c31fb47c1d35..289a9855ca94 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -9,23 +9,58 @@ path_to_spawn = /turf/closed/wall/resin is_turf = TRUE +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall/thick + name = "Distress Xeno thick wall spawner" + path_to_spawn = /turf/closed/wall/resin/thick + /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane name = "Distress Xeno membrane spawner" icon_state = "membrane" path_to_spawn = /turf/closed/wall/resin/membrane is_turf = TRUE +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane/thick + name = "Distress Xeno thick membrane spawner" + path_to_spawn = /turf/closed/wall/resin/membrane/thick + /obj/effect/landmark/structure_spawner/setup/distress/xeno_door name = "Distress Xeno door spawner" icon_state = "door" path_to_spawn = /obj/structure/mineral_door/resin -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest - name = "Distress Xeno nest spawner" - icon_state = "nest" - path_to_spawn = /obj/structure/bed/nest +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door/thick + name = "Distress Xeno thick door spawner" + path_to_spawn = /obj/structure/mineral_door/resin/thick /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node name = "Distress Xeno weed node spawner" icon_state = "weednode" path_to_spawn = /obj/effect/alien/weeds/node + ///The minimum is_weedable required for the weeds to be planted normally + var/weed_strength_required = FULLY_WEEDABLE + +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/Initialize(mapload, ...) + . = ..() + var/turf/node_tile = loc + if(node_tile.is_weedable() < weed_strength_required) + stack_trace("[src] at [x],[y],[z] is on a turf where weeds cannot normally grow.") + +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/hardy + name = "Distress Xeno hardy node spawner" + path_to_spawn = /obj/effect/alien/weeds/node/hardy + weed_strength_required = SEMI_WEEDABLE + +/obj/effect/landmark/structure_spawner/setup/distress/tunnel + name = "Distress Xeno tunnel spawner" + icon_state = "xeno_tunnel" + path_to_spawn = /obj/structure/tunnel + +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/Initialize(mapload, ...) + . = ..() + var/turf/tunnel_tile = loc + if(!tunnel_tile.can_dig_xeno_tunnel) + stack_trace("[src] at [x],[y],[z] is on a turf where tunnels cannot normally be built.") + +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance + name = "Distress Xeno maintenance tunnel spawner" + path_to_spawn = /obj/structure/tunnel/maint_tunnel diff --git a/code/modules/cm_aliens/structures/tunnel.dm b/code/modules/cm_aliens/structures/tunnel.dm index f716d69b5b7e..24dc230d28cb 100644 --- a/code/modules/cm_aliens/structures/tunnel.dm +++ b/code/modules/cm_aliens/structures/tunnel.dm @@ -10,6 +10,7 @@ icon = 'icons/mob/xenos/effects.dmi' icon_state = "hole" + health = 140 density = FALSE opacity = FALSE anchored = TRUE @@ -23,8 +24,6 @@ var/hivenumber = XENO_HIVE_NORMAL var/datum/hive_status/hive - health = 140 - var/id = null //For mapping /obj/structure/tunnel/Initialize(mapload, h_number) . = ..() diff --git a/code/modules/cm_aliens/weeds.dm b/code/modules/cm_aliens/weeds.dm index eb4fc3cd6f09..9000d43d8bb0 100644 --- a/code/modules/cm_aliens/weeds.dm +++ b/code/modules/cm_aliens/weeds.dm @@ -196,7 +196,7 @@ var/parent_type = /obj/effect/alien/weeds/node if(weed_strength >= WEED_LEVEL_HIVE) parent_type = /obj/effect/alien/weeds/node/pylon - + var/obj/effect/alien/weeds/node/found = locate(parent_type) in orange(node_range, get_turf(src)) if(found) found.add_child(src) @@ -586,6 +586,12 @@ /obj/effect/alien/weeds/node/forsaken hivenumber = XENO_HIVE_FORSAKEN +/obj/effect/alien/weeds/node/hardy + name = "hardy resin node" + spread_on_semiweedable = TRUE + fruit_growth_multiplier = 0.8 + weed_strength = WEED_LEVEL_HARDY + /obj/effect/alien/weeds/node/pylon health = WEED_HEALTH_HIVE weed_strength = WEED_LEVEL_HIVE diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/gardener.dm b/code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/gardener.dm index 303e1c94692d..a7e6001623b6 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/gardener.dm +++ b/code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/gardener.dm @@ -348,12 +348,7 @@ xeno_cooldown = 2 MINUTES action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - node_type = /obj/effect/alien/weeds/node/gardener - -/obj/effect/alien/weeds/node/gardener - spread_on_semiweedable = TRUE - fruit_growth_multiplier = 0.8 - weed_strength = WEED_LEVEL_HARDY + node_type = /obj/effect/alien/weeds/node/hardy /datum/action/xeno_action/verb/verb_plant_gardening_weeds() set category = "Alien" diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index b29802bd6548..6c33ddac90ef 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -23992,7 +23992,7 @@ }, /area/bigredv2/caves_sw) "buB" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" @@ -27187,7 +27187,6 @@ }, /area/bigredv2/outside/marshal_office) "bPy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/mars_cave{ icon_state = "mars_cave_17" @@ -27488,9 +27487,7 @@ /area/bigredv2/outside/engineering) "cvi" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel{ - id = "hole2" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor{ icon_state = "dark" }, @@ -28087,7 +28084,6 @@ /area/bigredv2/caves/mining) "dKR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/mars_cave{ icon_state = "mars_cave_5" }, @@ -28819,7 +28815,7 @@ }, /area/bigredv2/caves/eta/living) "fjF" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/mars{ icon_state = "mars_dirt_6" }, @@ -31415,7 +31411,6 @@ /area/bigredv2/caves) "kBB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/mars_cave{ icon_state = "mars_cave_23" }, @@ -31622,9 +31617,7 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "laj" = ( -/obj/structure/tunnel{ - id = "hole5" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -32644,7 +32637,6 @@ /area/bigredv2/caves/mining) "nCp" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -33078,7 +33070,7 @@ /obj/structure/toilet{ pixel_y = 8 }, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -33531,7 +33523,6 @@ /turf/open/floor/plating, /area/bigredv2/outside/dorms) "pgi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/mars_cave{ icon_state = "mars_cave_2" @@ -34524,9 +34515,7 @@ }, /area/bigredv2/caves/mining) "rqa" = ( -/obj/structure/tunnel{ - id = "hole4" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor{ icon_state = "whitepurplefull" }, @@ -34694,7 +34683,7 @@ /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) "rHD" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" @@ -34736,7 +34725,6 @@ /area/bigredv2/oob) "rLR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/mars_cave{ icon_state = "mars_cave_11" }, @@ -35495,9 +35483,7 @@ }, /area/bigredv2/caves/mining) "tdB" = ( -/obj/structure/tunnel{ - id = "hole1" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -35746,7 +35732,7 @@ }, /area/bigredv2/caves/eta/living) "tAW" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor{ dir = 4; icon_state = "asteroidwarning" @@ -35878,9 +35864,7 @@ /turf/open/floor, /area/bigred/ground/garage_workshop) "tJv" = ( -/obj/structure/tunnel{ - id = "hole3" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, @@ -35930,7 +35914,7 @@ }, /area/bigredv2/caves/mining) "tPr" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, @@ -37136,7 +37120,7 @@ }, /area/bigredv2/caves_north) "wpT" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/mars, /area/bigredv2/outside/w) "wry" = ( @@ -37504,7 +37488,7 @@ }, /area/bigredv2/caves/mining) "xeN" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, diff --git a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm index 7acf197b3ddb..19f720daf929 100644 --- a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm +++ b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm @@ -51,11 +51,6 @@ icon_state = "darkish" }, /area/bigredv2/outside/chapel) -"aj" = ( -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) "ak" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -550,7 +545,7 @@ ab "} (10,1,1) = {" ac -aj +ae av aI aW diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm index 652b4df3bdd3..48095ca2d3ce 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm @@ -153,7 +153,7 @@ }, /area/bigredv2/outside/e) "aB" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index e265184172a6..c0fe20bab0fe 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -74,7 +74,7 @@ "aao" = ( /obj/structure/surface/table/woodentable, /obj/item/device/binoculars, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "aap" = ( @@ -153,7 +153,7 @@ /obj/structure/surface/table/woodentable, /obj/item/ashtray/bronze, /obj/item/trash/cigbutt/cigarbutt, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "aaC" = ( @@ -1054,7 +1054,7 @@ "adi" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "adj" = ( @@ -4109,7 +4109,7 @@ /obj/item/ashtray/glass, /obj/item/trash/cigbutt, /obj/item/trash/cigbutt, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "amf" = ( @@ -4204,7 +4204,7 @@ "ams" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/blue, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "amt" = ( @@ -4579,7 +4579,7 @@ "ans" = ( /obj/structure/surface/table/woodentable, /obj/item/device/camera, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "ant" = ( @@ -6315,7 +6315,7 @@ "asS" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/popcorn, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "asT" = ( @@ -15228,9 +15228,7 @@ }, /area/corsat/sigma/biodome) "aQy" = ( -/obj/structure/tunnel{ - id = "hole4" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -27417,7 +27415,7 @@ "bze" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/powercell, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -27664,7 +27662,7 @@ "bzF" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -31582,7 +31580,7 @@ "bMT" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ dir = 9; icon_state = "bluegrey" @@ -31796,7 +31794,7 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ dir = 5; icon_state = "bluegrey" @@ -36374,7 +36372,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ dir = 10; icon_state = "whitebluefull" @@ -36943,7 +36941,7 @@ /turf/open/floor/wood, /area/corsat/gamma/rnr/library) "cWa" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -37529,7 +37527,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ dir = 10; icon_state = "whitebluefull" @@ -39142,7 +39140,7 @@ /obj/structure/machinery/computer/emails{ dir = 1 }, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "exf" = ( @@ -39191,7 +39189,7 @@ /obj/structure/bed{ icon_state = "psychbed" }, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "eyK" = ( @@ -39893,7 +39891,7 @@ /area/corsat/sigma/cargo) "feC" = ( /obj/structure/surface/table/woodentable, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "feD" = ( @@ -40229,9 +40227,7 @@ }, /area/corsat/sigma/checkpoint) "foQ" = ( -/obj/structure/tunnel{ - id = "hole2" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/ice, /area/corsat/gamma/biodome) "fps" = ( @@ -43352,7 +43348,7 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "hzM" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ dir = 4; icon_state = "yellow" @@ -43784,9 +43780,7 @@ /area/corsat/theta/biodome/hydrowest) "hNI" = ( /obj/structure/flora/jungle/vines/heavy, -/obj/structure/tunnel{ - id = "hole3" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "hOb" = ( @@ -44827,7 +44821,7 @@ /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, /obj/item/trash/cigbutt, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "iBO" = ( @@ -45318,7 +45312,7 @@ /obj/structure/surface/table/woodentable, /obj/item/paper, /obj/item/tool/pen, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "iWH" = ( @@ -47290,7 +47284,7 @@ "kFo" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "kFq" = ( @@ -48339,7 +48333,7 @@ }, /area/corsat/theta/biodome/complex) "lsu" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat, /area/corsat/gamma/freezer) "lsB" = ( @@ -54121,7 +54115,7 @@ }, /area/corsat/omega/hallways) "pMI" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -57273,7 +57267,7 @@ }, /area/corsat/gamma/residential/researcher) "sap" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) "saV" = ( @@ -61142,7 +61136,7 @@ /obj/structure/machinery/computer/emails{ dir = 8 }, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "uTf" = ( @@ -62719,9 +62713,7 @@ }, /area/corsat/gamma/residential/west) "wfD" = ( -/obj/structure/tunnel{ - id = "hole0" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -63295,14 +63287,6 @@ icon_state = "retrosquareslight" }, /area/corsat/omega/complex) -"wAz" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) "wAF" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -71561,7 +71545,7 @@ avX hwe hwe avX -wAz +wfD avX sWP avX diff --git a/maps/map_files/CORSAT/standalone/sigma_ice.dmm b/maps/map_files/CORSAT/standalone/sigma_ice.dmm index c3d3c93b9285..da51bd8ded8d 100644 --- a/maps/map_files/CORSAT/standalone/sigma_ice.dmm +++ b/maps/map_files/CORSAT/standalone/sigma_ice.dmm @@ -620,9 +620,7 @@ /turf/open/ice, /area/corsat/sigma/biodome/ice) "lN" = ( -/obj/structure/tunnel{ - id = "hole4" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/ice, /area/corsat/sigma/biodome/ice) "lP" = ( diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index ed7688070a2f..b51afa6c7375 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -712,7 +712,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) "acq" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/dirt{ icon_state = "rock1" }, @@ -2458,7 +2458,6 @@ /area/desert_dam/exterior/river/riverside_central_north) "ahJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/prison{ dir = 10 }, @@ -60701,7 +60700,6 @@ dir = 8 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached1" }, @@ -61280,7 +61278,7 @@ }, /area/desert_dam/exterior/valley/valley_hydro) "hyH" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) "hzg" = ( @@ -61860,7 +61858,7 @@ }, /area/desert_dam/exterior/telecomm/lz1_south) "jxN" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/dirt{ icon_state = "desert_transition_edge1" }, @@ -62014,7 +62012,6 @@ /area/desert_dam/building/dorms/restroom) "kge" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/desert/dirt{ dir = 10; icon_state = "desert_transition_edge1" @@ -62167,7 +62164,7 @@ /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "kQd" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/rock/deep{ icon_state = "rock3" }, @@ -64010,7 +64007,7 @@ }, /area/desert_dam/exterior/valley/south_valley_dam) "ruJ" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/dirt{ icon_state = "rock1" }, @@ -64116,7 +64113,7 @@ /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) "rIY" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/dirt{ icon_state = "rock1" }, @@ -64206,7 +64203,6 @@ /area/desert_dam/interior/dam_interior/hanger) "rVo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) "rXI" = ( @@ -64512,7 +64508,6 @@ "sXh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "sXM" = ( @@ -65161,7 +65156,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "vph" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/dirt{ dir = 4; icon_state = "desert_transition_edge1" @@ -65309,7 +65304,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "vHx" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/dirt{ icon_state = "rock1" }, @@ -65722,7 +65717,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "xec" = ( /obj/structure/flora/grass/desert/lightgrass_1, -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) "xgA" = ( diff --git a/maps/map_files/DesertDam/purpleriver/newbridge.dmm b/maps/map_files/DesertDam/purpleriver/newbridge.dmm index 225fdabddc9f..d6de4499493d 100644 --- a/maps/map_files/DesertDam/purpleriver/newbridge.dmm +++ b/maps/map_files/DesertDam/purpleriver/newbridge.dmm @@ -536,11 +536,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_cargo) -"bx" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) "by" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/asphalt{ diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 0d4ed21934d0..0449fdd43d53 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -9376,7 +9376,7 @@ }, /area/fiorina/station/power_ring) "fHy" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/organic/grass{ desc = "It'll get in your shoes no matter what you do."; name = "astroturf" @@ -12419,7 +12419,7 @@ }, /area/fiorina/tumor/aux_engi) "hwE" = ( -/obj/structure/tunnel/maint_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -12791,7 +12791,7 @@ }, /area/fiorina/station/power_ring) "hIR" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/organic/grass{ desc = "It'll get in your shoes no matter what you do."; name = "astroturf" @@ -13361,7 +13361,7 @@ /turf/open/floor/prison, /area/fiorina/station/medbay) "idO" = ( -/obj/structure/tunnel/maint_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /turf/open/floor/prison{ dir = 10; icon_state = "greenblue" @@ -21721,7 +21721,7 @@ }, /area/fiorina/station/medbay) "mYx" = ( -/obj/structure/tunnel/maint_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -23708,7 +23708,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) "olB" = ( -/obj/structure/tunnel/maint_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) "olC" = ( @@ -36967,7 +36967,7 @@ /turf/open/floor/prison, /area/fiorina/station/disco) "wAM" = ( -/obj/structure/tunnel/maint_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) "wAR" = ( @@ -37982,7 +37982,7 @@ }, /area/fiorina/station/transit_hub) "xii" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/organic/grass{ desc = "It'll get in your shoes no matter what you do."; name = "astroturf" diff --git a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm index aaaaeb0c1199..aa4831eda80f 100644 --- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm +++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm @@ -143,9 +143,7 @@ /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/north) "aaF" = ( -/obj/structure/tunnel{ - id = "north_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/north) "aaG" = ( @@ -697,9 +695,7 @@ }, /area/ice_colony/surface/engineering/electric) "acO" = ( -/obj/structure/tunnel{ - id = "east_cargo_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northwest) "acP" = ( @@ -1183,12 +1179,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"aej" = ( -/obj/structure/tunnel{ - id = "engineering_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/northeast) "aek" = ( /obj/structure/machinery/light{ dir = 8 @@ -2216,9 +2206,7 @@ /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) "agS" = ( -/obj/structure/tunnel{ - id = "south_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) "agT" = ( @@ -3639,9 +3627,7 @@ /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) "akR" = ( -/obj/structure/tunnel{ - id = "construction_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) "akS" = ( @@ -5381,9 +5367,7 @@ /turf/closed/wall/r_wall, /area/ice_colony/surface/clinic/storage) "apQ" = ( -/obj/structure/tunnel{ - id = "west_tcomms_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast) "apR" = ( @@ -6517,12 +6501,6 @@ icon_state = "whitered" }, /area/ice_colony/surface/clinic/treatment) -"asL" = ( -/obj/structure/tunnel{ - id = "hydroponics_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/west) "asM" = ( /obj/structure/surface/table/woodentable, /turf/open/floor{ @@ -8541,9 +8519,7 @@ /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/south) "ayj" = ( -/obj/structure/tunnel{ - id = "south_research_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southwest) "ayk" = ( @@ -9776,9 +9752,7 @@ /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) "aBH" = ( -/obj/structure/tunnel{ - id = "dig_site_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) "aBI" = ( @@ -12542,9 +12516,7 @@ }, /area/ice_colony/surface/storage_unit/telecomms) "aJG" = ( -/obj/structure/tunnel{ - id = "south_tcomms_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) "aJH" = ( @@ -13270,9 +13242,7 @@ /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) "aMu" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) "aMv" = ( @@ -21540,12 +21510,6 @@ "bnn" = ( /turf/closed/ice/end, /area/ice_colony/exterior/underground/caves) -"bno" = ( -/obj/structure/tunnel{ - id = "north_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bnp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -21801,12 +21765,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/underground/caves) -"bnV" = ( -/obj/structure/tunnel{ - id = "east_cargo_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bnW" = ( /turf/open/ice, /area/ice_colony/underground/maintenance/research) @@ -23949,12 +23907,6 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/crew/bball) -"buf" = ( -/obj/structure/tunnel{ - id = "engineering_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bug" = ( /turf/closed/wall/r_wall, /area/ice_colony/exterior/underground/caves) @@ -25384,12 +25336,6 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/central) -"byu" = ( -/obj/structure/tunnel{ - id = "cargo_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "byv" = ( /turf/closed/wall/r_wall/unmeltable, /area/ice_colony/underground/maintenance/research) @@ -26468,12 +26414,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) -"bBA" = ( -/obj/structure/tunnel{ - id = "construction_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bBB" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating, @@ -26679,12 +26619,6 @@ "bCg" = ( /turf/closed/wall/r_wall, /area/ice_colony/underground/maintenance/east) -"bCh" = ( -/obj/structure/tunnel{ - id = "west_tcomms_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bCi" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -28779,12 +28713,6 @@ icon_state = "darkred2" }, /area/ice_colony/underground/security/interrogation) -"bIx" = ( -/obj/structure/tunnel{ - id = "south_tcomms_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bIy" = ( /obj/structure/machinery/alarm{ dir = 8; @@ -31597,12 +31525,6 @@ icon_state = "white" }, /area/ice_colony/underground/security/brig) -"bQk" = ( -/obj/structure/tunnel{ - id = "hydroponics_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bQl" = ( /obj/structure/window/reinforced{ dir = 1 @@ -33621,12 +33543,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) -"bVP" = ( -/obj/structure/tunnel{ - id = "dig_site_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bVQ" = ( /obj/structure/mineral_door/resin, /turf/open/ice, @@ -33706,12 +33622,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) -"bWc" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bWf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34241,9 +34151,7 @@ }, /area/ice_colony/exterior/underground/caves/dig) "bXA" = ( -/obj/structure/tunnel{ - id = "south_research_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) "bXB" = ( @@ -37003,7 +36911,7 @@ bmU bmU bmU bmU -byu +bXA bmU bmU bmU @@ -37830,7 +37738,7 @@ aZF aZF bmQ bmU -bnV +bXA bmU bmU bmU @@ -40417,7 +40325,7 @@ bmU bmU bmU bmU -bQk +bXA bmU bmU bmU @@ -41940,7 +41848,7 @@ aaC aaQ alJ alJ -asL +aMu alJ alJ alJ @@ -44315,7 +44223,7 @@ bls bkJ bmk bmU -bno +bXA bmU bmU bmT @@ -54260,7 +54168,7 @@ bmU bmU bnU boB -bWc +bXA bmU bmU bmU @@ -66604,7 +66512,7 @@ bnk aZF bmm bml -buf +bXA bmU bmU bmU @@ -70567,7 +70475,7 @@ bmU bmU bmU bmU -bBA +bXA bmU bmQ bCg @@ -71705,7 +71613,7 @@ bCg aZF bmQ bmT -bIx +bXA bmU bmU bmU @@ -76490,7 +76398,7 @@ bnT bmi bmQ bmT -bCh +bXA bmU bmU bmU @@ -76818,7 +76726,7 @@ aZF bmh bmi bmU -bVP +bXA bmU bmU bmU @@ -85050,7 +84958,7 @@ aaQ adk adA adj -aej +akR adj adj aaU diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index f5e2f597ef24..da6b4f439eb0 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -52,9 +52,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) "aal" = ( -/obj/structure/tunnel{ - id = "construction_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) "aam" = ( @@ -530,9 +528,7 @@ /turf/open/shuttle/elevator/grating, /area/shiva/interior/colony/research_hab) "abK" = ( -/obj/structure/tunnel{ - id = "south_tcomms_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) "abL" = ( @@ -580,9 +576,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "abT" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) "abU" = ( @@ -4747,9 +4741,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) "aCF" = ( -/obj/structure/tunnel{ - id = "west_tcomms_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) "aCH" = ( @@ -21685,9 +21677,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) "qRX" = ( -/obj/structure/tunnel{ - id = "hydroponics_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) "qSa" = ( diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm index a79ef352f94b..667bb7935753 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -962,7 +962,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) "bsq" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) "bsw" = ( @@ -1102,7 +1102,6 @@ /area/kutjevo/interior/complex/botany) "bDG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) "bDW" = ( @@ -3436,7 +3435,6 @@ /area/kutjevo/exterior/runoff_bridge) "ewV" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "exj" = ( @@ -8623,9 +8621,7 @@ /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) "lZT" = ( -/obj/structure/tunnel{ - id = "hole1" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_north) "lZZ" = ( @@ -9535,9 +9531,7 @@ /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) "niP" = ( -/obj/structure/tunnel{ - id = "hole3" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) "niT" = ( @@ -10760,7 +10754,6 @@ /area/kutjevo/interior/oob) "oOv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) "oOO" = ( @@ -12187,9 +12180,7 @@ }, /area/kutjevo/interior/oob) "qLV" = ( -/obj/structure/tunnel{ - id = "hole2" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) "qMC" = ( @@ -14830,7 +14821,6 @@ /area/kutjevo/exterior/lz_dunes) "ush" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) "usP" = ( @@ -15693,9 +15683,7 @@ /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) "vzy" = ( -/obj/structure/tunnel{ - id = "hole4" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) "vzC" = ( diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index d000153afd71..cc03b600d5a2 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -3121,7 +3121,7 @@ pixel_x = -4; pixel_y = 6 }, -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /obj/structure/machinery/camera/autoname{ dir = 8 }, @@ -4351,7 +4351,6 @@ }, /area/lv522/indoors/c_block/casino) "cnA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ icon_state = "brown" @@ -4644,7 +4643,6 @@ }, /area/lv522/outdoors/colony_streets/north_east_street) "cuu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /obj/structure/machinery/light{ dir = 8 @@ -6626,7 +6624,7 @@ }, /area/lv522/atmos/cargo_intake) "dgO" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -8416,13 +8414,6 @@ icon_state = "marked" }, /area/lv522/atmos/cargo_intake) -"dRy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "dRK" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -8648,7 +8639,6 @@ }, /area/lv522/atmos/east_reactor) "dXo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /obj/structure/machinery/light{ dir = 1 @@ -9537,10 +9527,7 @@ }, /area/lv522/oob) "eow" = ( -/obj/structure/tunnel{ - pixel_x = 2; - pixel_y = -6 - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -9822,9 +9809,7 @@ /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) "evu" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /obj/structure/machinery/light/small{ dir = 1 }, @@ -10597,9 +10582,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "eLK" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, @@ -14620,7 +14603,7 @@ }, /area/lv522/indoors/c_block/t_comm) "gts" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) "gtt" = ( @@ -14673,9 +14656,7 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "gul" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -16143,7 +16124,6 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "gWg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ dir = 6; @@ -17676,7 +17656,6 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "hwG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -20795,9 +20774,7 @@ }, /area/lv522/landing_zone_2) "iGD" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /obj/structure/machinery/light/small, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) @@ -21371,7 +21348,6 @@ /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) "iRV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat{ dir = 1; @@ -22036,7 +22012,6 @@ /area/lv522/outdoors/colony_streets/north_street) "jey" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat{ icon_state = "plate" @@ -22427,7 +22402,6 @@ }, /area/lv522/atmos/cargo_intake) "jjV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ icon_state = "plate" @@ -23449,7 +23423,6 @@ }, /area/lv522/atmos/cargo_intake) "jCQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ dir = 8; @@ -23558,7 +23531,6 @@ /area/lv522/atmos/way_in_command_centre) "jEk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /obj/structure/machinery/light{ dir = 4 @@ -24444,7 +24416,6 @@ }, /area/lv522/indoors/c_block/bridge) "jVC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat{ icon_state = "plate" @@ -24474,7 +24445,6 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "jWr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ dir = 10; @@ -24547,9 +24517,7 @@ /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "jYp" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -25647,7 +25615,6 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "kpE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26515,7 +26482,7 @@ }, /area/lv522/indoors/b_block/hydro) "kGX" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "kHd" = ( @@ -28045,7 +28012,6 @@ }, /area/lv522/atmos/east_reactor/south) "ljm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28073,7 +28039,6 @@ /turf/open/gm/river, /area/lv522/atmos/filt) "ljQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat{ dir = 8; @@ -28481,12 +28446,6 @@ icon_state = "browncorner" }, /area/lv522/atmos/reactor_garage) -"lrQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "lsf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -31255,7 +31214,6 @@ }, /area/lv522/indoors/c_block/mining) "mxp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat{ icon_state = "browncorner" @@ -31935,7 +31893,6 @@ }, /area/lv522/atmos/east_reactor/south) "mMj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat{ icon_state = "brown" @@ -32235,7 +32192,6 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "mPY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) @@ -33459,7 +33415,6 @@ /area/lv522/indoors/a_block/kitchen) "nmX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ icon_state = "brown" @@ -35096,7 +35051,7 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "nTa" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) "nTg" = ( @@ -39184,10 +39139,6 @@ icon_state = "floor_plate" }, /area/lv522/atmos/way_in_command_centre) -"pwC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "pwH" = ( /obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/landinglight/ds1/delayone{ @@ -41112,7 +41063,6 @@ /area/lv522/oob) "qgx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) "qhk" = ( @@ -47536,13 +47486,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"srf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "srk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -57536,7 +57479,7 @@ }, /area/lv522/atmos/north_command_centre) "vSM" = ( -/obj/structure/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "vSN" = ( @@ -57562,9 +57505,7 @@ /area/lv522/indoors/a_block/executive) "vSV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /turf/open/floor/prison{ dir = 1; icon_state = "blue_plate" @@ -61706,7 +61647,6 @@ }, /area/lv522/landing_zone_1/ceiling) "xzu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ icon_state = "squares" @@ -85256,7 +85196,7 @@ miH saC saC saC -pwC +qjG yaj qjG qjG @@ -85483,7 +85423,7 @@ kXa saC saC saC -pwC +qjG yaj qjG qjG @@ -85709,11 +85649,11 @@ lmY saC saC saC -pwC +qjG qjG yaj qjG -pwC +qjG saC saC saC @@ -85935,7 +85875,7 @@ xmD saC saC saC -lrQ +xmD qjG qjG yaj @@ -86167,7 +86107,7 @@ qjG qjG yaj qjG -pwC +qjG saC saC saC @@ -89118,8 +89058,8 @@ dZG xmD seF qJE -lrQ -dRy +xmD +hna yiu mMj qJE @@ -89571,8 +89511,8 @@ hLY knt xQc xQc -srf -dRy +hdQ +hna yiu yiu wea diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index 336dc6a90212..f3b4a1a30f41 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -162,7 +162,6 @@ /area/lv624/ground/caves/north_central_caves) "abc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "abd" = ( @@ -187,9 +186,7 @@ /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) "abj" = ( -/obj/structure/tunnel{ - id = "hole2" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "abk" = ( @@ -267,7 +264,6 @@ "abF" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "abG" = ( @@ -503,9 +499,7 @@ }, /area/lv624/ground/barrens/north_east_barrens) "acK" = ( -/obj/structure/tunnel{ - id = "hole1" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "acL" = ( @@ -871,7 +865,6 @@ /area/lv624/ground/caves/north_central_caves) "aed" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) @@ -2546,9 +2539,7 @@ /turf/open/gm/river, /area/lv624/ground/river/west_river) "amy" = ( -/obj/structure/tunnel{ - id = "hole3" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "amA" = ( @@ -4835,9 +4826,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) "axY" = ( -/obj/structure/tunnel{ - id = "hole4" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) "axZ" = ( @@ -4849,10 +4838,6 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"aya" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/quartstorage/outdoors) "ayd" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -8330,7 +8315,7 @@ /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) "aKn" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) @@ -8780,7 +8765,7 @@ }, /area/lv624/lazarus/landing_zones/lz1) "aMr" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/east_jungle) "aMt" = ( @@ -9895,7 +9880,7 @@ "aRo" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/heavy, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) "aRq" = ( @@ -11062,7 +11047,7 @@ }, /area/lv624/lazarus/engineering) "aVJ" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "aVK" = ( @@ -11805,7 +11790,7 @@ }, /area/lv624/lazarus/engineering) "aYj" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) @@ -11860,9 +11845,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) "aYx" = ( -/obj/structure/tunnel{ - id = "hole4" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) @@ -13263,7 +13246,6 @@ /area/lv624/lazarus/corporate_dome) "dfJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/scientist, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -14062,7 +14044,6 @@ "eZC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/random/burst, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -14293,7 +14274,6 @@ /area/lv624/lazarus/medbay) "fAD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/engineer, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -14384,7 +14364,6 @@ /area/lv624/ground/colony/west_nexus_road) "fIt" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "fIy" = ( @@ -15402,7 +15381,6 @@ /area/lv624/ground/caves/sand_temple) "iyr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/doctor, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -15590,7 +15568,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) "iZZ" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) @@ -15757,7 +15735,6 @@ /area/lv624/ground/jungle/south_east_jungle) "jAo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "jAK" = ( @@ -17464,7 +17441,6 @@ "nHq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/miner, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -17927,7 +17903,6 @@ /area/lv624/ground/jungle/south_central_jungle) "oAV" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "oBi" = ( @@ -19184,7 +19159,6 @@ /area/lv624/ground/barrens/south_eastern_jungle_barrens) "rwx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/wygoon, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -19306,7 +19280,7 @@ /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) "rKR" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) @@ -19335,7 +19309,6 @@ "rPK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "rQf" = ( @@ -20222,7 +20195,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) "tTh" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) @@ -20438,7 +20411,6 @@ /area/lv624/ground/jungle/north_east_jungle) "upQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/random/burst, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -20674,7 +20646,7 @@ }, /area/lv624/lazarus/landing_zones/lz1) "uVU" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) @@ -21190,7 +21162,6 @@ "wlh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "wlo" = ( @@ -21976,7 +21947,7 @@ /area/lv624/lazarus/corporate_dome) "yiE" = ( /obj/structure/flora/jungle/vines/heavy, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) "yiT" = ( @@ -55012,7 +54983,7 @@ bit cpY cpY cpY -aya +axY arK lpV lpV diff --git a/maps/map_files/LV624/standalone/clfship.dmm b/maps/map_files/LV624/standalone/clfship.dmm index 4c53a79e90d7..a70f59f2e939 100644 --- a/maps/map_files/LV624/standalone/clfship.dmm +++ b/maps/map_files/LV624/standalone/clfship.dmm @@ -37,9 +37,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "aY" = ( -/obj/structure/tunnel{ - id = "hole3" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "bc" = ( diff --git a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm index 770d6a93473e..e4313040166c 100644 --- a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm @@ -174,7 +174,7 @@ /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_west_jungle) "Lv" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -188,7 +188,7 @@ /area/lv624/ground/jungle/south_west_jungle) "LM" = ( /obj/structure/flora/jungle/vines/light_2, -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "LV" = ( diff --git a/maps/map_files/LV624/standalone/sandtemple-se.dmm b/maps/map_files/LV624/standalone/sandtemple-se.dmm index 76d29d2d01ba..6c53bfe10274 100644 --- a/maps/map_files/LV624/standalone/sandtemple-se.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-se.dmm @@ -184,7 +184,7 @@ /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/jungle/south_east_jungle) "Ya" = ( -/obj/effect/landmark/lv624/xeno_tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) "Yr" = ( diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm index e03bf8cdcbe4..1a614f136452 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -6462,9 +6462,7 @@ }, /area/varadero/exterior/monsoon) "emt" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) "emC" = ( @@ -20091,9 +20089,7 @@ }, /area/varadero/interior/administration) "mSa" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) "mSf" = ( @@ -27094,9 +27090,7 @@ }, /area/varadero/interior/cargo) "ron" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) "roy" = ( @@ -35091,9 +35085,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) "wnE" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) "wnK" = ( @@ -35355,9 +35347,7 @@ }, /area/varadero/interior/comms3) "wvI" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) "wvK" = ( diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 334c7e71f8b6..0fbccf511d45 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -10464,9 +10464,7 @@ }, /area/strata/ag/interior/outpost/canteen) "aFC" = ( -/obj/structure/tunnel{ - id = "hole3" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) "aFD" = ( @@ -16510,9 +16508,7 @@ /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/disposals) "bad" = ( -/obj/structure/tunnel{ - id = "hole4" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) "bae" = ( @@ -18477,9 +18473,7 @@ /area/strata/ug/interior/outpost/jung/dorms/admin4) "bgX" = ( /obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/tunnel{ - id = "hole2" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) "bha" = ( @@ -21979,9 +21973,7 @@ /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) "bui" = ( -/obj/structure/tunnel{ - id = "hole1" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/tcomms/tcomms_deck) "bul" = ( @@ -27421,10 +27413,6 @@ icon_state = "white_cyan1" }, /area/strata/ag/interior/outpost/canteen) -"cgq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/east_carp) "cgu" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata{ @@ -31837,13 +31825,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"gjP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "gkt" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) @@ -34294,11 +34275,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) -"kyf" = ( -/obj/item/stack/rods, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) "kyr" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) @@ -35338,10 +35314,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"miy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/tearlake) "miL" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -37411,9 +37383,7 @@ /area/strata/ag/interior/tcomms) "pMU" = ( /obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/tunnel{ - id = "hole1" - }, +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) "pNL" = ( @@ -37921,13 +37891,6 @@ icon_state = "cement1" }, /area/strata/ug/interior/jungle/platform/east/scrub) -"qHo" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/gen/bball/nest) "qIt" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -38005,12 +37968,6 @@ icon_state = "cement3" }, /area/strata/ag/exterior/landingzone_2) -"qOm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "qOt" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood, @@ -64152,7 +64109,7 @@ cdo acU aaw cdo -qHo +aan aan aam cdo @@ -64347,7 +64304,7 @@ cdo aJn cdo cdo -kyf +baH cdo aJn cdo @@ -64542,7 +64499,7 @@ cjq cjq aKw aLu -gjP +cjq cjq cjq gGX @@ -77374,7 +77331,7 @@ uSR jLb eMz jLb -miy +jLb dKj dKj dKj @@ -77569,7 +77526,7 @@ jLb jLb eMz jLb -miy +jLb dKj dKj dKj @@ -77764,7 +77721,7 @@ jLb jLb jLb euZ -miy +jLb dKj dKj dKj @@ -84898,9 +84855,9 @@ daq daq daq daq -cgq -cgq -cgq +daq +daq +daq daq daq daq @@ -86613,7 +86570,7 @@ akh bRl bRl aEN -qOm +abX ady bAr bAr @@ -86808,7 +86765,7 @@ ajF akh aeW aEC -qOm +abX ady bAr bAr @@ -87003,7 +86960,7 @@ aki akO bRl aDR -qOm +abX ady bAr bAr From 4aa0c7874f78be3a4fa9d24ba65f49df94b8b5b9 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Tue, 17 Oct 2023 18:41:58 -0400 Subject: [PATCH 02/21] minor spelling mistake --- .../effects/landmarks/structure_spawners/setup_distress.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index 289a9855ca94..7eeb0b6e8863 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -58,7 +58,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/tunnel/Initialize(mapload, ...) . = ..() var/turf/tunnel_tile = loc - if(!tunnel_tile.can_dig_xeno_tunnel) + if(!tunnel_tile.can_dig_xeno_tunnel()) stack_trace("[src] at [x],[y],[z] is on a turf where tunnels cannot normally be built.") /obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance From 6cd4825951c623023e7597d1a653608e74283ec4 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Tue, 17 Oct 2023 18:55:06 -0400 Subject: [PATCH 03/21] create and destroy --- .../effects/landmarks/structure_spawners/setup_distress.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index 7eeb0b6e8863..d731f20dd321 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -42,7 +42,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/Initialize(mapload, ...) . = ..() var/turf/node_tile = loc - if(node_tile.is_weedable() < weed_strength_required) + if(!is_ground_level(z) && node_tile.is_weedable() < weed_strength_required) stack_trace("[src] at [x],[y],[z] is on a turf where weeds cannot normally grow.") /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/hardy @@ -58,7 +58,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/tunnel/Initialize(mapload, ...) . = ..() var/turf/tunnel_tile = loc - if(!tunnel_tile.can_dig_xeno_tunnel()) + if(!is_ground_level(z) && !tunnel_tile.can_dig_xeno_tunnel()) stack_trace("[src] at [x],[y],[z] is on a turf where tunnels cannot normally be built.") /obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance From 4d2f16bacedd78325e3c316b287557c43b5a1de2 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Tue, 17 Oct 2023 19:05:20 -0400 Subject: [PATCH 04/21] return --- .../landmarks/structure_spawners/setup_distress.dm | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index d731f20dd321..1049081f1c9c 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -41,9 +41,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/Initialize(mapload, ...) . = ..() + if(is_ground_level(z)) + return var/turf/node_tile = loc - if(!is_ground_level(z) && node_tile.is_weedable() < weed_strength_required) - stack_trace("[src] at [x],[y],[z] is on a turf where weeds cannot normally grow.") + if(node_tile.is_weedable() >= weed_strength_required) + return + stack_trace("[src] at [x],[y],[z] is on a turf where weeds cannot normally grow.") /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/hardy name = "Distress Xeno hardy node spawner" @@ -57,9 +60,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/tunnel/Initialize(mapload, ...) . = ..() + if(is_ground_level(z)) + return var/turf/tunnel_tile = loc - if(!is_ground_level(z) && !tunnel_tile.can_dig_xeno_tunnel()) - stack_trace("[src] at [x],[y],[z] is on a turf where tunnels cannot normally be built.") + if(tunnel_tile.can_dig_xeno_tunnel()) + return + stack_trace("[src] at [x],[y],[z] is on a turf where tunnels cannot normally be built.") /obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance name = "Distress Xeno maintenance tunnel spawner" From 56effed411fc8d6ad38aff5f7b148620f8c9f1d7 Mon Sep 17 00:00:00 2001 From: BeagleGaming1 <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 18 Oct 2023 09:00:26 -0400 Subject: [PATCH 05/21] Update setup_distress.dm --- .../effects/landmarks/structure_spawners/setup_distress.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index 1049081f1c9c..05110b5d30e8 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -41,7 +41,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/Initialize(mapload, ...) . = ..() - if(is_ground_level(z)) + if(!is_ground_level(z)) return var/turf/node_tile = loc if(node_tile.is_weedable() >= weed_strength_required) @@ -60,7 +60,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/tunnel/Initialize(mapload, ...) . = ..() - if(is_ground_level(z)) + if(!is_ground_level(z)) return var/turf/tunnel_tile = loc if(tunnel_tile.can_dig_xeno_tunnel()) From acde7be7a30228c45d986bbea0fd97bbd7b30da0 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 18 Oct 2023 13:17:06 -0400 Subject: [PATCH 06/21] test --- .../effects/landmarks/structure_spawners/setup_distress.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index 05110b5d30e8..8468ebaabaf6 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -41,7 +41,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/Initialize(mapload, ...) . = ..() - if(!is_ground_level(z)) + if(!is_admin_level(z) && !is_ground_level(z) && !is_mainship_level(z) && !is_reserved_level(z)) //Create and Destroy check return var/turf/node_tile = loc if(node_tile.is_weedable() >= weed_strength_required) @@ -60,7 +60,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/tunnel/Initialize(mapload, ...) . = ..() - if(!is_ground_level(z)) + if(!is_admin_level(z) && !is_ground_level(z) && !is_mainship_level(z) && !is_reserved_level(z)) //Create and Destroy check return var/turf/tunnel_tile = loc if(tunnel_tile.can_dig_xeno_tunnel()) From 741100eeae1b9ea971407ad3b6a93a335d8b72f9 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 18 Oct 2023 14:28:13 -0400 Subject: [PATCH 07/21] corsat --- .../structure_spawners/setup_distress.dm | 4 +- maps/map_files/CORSAT/Corsat.dmm | 50 +++++++++++++------ 2 files changed, 37 insertions(+), 17 deletions(-) diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index 8468ebaabaf6..c167d54c84bc 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -41,7 +41,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/Initialize(mapload, ...) . = ..() - if(!is_admin_level(z) && !is_ground_level(z) && !is_mainship_level(z) && !is_reserved_level(z)) //Create and Destroy check + if(!is_admin_level(z) && !is_ground_level(z) && !is_mainship_level(z) && !is_reserved_level(z)) //Is it a real area? for the create and destroy unit tests return var/turf/node_tile = loc if(node_tile.is_weedable() >= weed_strength_required) @@ -60,7 +60,7 @@ /obj/effect/landmark/structure_spawner/setup/distress/tunnel/Initialize(mapload, ...) . = ..() - if(!is_admin_level(z) && !is_ground_level(z) && !is_mainship_level(z) && !is_reserved_level(z)) //Create and Destroy check + if(!is_admin_level(z) && !is_ground_level(z) && !is_mainship_level(z) && !is_reserved_level(z)) //Is it a real area? for the create and destroy unit tests return var/turf/tunnel_tile = loc if(tunnel_tile.can_dig_xeno_tunnel()) diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index c0fe20bab0fe..acfe5eb048a7 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -40226,10 +40226,6 @@ icon_state = "squares" }, /area/corsat/sigma/checkpoint) -"foQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/ice, -/area/corsat/gamma/biodome) "fps" = ( /obj/structure/machinery/atm{ pixel_y = -30 @@ -43290,6 +43286,10 @@ icon_state = "bluegrey" }, /area/corsat/sigma/south/offices) +"hxJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/turf/open/snow, +/area/corsat/gamma/biodome) "hxW" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -47104,6 +47104,10 @@ icon_state = "darkgreen" }, /area/corsat/gamma/rnr) +"kwg" = ( +/obj/structure/ice/thin/single, +/turf/open/snow, +/area/corsat/gamma/biodome) "kwK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -48420,6 +48424,11 @@ icon_state = "yellowcorner" }, /area/corsat/gamma/hallwaysouth) +"lvo" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/snow, +/area/corsat/gamma/biodome) "lvE" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/wood, @@ -49668,6 +49677,9 @@ icon_state = "squares" }, /area/corsat/gamma/residential) +"moN" = ( +/turf/open/snow, +/area/corsat/gamma/biodome) "moU" = ( /turf/open/floor/corsat{ icon_state = "squares" @@ -52327,6 +52339,10 @@ icon_state = "white" }, /area/corsat/gamma/residential) +"ona" = ( +/obj/effect/alien/weeds/node, +/turf/open/snow, +/area/corsat/gamma/biodome) "ong" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -59344,6 +59360,10 @@ icon_state = "whitetancorner" }, /area/corsat/sigma/dorms) +"tCJ" = ( +/obj/structure/bed/nest, +/turf/open/snow, +/area/corsat/gamma/biodome) "tDc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -63411,7 +63431,7 @@ dir = 5; icon_state = "single_part" }, -/turf/open/ice, +/turf/open/snow, /area/corsat/gamma/biodome) "wFU" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -66070,10 +66090,10 @@ bfc bfc pwp bfG -bfg +kwg nfz -xCy -ims +tCJ +lvo nfz aiU aiU @@ -66316,12 +66336,12 @@ bfc bfc bfc bfc -bfc -aEZ -bfc +moN +ona +hxJ wFO wFO -bfc +moN bfc aiU aiU @@ -66562,8 +66582,8 @@ nnC huu bfc bfc -bfc -bfc +moN +moN wFO bfc bfc @@ -66806,7 +66826,7 @@ bfc hHy huu bfc -foQ +bfc bfc bfc bfc From bd69f9d2344e031aa0f278280ec0182b55a65773 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 18 Oct 2023 15:06:22 -0400 Subject: [PATCH 08/21] fiorina --- .../FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 44 +++++++++++++------ 1 file changed, 31 insertions(+), 13 deletions(-) diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 0449fdd43d53..6aeacc9d504e 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -12057,7 +12057,7 @@ pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/plating/prison, +/turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "hmd" = ( /obj/structure/stairs/perspective{ @@ -23709,7 +23709,7 @@ /area/fiorina/station/telecomm/lz2_maint) "olB" = ( /obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, -/turf/open/floor/plating/prison, +/turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "olC" = ( /turf/open/floor/prison{ @@ -31857,7 +31857,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-4-8" }, -/turf/open/floor/plating/prison, +/turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "tuo" = ( /obj/structure/prop/structure_lattice{ @@ -36200,6 +36200,13 @@ icon_state = "darkredfull2" }, /area/fiorina/station/disco) +"waF" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + dir = 4; + icon_state = "blue" + }, +/area/fiorina/station/civres_blue) "waN" = ( /obj/structure/platform{ dir = 1 @@ -36810,7 +36817,9 @@ /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/turf/open/floor/plating/prison, +/turf/open/floor/prison{ + icon_state = "blue" + }, /area/fiorina/station/civres_blue) "wwr" = ( /obj/structure/surface/table/reinforced/prison, @@ -36968,7 +36977,10 @@ /area/fiorina/station/disco) "wAM" = ( /obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, -/turf/open/floor/plating/prison, +/turf/open/floor/prison{ + dir = 6; + icon_state = "blue" + }, /area/fiorina/station/civres_blue) "wAR" = ( /obj/structure/filingcabinet, @@ -37151,6 +37163,12 @@ icon_state = "darkyellow2" }, /area/fiorina/station/telecomm/lz1_cargo) +"wGv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) "wGD" = ( /obj/structure/bed/chair{ dir = 8 @@ -47804,8 +47822,8 @@ rGq knh rGq rGq -bfF -rGq +wGv +hjP jlk baC baC @@ -48228,7 +48246,7 @@ aKW knh rGq hlT -bfF +wGv jlk jlk baC @@ -60228,7 +60246,7 @@ apf apf apf apf -apf +gFG rja obT kMq @@ -60651,8 +60669,8 @@ nAr uHX apf apf -apf -apf +bfZ +gFG uHX obT gma @@ -60862,8 +60880,8 @@ qwJ eTn rja apf -esS -apf +waF +vky wAM rja obT From d068eb2fe7a712aaf976babb6e5b5242633ef960 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 18 Oct 2023 15:49:20 -0400 Subject: [PATCH 09/21] CC --- code/game/turfs/floor_types.dm | 6 ++--- code/game/turfs/turf.dm | 3 +++ .../LV522_Chances_Claim.dmm | 22 +++++++++++-------- 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/code/game/turfs/floor_types.dm b/code/game/turfs/floor_types.dm index 4e47fd004f74..49c2d1fd3986 100644 --- a/code/game/turfs/floor_types.dm +++ b/code/game/turfs/floor_types.dm @@ -180,8 +180,6 @@ /turf/open/floor/plating/plating_catwalk/shiva icon = 'icons/turf/floors/ice_colony/shiva_floor.dmi' - - /turf/open/floor/plating/ironsand name = "Iron Sand" @@ -189,14 +187,14 @@ . = ..() icon_state = "ironsand[rand(1,15)]" - - /turf/open/floor/plating/catwalk icon = 'icons/turf/floors/catwalks.dmi' icon_state = "catwalk0" name = "catwalk" desc = "Cats really don't like these things." +/turf/open/floor/plating/tunnelable //You can place a tunnel on these + name = "damaged plating" /turf/open/floor/almayer icon = 'icons/turf/almayer.dmi' diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index 837610d5d7fe..f29ff6737fb6 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -666,6 +666,9 @@ /turf/open/floor/corsat/can_dig_xeno_tunnel() return TRUE +/turf/open/floor/plating/tunnelable/can_dig_xeno_tunnel() + return TRUE + /turf/closed/wall/almayer/research/containment/wall/divide/can_dig_xeno_tunnel() return FALSE diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index cc03b600d5a2..92d423c6b98f 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -9813,7 +9813,10 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/tunnelable, /area/lv522/landing_zone_1/tunnel) "evv" = ( /obj/effect/decal/cleanable/dirt, @@ -10585,7 +10588,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/plating/tunnelable, /area/lv522/landing_zone_1/tunnel) "eLN" = ( /obj/structure/machinery/light, @@ -20776,7 +20782,10 @@ "iGD" = ( /obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, /obj/structure/machinery/light/small, -/turf/open/floor/plating, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/plating/tunnelable, /area/lv522/landing_zone_1/tunnel) "iGF" = ( /obj/structure/bed/chair{ @@ -38897,11 +38906,6 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"prT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) "prU" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -69789,7 +69793,7 @@ vtc vtc vtc uWO -prT +vZY kWD tTr pUR From dfbcbf8b05ab94d6f287d90eed7b4f7ba1bb6351 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 18 Oct 2023 20:33:35 -0400 Subject: [PATCH 10/21] dam --- maps/map_files/DesertDam/Desert_Dam.dmm | 31 ++++++++++++++----------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index b51afa6c7375..c7842f61249e 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -44,7 +44,6 @@ }, /area/desert_dam/interior/lab_northeast/east_lab_containment) "aag" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars{ icon_state = "mars_dirt_10" }, @@ -61277,6 +61276,12 @@ icon_state = "cement_sunbleached13" }, /area/desert_dam/exterior/valley/valley_hydro) +"hxD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "hyH" = ( /obj/effect/landmark/structure_spawner/setup/distress/tunnel, /turf/open/desert/dirt, @@ -62450,13 +62455,6 @@ "lNu" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"lNN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "lOM" = ( /obj/effect/decal/sand_overlay/sand2/corner2, /turf/open/asphalt/cement, @@ -63861,6 +63859,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) +"qOt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "qPl" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 2; @@ -99635,7 +99640,7 @@ acu acu afG afH -afK +qOt alc afK agI @@ -104784,7 +104789,7 @@ acu afG afH afK -afK +qOt agI afG afH @@ -105018,13 +105023,13 @@ acu afG afI akW -lNN +akW agL amn afI akW -lNN -agL +akW +hxD afG aqG amr From 56442ceb9e225daed358a51e81ec5cb86bc86917 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Thu, 19 Oct 2023 18:23:19 -0400 Subject: [PATCH 11/21] Ice v2 --- .../map_files/Ice_Colony_v2/Ice_Colony_v2.dmm | 782 +++++++++++------- 1 file changed, 487 insertions(+), 295 deletions(-) diff --git a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm index aa4831eda80f..cf7d46b9b8dd 100644 --- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm +++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm @@ -3628,7 +3628,7 @@ /area/ice_colony/exterior/surface/valley/northeast) "akR" = ( /obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/ice, +/turf/open/auto_turf/snow, /area/ice_colony/exterior/surface/valley/northeast) "akS" = ( /obj/structure/disposalpipe/segment{ @@ -12517,7 +12517,7 @@ /area/ice_colony/surface/storage_unit/telecomms) "aJG" = ( /obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/ice, +/turf/open/auto_turf/snow, /area/ice_colony/exterior/surface/valley/southeast) "aJH" = ( /obj/structure/ice/thin/end{ @@ -13241,10 +13241,6 @@ /obj/structure/fence, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) -"aMu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/west) "aMv" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -26041,7 +26037,7 @@ /obj/structure/ice/thin/junction{ dir = 4 }, -/turf/open/ice, +/turf/open/auto_turf/snow, /area/ice_colony/exterior/underground/caves) "bAB" = ( /obj/structure/machinery/light/small, @@ -26412,7 +26408,7 @@ "bBz" = ( /obj/effect/alien/weeds/node, /obj/effect/landmark/xeno_spawn, -/turf/open/ice, +/turf/open/auto_turf/snow, /area/ice_colony/exterior/underground/caves/open) "bBB" = ( /obj/structure/machinery/light/small, @@ -34418,6 +34414,12 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"dhK" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "dxl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, @@ -34434,6 +34436,18 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"dPR" = ( +/obj/structure/ice/thin/end{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) +"dZf" = ( +/obj/structure/ice/thin/straight{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "ecS" = ( /obj/structure/machinery/light{ dir = 4 @@ -34443,6 +34457,12 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/beta) +"efg" = ( +/obj/structure/ice/thin/end{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "elU" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -34457,6 +34477,12 @@ icon_state = "dark2" }, /area/ice_colony/surface/research) +"eJQ" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "eSd" = ( /turf/open/floor/plating/icefloor{ dir = 5; @@ -34472,6 +34498,14 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/research/tech_storage) +"eYV" = ( +/obj/structure/ice/thin/junction, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) +"fpL" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "fqt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34521,6 +34555,10 @@ icon_state = "darkred2" }, /area/ice_colony/underground/reception/checkpoint_north) +"gLz" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "gXP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -34532,6 +34570,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/ice, /area/ice_colony/underground/maintenance/south) +"his" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) "hmT" = ( /turf/closed/ice_rock/corners{ dir = 9 @@ -34544,6 +34585,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/south) +"hBB" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) "hDM" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/southeast) @@ -34585,6 +34630,12 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/south) +"jeh" = ( +/obj/structure/ice/thin/end{ + dir = 1 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "jtr" = ( /turf/closed/wall, /area/ice_colony/exterior/surface/cliff) @@ -34620,6 +34671,16 @@ icon_state = "warnplate" }, /area/ice_colony/surface/tcomms) +"kAz" = ( +/obj/structure/ice/thin/end{ + dir = 1 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) +"kKg" = ( +/obj/structure/ice/thin/corner, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "kKZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -34631,6 +34692,13 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/wall, /area/ice_colony/surface/research) +"lbr" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) +"lqd" = ( +/obj/structure/ice/thin/end, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "lqY" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor, @@ -34651,12 +34719,28 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/beta) +"lzx" = ( +/obj/structure/mineral_door/resin, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "lJQ" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/south) +"lOw" = ( +/obj/structure/ice/thin/corner{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "lXk" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/clearing/south) +"mhl" = ( +/obj/structure/ice/thin/end{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "mog" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34668,16 +34752,29 @@ icon_state = "dark2" }, /area/ice_colony/surface/hangar/beta) +"mte" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "mwS" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/ice_colony/underground/maintenance/south) +"mAe" = ( +/obj/structure/ice/thin/corner{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "mHc" = ( /turf/open/floor{ dir = 5; icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/beta) +"mPu" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "neZ" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Colony Dormitories" @@ -34705,9 +34802,19 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/tcomms) +"oNa" = ( +/obj/structure/ice/thin/end{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "oOd" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/clearing/pass) +"oYp" = ( +/obj/structure/ice/thin/end, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "oZq" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -34732,6 +34839,16 @@ "pyn" = ( /turf/closed/wall, /area/ice_colony/underground/hangar) +"pYT" = ( +/obj/structure/ice/thin/end, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) +"qdW" = ( +/obj/structure/ice/thin/end{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "qny" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, @@ -34752,6 +34869,16 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) +"qGD" = ( +/obj/structure/ice/thin/straight{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) +"qQj" = ( +/obj/structure/mineral_door/resin, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) "qRy" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/door_control{ @@ -34761,6 +34888,9 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) +"qUb" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "rbS" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating/icefloor{ @@ -34772,6 +34902,10 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) +"rrq" = ( +/obj/effect/alien/weeds/node, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) "rxQ" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/northwest) @@ -34816,6 +34950,14 @@ }, /turf/open/floor/plating, /area/ice_colony/exterior/surface/landing_pad) +"sEi" = ( +/obj/structure/ice/thin/end, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) +"sKA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "sKH" = ( /obj/structure/surface/table, /obj/item/device/analyzer, @@ -34860,6 +35002,12 @@ icon_state = "darkblue2" }, /area/ice_colony/surface/dorms) +"txk" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "tBe" = ( /obj/structure/bed/chair, /turf/open/floor/plating/icefloor, @@ -34938,12 +35086,30 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) +"vfI" = ( +/obj/structure/ice/thin/end{ + dir = 1 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "vhS" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) +"vqV" = ( +/obj/structure/ice/thin/corner{ + dir = 1 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) +"vsX" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "vtU" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -34954,6 +35120,12 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/alpha) +"vXl" = ( +/obj/structure/ice/thin/end{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "waD" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -34972,11 +35144,20 @@ icon_state = "dark2" }, /area/ice_colony/surface/hangar/alpha) +"wjk" = ( +/obj/structure/ice/thin/straight{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "wue" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, /turf/open/floor/wood, /area/ice_colony/surface/command/control/pv1) +"wzD" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/surface/mining) "wDj" = ( /turf/open/floor/plating/icefloor{ dir = 1; @@ -35002,6 +35183,17 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"xwp" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) +"xRN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) +"xSV" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "xWm" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -36348,7 +36540,7 @@ bml bmh bnT bmi -bmT +fpL bmm bml aZF @@ -36628,10 +36820,10 @@ bnU boB bmm bmi -bmU -bmU -bmU -bmT +his +his +his +fpL bmm bnT bmi @@ -36911,8 +37103,8 @@ bmU bmU bmU bmU -bXA -bmU +xRN +his bmU bmU bmU @@ -37174,9 +37366,9 @@ aZF aZF bmh bmi -bnU -boB -bmU +vfI +pYT +his bmU bmT boT @@ -37455,9 +37647,9 @@ aZF aZF aZF bmQ -bmT -bmU -bmU +fpL +his +his bmU bmU bmU @@ -37737,9 +37929,9 @@ aZF aZF aZF bmQ -bmU -bXA -bmU +his +xRN +his bmU bmU bmU @@ -38019,8 +38211,8 @@ aZF aZF aZF bmQ -bmU -bmU +his +his bmU boR bmU @@ -38301,8 +38493,8 @@ aZF aZF aZF bmQ -bmU -bmU +his +his bmU bmU bmU @@ -38583,8 +38775,8 @@ aZF aZF aZF bmQ -bmT -bmU +fpL +his bmU bmU bmU @@ -38866,7 +39058,7 @@ aZF aZF bmm bml -bmT +fpL bmU bmU boS @@ -39763,9 +39955,9 @@ bmU boD bmU bmU -bmU -bnU -boB +his +vfI +pYT bmm bml aZF @@ -40045,10 +40237,10 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmT +his +his +his +fpL bmQ aZF aZF @@ -40325,11 +40517,11 @@ bmU bmU bmU bmU -bXA -bmU bmU bmU bmU +xRN +his bmh bmi aZF @@ -40610,8 +40802,8 @@ bmU bmU bmU bmU -bmU -bmU +his +his bmQ aZF aZF @@ -40892,7 +41084,7 @@ bmT bmU bmU bmU -bmU +his bxf bwx aZF @@ -41175,7 +41367,7 @@ bmT bmU bmU bmU -bmj +qdW bmQ aZF aZF @@ -41565,9 +41757,9 @@ aaC aaC aaP aaZ -alJ -alJ -alJ +qUb +qUb +qUb aaR abn acm @@ -41846,12 +42038,12 @@ aaC aaC aaC aaQ -alJ -alJ -aMu -alJ -alJ -alJ +qUb +qUb +sKA +qUb +qUb +qUb acm aae aaP @@ -42128,12 +42320,12 @@ aaC aaC aaC aaQ -alJ -alJ -alJ -alJ -alJ -alJ +qUb +qUb +qUb +qUb +qUb +qUb acm aae abc @@ -42410,11 +42602,11 @@ aaC aaC aaC aaQ -and -apS -alJ -alJ -alJ +txk +lqd +qUb +qUb +qUb aaU adq aaU @@ -42693,10 +42885,10 @@ aaC aaP aaZ aqs -alJ -alJ -alJ -alJ +qUb +qUb +qUb +qUb acm aae and @@ -42977,7 +43169,7 @@ and ane alJ alJ -alJ +qUb aaS acm aae @@ -43658,7 +43850,7 @@ blc bls bkJ bmi -bmT +fpL bmU bmU bmU @@ -43939,9 +44131,9 @@ biy blc bls bkJ -bmj -bmU -bmU +qdW +his +his bmU bmU boT @@ -44221,9 +44413,9 @@ biy blc bls bkJ -bmk -bmU -bXA +oNa +his +xRN bmU bmU bmT @@ -44504,9 +44696,9 @@ bld bls bkJ bml -bmU -bmU -bmU +his +his +his bmU bmU bmU @@ -44787,8 +44979,8 @@ bls bkJ bmm bml -bmU -bmU +his +his bmU bmU boD @@ -45070,8 +45262,8 @@ bkJ aZF bmm bml -bnU -boB +vfI +pYT bmU bmU bmU @@ -47818,7 +48010,7 @@ alJ alJ alJ alJ -aMu +alJ alJ aaQ acj @@ -48095,7 +48287,7 @@ alJ alJ amB aaS -amB +mPu alJ alJ alJ @@ -48378,8 +48570,8 @@ abM aba amC abb -apg -alJ +dPR +qUb alJ alJ alJ @@ -48660,10 +48852,10 @@ aaR abb aaC aaQ -aqs -alJ -alJ -alJ +dZf +qUb +sKA +qUb aaP aaZ aaC @@ -48942,9 +49134,9 @@ apg aaQ aaC aaQ -aph -alJ -alJ +efg +qUb +qUb aaP aaZ aLK @@ -49225,8 +49417,8 @@ aaR aba arC abb -amA -apS +jeh +lqd aaQ aLK aLK @@ -53605,10 +53797,10 @@ bmU bmU bmU bmU -bmU +his bmm bmi -bmT +fpL bmU bmU bmU @@ -53886,11 +54078,11 @@ boR bmU bmU bmU -bmU -bmU -bmU -bmU -bmU +his +his +his +his +his bmU bmU bmU @@ -54168,12 +54360,12 @@ bmU bmU bnU boB -bXA -bmU -bmU -bmU -bmU -bmU +xRN +his +his +his +his +his bmU bmT bmh @@ -63501,7 +63693,7 @@ bmU bmk bmS bmi -bmT +fpL bmm bml aZF @@ -63782,9 +63974,9 @@ bmU bmT bxf bmi -bmU -bmU -bvK +his +his +hBB bmm bml aZF @@ -64063,11 +64255,11 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmj +his +his +his +his +qdW bmQ aZF aZF @@ -64345,11 +64537,11 @@ bmU bmU bmU bmU -bmU -bmU -boD -bmU -bmk +his +his +rrq +his +oNa bmQ aZF aZF @@ -64628,10 +64820,10 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU +his +his +his +his bmQ aZF aZF @@ -64911,9 +65103,9 @@ bmU bmU bmU bmU -bXA -bmU -bmU +xRN +his +his bmQ aZF aZF @@ -65193,9 +65385,9 @@ bmU boD bmU bmU -bmU -bmU -bmU +his +his +his bmQ aZF aZF @@ -65476,8 +65668,8 @@ bmU bmU bmU bmU -bmU -bmT +his +fpL bmQ aZF aZF @@ -65758,7 +65950,7 @@ bmU bmU bmU bmU -bmU +his bmh bmi aZF @@ -69347,7 +69539,7 @@ bmm bnT bnT bmi -bmT +fpL bmQ aZF bCg @@ -69625,11 +69817,11 @@ bsf bqP bmU bmU -bmU -bzR +his +vsX bAA -boB -bmU +pYT +his bmm bml bCg @@ -69908,11 +70100,11 @@ bqP bmU bmU bmU -bzS -bvc -bmU -bmU -bmU +eYV +lOw +his +his +his bmQ bCg bEe @@ -70191,10 +70383,10 @@ bmU boD bmU bmk -bmU -bmU +his +his bBz -bmU +his bmQ bCg bEe @@ -70473,10 +70665,10 @@ bmU bmU bmU bmU -bmU -bmU -bXA -bmU +his +his +xRN +his bmQ bCg bEe @@ -70756,9 +70948,9 @@ buX buX bmU bmU -bmU -bmU -bmU +his +his +his bmQ bCg bEe @@ -71039,7 +71231,7 @@ buX bup bmU bmU -bmU +his bmh bmi bCg @@ -71053,7 +71245,7 @@ bnT bnT bnT bmi -bmT +fpL bmm bMs bMY @@ -71321,7 +71513,7 @@ bzv bmU bmU bmU -bmj +qdW bmQ aZF bCg @@ -71331,12 +71523,12 @@ bCg aZF bmh bmi -bnU -boB -bmU -bmU -bmU -bmT +vfI +pYT +his +his +his +fpL bMs bMs bMs @@ -71612,14 +71804,14 @@ bCI bCg aZF bmQ -bmT -bXA -bmU -bmU -bmU -bmU -bmU -bmU +fpL +xRN +his +his +his +his +his +his bmm bnT bml @@ -71895,11 +72087,11 @@ bCg aZF bmm bml -bmU -bmU -bmU -boD -bmU +his +his +his +rrq +his bmU bmU bmU @@ -72178,7 +72370,7 @@ aZF bmh bqQ bnn -bmU +his bmU bmU bmU @@ -75269,7 +75461,7 @@ bmU bmU bmU bmU -bmU +his bqP bCI bDy @@ -75551,7 +75743,7 @@ bmU bmU bmU bmU -bmU +his bCg bCg bCg @@ -75832,11 +76024,11 @@ bmT bmU boD bmU -bmU -bmU -bmU -bmU -bmU +his +his +his +his +his bmU bmU bmU @@ -75881,7 +76073,7 @@ aZF bmh bnT bmi -bmk +oNa bmU bmU bmU @@ -76115,11 +76307,11 @@ bnU boB bmh bml -bwK -bmU -bmU -bmU -bmU +lbr +his +his +his +his bmU boR bmU @@ -76161,9 +76353,9 @@ aZF aZF aZF bmQ -bmT -bmU -bmU +fpL +his +his bmU bmU bmU @@ -76397,11 +76589,11 @@ bnT bnT bmi bmQ -bmT -bXA -bmU -bmU -bmU +fpL +xRN +his +his +his bmU bmU bmU @@ -76443,10 +76635,10 @@ aZF aZF aZF bmQ -bmU -bmU -bmU -boD +his +his +his +rrq bmU bmU bmk @@ -76680,11 +76872,11 @@ aZF aZF bmm bml -bmT +fpL bmh bnT bml -bnU +vfI boB bmh bnT @@ -76725,11 +76917,11 @@ aZF aZF bmh bmi -bmU -bXA -bmU -bmU -bmU +his +xRN +his +his +his bmj bmh bwx @@ -77006,13 +77198,13 @@ aZF aZF aZF bmQ -bmU -bmU -bmU -bmU -bmU -bmU -bmk +his +his +his +his +his +his +oNa bmQ bmm bml @@ -77288,11 +77480,11 @@ aZF aZF aZF bmQ -bmU -bmU -bmU -bmU -bmU +his +his +his +his +his bWi bxe bmi @@ -77571,9 +77763,9 @@ aZF aZF bmm bml -bVN -bVQ -bVQ +lzx +qQj +qQj bWi bWp bxe @@ -77853,9 +78045,9 @@ aZF aZF aZF bmQ -bwK -bwK -bmU +lbr +lbr +his bWj bWj bwi @@ -78137,7 +78329,7 @@ aZF bmQ bwK bwK -bmU +his bwJ bWq bmU @@ -84392,13 +84584,13 @@ aaB aaC aaC aaQ -adz -adU +dhK +sEi acn -adj -adj -adj -adj +mte +mte +mte +mte adj adj adj @@ -84674,12 +84866,12 @@ aaC aaC aaP aaZ -adA -adj -adj -adj -adj -adj +wjk +mte +mte +mte +mte +mte adj aeA adj @@ -84955,12 +85147,12 @@ aae aaC aaC aaQ -adk -adA -adj +gLz +wjk +mte akR -adj -adj +mte +mte aaU adj adj @@ -85237,11 +85429,11 @@ aae aaC aaC aaQ -adk -adA -adj -adj -adj +gLz +wjk +mte +mte +mte aaU aeH aar @@ -85519,9 +85711,9 @@ aaf aar aaC aaQ -adk -adA -adj +gLz +wjk +mte aaU aaG abG @@ -85801,8 +85993,8 @@ aac aae aaC aaQ -adk -adA +gLz +wjk abZ acC acD @@ -86084,7 +86276,7 @@ aae aaC aaR abb -acR +vXl aaP abb acj @@ -92588,7 +92780,7 @@ aac aac aaB abc -aeB +kAz alF amb amb @@ -92869,8 +93061,8 @@ aab aac aae aaC -acQ -adj +mhl +mte alG alG amb @@ -92928,7 +93120,7 @@ awL awL awL awL -awL +xSV aca aba abb @@ -93150,10 +93342,10 @@ aaa aab aac aae -adk -acR -adj -alG +gLz +vXl +mte +wzD alG amb amb @@ -93210,9 +93402,9 @@ awL awL awL awL -awL -awL -auW +xSV +xSV +xwp aaQ acm aaf @@ -93433,9 +93625,9 @@ aab aac aae aaS -adj -adj -alG +mte +mte +wzD alE amb amb @@ -93491,10 +93683,10 @@ awL awL aJg awL -awL -awL +xSV +xSV aJG -awL +xSV aaQ acj acD @@ -93716,7 +93908,7 @@ aac aae abc akR -adj +mte alH amc alE @@ -93772,11 +93964,11 @@ awV aDt awL awL -awy -aDt -awL -awL -awL +eJQ +kKg +xSV +xSV +xSV aaQ aaC acm @@ -94054,11 +94246,11 @@ abb awV awf awf -awz -awV -aDt -awL -awL +mAe +vqV +kKg +xSV +xSV aaQ aaC acm @@ -94336,10 +94528,10 @@ aaR abn auW auW -auW -auW -aBb -awL +xwp +xwp +qGD +xSV aaP aaZ aaC @@ -94619,9 +94811,9 @@ aar aca aba abb -auW -awV -awM +xwp +vqV +oYp aaQ aaC aaC @@ -94902,8 +95094,8 @@ aar aaC aaR abn -auW -auW +xwp +xwp aaQ aaC aaC From 2c525d6d82bb9c394d4a50dee4181715b9aa91ce Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Thu, 19 Oct 2023 18:33:52 -0400 Subject: [PATCH 12/21] ice colony v2 2 --- .../map_files/Ice_Colony_v2/Ice_Colony_v2.dmm | 36 +++++++++---------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm index cf7d46b9b8dd..092210cc979f 100644 --- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm +++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm @@ -34146,10 +34146,6 @@ icon_state = "floor6" }, /area/ice_colony/exterior/underground/caves/dig) -"bXA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bXB" = ( /obj/structure/surface/rack, /turf/open/floor{ @@ -66421,9 +66417,9 @@ bqF bnk aZF bmQ -bmT -bmU -bmU +fpL +his +his bmU bmU bmU @@ -66704,10 +66700,10 @@ bnk aZF bmm bml -bXA -bmU -bmU -bmU +xRN +his +his +his bmU buX bxD @@ -66986,11 +66982,11 @@ bnk aZF aZF bmQ -bnU -boB -bmU -bmU -bmU +vfI +pYT +his +his +his buX bxD byc @@ -67270,9 +67266,9 @@ bnk bnk bnT bml -bmU -bmU -bmT +his +his +fpL bqP bxE byc @@ -67553,7 +67549,7 @@ bnk aZF bmm bml -bmT +fpL boS bqP bxF From c50649488c2685c57baeaf942e7c64499dc45ec2 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Thu, 19 Oct 2023 18:52:26 -0400 Subject: [PATCH 13/21] corsat 2 --- maps/map_files/CORSAT/Corsat.dmm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index acfe5eb048a7..dea0dc6f3fae 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -64701,6 +64701,13 @@ icon_state = "purplewhitecorner" }, /area/corsat/theta/biodome/hydroeast) +"xGe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/corsat/sigma/biodome) "xGI" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -105260,9 +105267,9 @@ fbe bhc bhc bhn -aOC +xGe aPl -aOC +xGe bhn bhn bhn From c3228d572d3e2a0d20cee359f03955f1e4b207f7 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Sun, 22 Oct 2023 14:43:34 -0400 Subject: [PATCH 14/21] bigred --- maps/map_files/BigRed/BigRed.dmm | 203 ++++++++++++++----------------- 1 file changed, 88 insertions(+), 115 deletions(-) diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index 6c33ddac90ef..f927ba185de3 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -4057,23 +4057,23 @@ /area/bigredv2/caves/lambda/xenobiology) "alL" = ( /obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 9 }, /area/bigredv2/caves/lambda/xenobiology) "alM" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 1 }, /area/bigredv2/caves/lambda/xenobiology) "alN" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 1 }, /area/bigredv2/caves/lambda/xenobiology) "alO" = ( @@ -4393,19 +4393,20 @@ /turf/open/floor/plating, /area/bigredv2/outside/dorms) "amJ" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 10 }, /area/bigredv2/caves/lambda/xenobiology) "amK" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ +/turf/open/floor/plating/tunnelable{ icon_state = "warnplate" }, /area/bigredv2/caves/lambda/xenobiology) "amL" = ( -/turf/open/floor/plating{ +/turf/open/floor/plating/tunnelable{ icon_state = "warnplate" }, /area/bigredv2/caves/lambda/xenobiology) @@ -4772,9 +4773,9 @@ /area/bigredv2/caves/lambda/xenobiology) "anO" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 9 }, /area/bigredv2/caves/lambda/xenobiology) "anP" = ( @@ -4783,16 +4784,16 @@ }, /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 1 }, /area/bigredv2/caves/lambda/xenobiology) "anQ" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 1 }, /area/bigredv2/caves/lambda/xenobiology) "anR" = ( @@ -5052,9 +5053,9 @@ /area/bigredv2/outside/dorms) "aoG" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 10 }, /area/bigredv2/caves/lambda/xenobiology) "aoH" = ( @@ -21233,16 +21234,12 @@ /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating, /area/bigredv2/outside/c) "bhU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/mars{ + icon_state = "mars_dirt_12" }, /area/bigredv2/outside/c) "bhX" = ( @@ -23991,13 +23988,6 @@ icon_state = "mars_cave_19" }, /area/bigredv2/caves_sw) -"buB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) "buJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -25936,7 +25926,6 @@ /area/bigredv2/caves/eta/research) "bBC" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/jungle{ bushes_spawn = 0; icon_state = "grass_impenetrable" @@ -26304,10 +26293,6 @@ icon_state = "darkred2" }, /area/bigredv2/caves/eta/research) -"bCJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars, -/area/bigredv2/caves/eta/research) "bCK" = ( /obj/structure/machinery/light{ dir = 4 @@ -26499,7 +26484,6 @@ dir = 4 }, /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/jungle{ bushes_spawn = 0; icon_state = "grass_impenetrable" @@ -26827,7 +26811,6 @@ /area/bigredv2/caves/eta/xenobiology) "bEg" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars{ icon_state = "mars_dirt_10" }, @@ -26936,13 +26919,6 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"bEx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/bigredv2/caves/eta/living) "bEy" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor{ @@ -27485,13 +27461,6 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor, /area/bigredv2/outside/engineering) -"cvi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) "cwk" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor, @@ -27881,6 +27850,10 @@ /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"dvp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/turf/open/mars, +/area/bigredv2/outside/ne) "dvB" = ( /obj/item/ore/coal{ pixel_x = 9; @@ -28135,14 +28108,6 @@ icon_state = "mars_cave_15" }, /area/bigredv2/caves/mining) -"dPs" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/bigredv2/caves/eta/xenobiology) "dPC" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -28152,6 +28117,11 @@ icon_state = "mars_cave_23" }, /area/bigredv2/caves/mining) +"dQh" = ( +/turf/open/mars{ + icon_state = "mars_dirt_2" + }, +/area/bigredv2/outside/c) "dQF" = ( /obj/effect/spawner/random/tool, /turf/open/mars_cave{ @@ -29180,6 +29150,9 @@ icon_state = "mars_cave_10" }, /area/bigredv2/outside/lz2_west_cas) +"fTf" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/c) "fUk" = ( /obj/structure/surface/table, /obj/item/clothing/head/hardhat, @@ -29251,10 +29224,6 @@ "gda" = ( /turf/open/mars_cave, /area/bigredv2/outside/lz1_telecomm_cas) -"gdN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) "geC" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_6" @@ -31313,6 +31282,11 @@ icon_state = "mars_cave_7" }, /area/bigredv2/outside/filtration_cave_cas) +"koP" = ( +/turf/open/mars{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/c) "kpf" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves_lambda) @@ -31518,6 +31492,10 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_research) +"kOl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/turf/open/mars, +/area/bigredv2/outside/n) "kPu" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -33071,9 +33049,14 @@ pixel_y = 8 }, /obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/item/pipe{ + pixel_x = 8; + pixel_y = -4; + layer = 2.75; + name = "loose pipe"; + desc = "A pipe disconnected from the rest of the system. Seems it was abandoned during repair." }, +/turf/open/floor/plating/tunnelable, /area/bigredv2/outside/dorms) "opz" = ( /obj/effect/landmark/crap_item, @@ -34514,12 +34497,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"rqa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) "rqv" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -34684,9 +34661,8 @@ /area/bigredv2/outside/filtration_plant) "rHD" = ( /obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/mars{ + icon_state = "mars_dirt_9" }, /area/bigredv2/outside/c) "rIl" = ( @@ -35731,13 +35707,6 @@ icon_state = "wood" }, /area/bigredv2/caves/eta/living) -"tAW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/ne) "tBb" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -35985,6 +35954,10 @@ /obj/item/pizzabox, /turf/open/floor, /area/bigredv2/outside/engineering) +"tUb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) "tUL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/hefa_cult_decals/d32, @@ -56055,7 +56028,7 @@ aao aao aao alF -buB +ahS acp afl afR @@ -56271,7 +56244,7 @@ aao aao aao aao -acP +kOl asc acp afm @@ -58163,7 +58136,7 @@ bCx aCe dyv bDk -dyv +tUb aCe dyv bDk @@ -58382,7 +58355,7 @@ dyv dyv dyv aCe -gdN +dyv dyv dyv aCe @@ -58807,7 +58780,7 @@ aKi bBK aCH bCc -cvi +qTC bCy eHA bCM @@ -60335,7 +60308,7 @@ bDe fWw fWw aCe -dPs +bDe fWw fWw aCe @@ -60773,7 +60746,7 @@ fWw cxi fWw aCe -dPs +bDe cxi bDe aCe @@ -61862,7 +61835,7 @@ knN aDv xfW pbs -bEx +xfW xfW aDv bEK @@ -62862,7 +62835,7 @@ asv asv aHF aHF -aHF +fTf asv awf awf @@ -63078,8 +63051,8 @@ bfe bgI asv aHF -aHF -aHF +fTf +koP asv bjJ bgx @@ -63294,9 +63267,9 @@ bgd bgd aLf asH -aHF -aHF -aHF +fTf +fTf +koP asv beI bgx @@ -63512,8 +63485,8 @@ bgs bfM avr bhT -aHF -aHF +koP +koP asv beI bgx @@ -63728,9 +63701,9 @@ bgc bgc bgK asH -aHF -aHF -aHF +koP +dQh +aWJ asv bjK aZF @@ -63946,7 +63919,7 @@ bgt bgL asv bhU -aHF +aKt rHD asv bjL @@ -65102,7 +65075,7 @@ bBp aBv bvP bCE -bCJ +bvP bvP bvP aBv @@ -69960,7 +69933,7 @@ aao aao aao aao -tAW +aqa aqa aqa aqa @@ -70180,7 +70153,7 @@ aao aao aao aao -arD +dvp asm arD arD @@ -77549,7 +77522,7 @@ aao aao adZ aeE -rqa +alc alR alc alc From d30a800bc363dc7fe1fe7219bc8a37bd0e194024 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Sun, 22 Oct 2023 15:13:06 -0400 Subject: [PATCH 15/21] How did I forget nightmare inserts --- .../standalone/crashlanding-offices.dmm | 450 +++++------------- 1 file changed, 122 insertions(+), 328 deletions(-) diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm index 48095ca2d3ce..82cddc00a1be 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm @@ -1,74 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"ac" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"ad" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/c) -"ae" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"ag" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/e) -"ah" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"ai" = ( -/turf/open/mars, -/area/bigredv2/outside/e) -"aj" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/e) -"ak" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"al" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"am" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/e) -"an" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/c) -"ao" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "ap" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/office_complex) @@ -94,18 +24,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"at" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/e) -"au" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "av" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/plating{ @@ -146,19 +64,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/outside/office_complex) -"aA" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) "aC" = ( /turf/closed/shuttle/ert{ icon_state = "wy20" @@ -179,18 +84,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/outside/office_complex) -"aG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "aI" = ( /obj/structure/machinery/robotic_fabricator, /turf/open/floor{ @@ -433,13 +326,6 @@ icon_state = "white" }, /area/bigredv2/outside/office_complex) -"bx" = ( -/obj/item/shard, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) "by" = ( /obj/structure/girder, /turf/open/floor{ @@ -552,11 +438,8 @@ /area/bigredv2/outside/office_complex) "bR" = ( /obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) +/turf/template_noop, +/area/template_noop) "bS" = ( /obj/structure/bed/chair{ dir = 1 @@ -946,27 +829,8 @@ }, /area/bigredv2/outside/office_complex) "cX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"cY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"cZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) +/turf/template_noop, +/area/template_noop) "da" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris, @@ -1056,17 +920,6 @@ icon_state = "wy3" }, /area/bigredv2/outside/se) -"dp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"dq" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) "dr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -1075,42 +928,6 @@ icon_state = "redcorner" }, /area/bigredv2/outside/office_complex) -"ds" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/se) -"dt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/se) -"du" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/se) -"dv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/se) -"dw" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"dx" = ( -/obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) "dz" = ( /obj/effect/spawner/gibspawner/human, /turf/open/shuttle/dropship{ @@ -1284,20 +1101,10 @@ icon_state = "platingdmg1" }, /area/bigredv2/outside/office_complex) -"dW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) "dX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) +/turf/template_noop, +/area/template_noop) "dY" = ( /obj/item/stack/sheet/metal, /turf/open/floor{ @@ -1359,11 +1166,8 @@ /area/bigredv2/outside/office_complex) "eg" = ( /obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) +/turf/template_noop, +/area/template_noop) "eh" = ( /obj/item/device/multitool, /turf/open/floor{ @@ -1559,6 +1363,9 @@ icon_state = "rasputin3" }, /area/bigredv2/outside/office_complex) +"DN" = ( +/turf/template_noop, +/area/bigredv2/outside/office_complex) "EE" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 @@ -1577,13 +1384,6 @@ icon_state = "rasputin3" }, /area/bigredv2/outside/office_complex) -"Ha" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/se) "Lk" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 @@ -1602,12 +1402,6 @@ icon_state = "rasputin15" }, /area/bigredv2/outside/office_complex) -"PR" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/se) "Qc" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 @@ -1634,25 +1428,25 @@ /area/bigredv2/outside/office_complex) (1,1,1) = {" -ac -ad -ao -aH -aH -aH -aH +cX +cX +cX +cX +cX +cX +cX bR -aH -aH -aH -aH -aH -aH -aH +cX +cX +cX +cX +cX +cX +cX bR -aH +cX eg -aH +cX cX cX cX @@ -1661,9 +1455,9 @@ cX cX "} (2,1,1) = {" -ac -ad -ah +cX +cX +cX ap ap ap @@ -1685,12 +1479,12 @@ ap cX cX cX -ap +DN "} (3,1,1) = {" -ac -ad -ah +cX +cX +cX ap aI aR @@ -1712,12 +1506,12 @@ ap cX cX cX -ap +DN "} (4,1,1) = {" -ac -ad -au +cX +cX +cX as aJ aR @@ -1739,12 +1533,12 @@ as cX cX cX -ap +DN "} (5,1,1) = {" -ac -ad -ah +cX +cX +cX as aK bB @@ -1763,15 +1557,15 @@ cs ek cm cR -cY cX cX -ap +cX +DN "} (6,1,1) = {" -ac -ad -ah +cX +cX +cX as aL aR @@ -1793,12 +1587,12 @@ as cX cX cX -ap +DN "} (7,1,1) = {" -ac -ad -ah +cX +cX +cX ap aJ aR @@ -1817,15 +1611,15 @@ aS cr cr ap -cZ cX -aB -ap +cX +cX +DN "} (8,1,1) = {" -ac -ad -ah +cX +cX +cX ap aM aS @@ -1850,9 +1644,9 @@ ap ap "} (9,1,1) = {" -ac -ad -ah +cX +cX +cX ap ap ap @@ -1877,9 +1671,9 @@ dl dr "} (10,1,1) = {" -ac -an -ah +cX +cX +cX cX cX ap @@ -1904,8 +1698,8 @@ bu ar "} (11,1,1) = {" -aH -aH +cX +cX cX cX cX @@ -1955,7 +1749,7 @@ id yS cE dm -dW +cX "} (13,1,1) = {" cX @@ -1982,10 +1776,10 @@ bc dz bc dn -dt +cX "} (14,1,1) = {" -ae +cX aq aw aC @@ -2009,7 +1803,7 @@ bv dT cF do -ds +cX "} (15,1,1) = {" cX @@ -2035,11 +1829,11 @@ bc bc bc dh -dp -du +cX +cX "} (16,1,1) = {" -aA +cX ba bb aE @@ -2063,10 +1857,10 @@ dS NK cE dm -dv +cX "} (17,1,1) = {" -aA +cX ap az bu @@ -2090,10 +1884,10 @@ dJ dJ dJ dn -dw +cX "} (18,1,1) = {" -aA +cX ap ap ap @@ -2117,14 +1911,14 @@ fv bp cF do -dq +cX "} (19,1,1) = {" -ab -al -aG -aG -aG +cX +cX +cX +cX +cX dY aN fv @@ -2143,13 +1937,13 @@ cN cN cN di -Ha -dq +cX +cX "} (20,1,1) = {" -aj -ag -aA +cX +cX +cX dX dX dZ @@ -2170,14 +1964,14 @@ cO cU dd dj -Ha -PR +cX +cX "} (21,1,1) = {" -ak -ak -aA -aG +cX +cX +cX +cX dX dZ dO @@ -2197,14 +1991,14 @@ dK bd aS dj -Ha -PR +cX +cX "} (22,1,1) = {" -al -al -aA -aG +cX +cX +cX +cX dX ap by @@ -2224,15 +2018,15 @@ bE dU aS by -Ha -PR +cX +cX "} (23,1,1) = {" -am -ag -aA -aG -aG +cX +cX +cX +cX +cX ap bQ aS @@ -2251,15 +2045,15 @@ cP bE bd dk -Ha -dq +cX +cX "} (24,1,1) = {" -ai -at -aA -aG -aG +cX +cX +cX +cX +cX bN bf bs @@ -2278,15 +2072,15 @@ el em cA be -Ha -dq +cX +cX "} (25,1,1) = {" -ai -at -aA -aG -bx +cX +cX +cX +cX +bR ap ap ap @@ -2305,6 +2099,6 @@ cA cW de ap -PR -dx +cX +cX "} From bd829c2c70178e031e7de36bdd35bcc12b1f1de8 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 25 Oct 2023 18:48:08 -0400 Subject: [PATCH 16/21] big red 3 --- .../map_files/BigRed/sprinkles/5.eta_carp.dmm | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm index c29681e40bf4..b20ee04855d3 100644 --- a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm +++ b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm @@ -129,10 +129,6 @@ icon_state = "darkredcorners2" }, /area/bigredv2/caves/eta/xenobiology) -"w" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) "x" = ( /obj/item/toy/farwadoll, /turf/open/ice, @@ -167,7 +163,6 @@ /area/bigredv2/caves/eta/xenobiology) "C" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars{ icon_state = "mars_dirt_10" }, @@ -197,6 +192,13 @@ icon_state = "mars_cave_7" }, /area/bigredv2/caves/eta/xenobiology) +"I" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) "O" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -205,6 +207,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) +"W" = ( +/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) "X" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) @@ -227,8 +233,8 @@ b (2,1,1) = {" b g -p -h +I +W b h p @@ -245,7 +251,7 @@ h g g b -w +g g g b From e70a482d74f23db72294b388eca7efdce051d900 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 25 Oct 2023 19:10:07 -0400 Subject: [PATCH 17/21] corsat 3 --- .../map_files/CORSAT/standalone/sigma_ice.dmm | 100 ++++++++++++------ 1 file changed, 70 insertions(+), 30 deletions(-) diff --git a/maps/map_files/CORSAT/standalone/sigma_ice.dmm b/maps/map_files/CORSAT/standalone/sigma_ice.dmm index da51bd8ded8d..bca822c0b739 100644 --- a/maps/map_files/CORSAT/standalone/sigma_ice.dmm +++ b/maps/map_files/CORSAT/standalone/sigma_ice.dmm @@ -12,6 +12,10 @@ /obj/structure/cargo_container/arious/right, /turf/open/ice, /area/corsat/sigma/biodome/scrapyard) +"aC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/auto_turf/snow, +/area/corsat/sigma/biodome/ice) "aI" = ( /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer2, @@ -492,6 +496,11 @@ icon_state = "asteroidfloor" }, /area/corsat/sigma/biodome/ice) +"jr" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/auto_turf/snow, +/area/corsat/sigma/biodome/ice) "jv" = ( /turf/open/floor{ dir = 1; @@ -608,7 +617,8 @@ /turf/open/auto_turf/snow/layer0, /area/corsat/sigma/biodome/ice) "lr" = ( -/turf/closed/wall/resin/membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/auto_turf/snow, /area/corsat/sigma/biodome/ice) "lw" = ( /turf/closed/wall/r_wall, @@ -621,7 +631,7 @@ /area/corsat/sigma/biodome/ice) "lN" = ( /obj/effect/landmark/structure_spawner/setup/distress/tunnel, -/turf/open/ice, +/turf/open/auto_turf/snow, /area/corsat/sigma/biodome/ice) "lP" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -796,6 +806,10 @@ icon_state = "red" }, /area/corsat/sigma/airlock/control) +"pF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) "pP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -813,6 +827,10 @@ icon_state = "squares" }, /area/corsat/sigma/airlock/control) +"qh" = ( +/obj/structure/bed/nest, +/turf/open/auto_turf/snow, +/area/corsat/sigma/biodome/ice) "qs" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -822,6 +840,9 @@ "qC" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/inaccessible) +"qL" = ( +/turf/open/auto_turf/snow, +/area/corsat/sigma/biodome/ice) "qN" = ( /obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/corsat, @@ -1637,6 +1658,11 @@ icon_state = "yellow" }, /area/corsat/sigma/airlock/control) +"Eo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow, +/area/corsat/sigma/biodome/ice) "Ev" = ( /obj/structure/largecrate/supply/ammo/m41a{ desc = "An ammunition case containing 10 M41A magazines."; @@ -1787,6 +1813,11 @@ icon_state = "squares" }, /area/corsat/sigma/airlock/control) +"GT" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/auto_turf/snow, +/area/corsat/sigma/biodome/ice) "GW" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, @@ -2109,6 +2140,10 @@ icon_state = "squares" }, /area/corsat/sigma/airlock/control) +"MB" = ( +/obj/effect/alien/weeds/node, +/turf/open/auto_turf/snow, +/area/corsat/sigma/biodome/ice) "ME" = ( /turf/open/floor/corsat{ dir = 1; @@ -2344,6 +2379,11 @@ /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/snow/layer2, /area/corsat/sigma/biodome/scrapyard) +"QM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/ice, +/area/corsat/sigma/biodome/ice) "QN" = ( /obj/structure/target, /obj/item/clothing/suit/storage/militia, @@ -5135,13 +5175,13 @@ Wk Wk Wk gr -lr +pF Zr Zr YN Zr Zr -lr +pF gr Wk Wk @@ -5223,7 +5263,7 @@ YN Zr io fc -gr +qh Wk Wk Wk @@ -5297,14 +5337,14 @@ Wk Wk Wk gx -lr +pF Zr io YN Zr Zr -lr -nI +pF +jr Wk Wk Wk @@ -5377,8 +5417,8 @@ Wk Wk Wk gr -lr -lr +pF +pF Zr Zr YN @@ -5458,7 +5498,7 @@ Wk Wk nI fc -lr +pF Zr Zr Zr @@ -5466,7 +5506,7 @@ kV lB Zr lr -gr +qh Wk Wk Wk @@ -5537,7 +5577,7 @@ Zr Wk Wk Wk -lr +pF io pe Sl @@ -5545,9 +5585,9 @@ Sl Sl pP Zr -Zr -fc -gx +qL +aC +GT Wk Wk Wk @@ -5618,17 +5658,17 @@ Zr Wk Wk gr -lr +pF Zr YN Zr io Zr Zr -Zr -io +qL +MB lr -gr +qh Wk Wk Wk @@ -5704,10 +5744,10 @@ Zr YN Zr Zr -Zr -Zr -Zr -Zr +qL +qL +qL +qL Wk Wk Wk @@ -5784,11 +5824,11 @@ fc Zr YN Zr -Zr +qL Wk -dS -fc -dS +Eo +aC +Eo Wk Wk Wk @@ -5860,8 +5900,8 @@ Zr Zr Zr Wk -dS -dS +QM +QM fc gP fc From 006674fb1c6cdaf93edce0c1b01b5895b037547e Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 25 Oct 2023 21:15:16 -0400 Subject: [PATCH 18/21] faction --- .../structure_spawners/setup_distress.dm | 53 +- maps/map_files/BigRed/BigRed.dmm | 524 +++++++------- .../BigRed/sprinkles/20.etatunnel_open.dmm | 12 +- .../sprinkles/30.cave-north_lambdapath.dmm | 8 +- .../sprinkles/5+gruesome_medicaleast.dmm | 2 +- .../map_files/BigRed/sprinkles/5.eta_carp.dmm | 8 +- .../standalone/lambda-cave_extratunnel.dmm | 12 +- .../standalone/lambda-cave_mushroom.dmm | 2 +- maps/map_files/CORSAT/Corsat.dmm | 94 +-- .../map_files/CORSAT/standalone/sigma_ice.dmm | 12 +- maps/map_files/DesertDam/Desert_Dam.dmm | 336 ++++----- .../sprinkles/10.damtemple_intact.dmm | 6 +- .../FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 6 +- .../map_files/Ice_Colony_v2/Ice_Colony_v2.dmm | 20 +- .../Ice_Colony_v3/Shivas_Snowball.dmm | 36 +- maps/map_files/Kutjevo/Kutjevo.dmm | 116 ++-- .../LV522_Chances_Claim.dmm | 644 +++++++++--------- maps/map_files/LV624/LV624.dmm | 220 +++--- maps/map_files/LV624/centralcaves/10.T.dmm | 20 +- maps/map_files/LV624/centralcaves/10.qc.dmm | 14 +- maps/map_files/LV624/maintemple/1.intact.dmm | 4 +- maps/map_files/LV624/maintemple/2.flooded.dmm | 4 +- maps/map_files/LV624/standalone/clfship.dmm | 6 +- .../LV624/standalone/sandtemple-jungle.dmm | 4 +- .../LV624/standalone/sandtemple-se.dmm | 2 +- maps/map_files/New_Varadero/New_Varadero.dmm | 148 ++-- .../Sorokyne_Strata/Sorokyne_Strata.dmm | 180 ++--- 27 files changed, 1261 insertions(+), 1232 deletions(-) diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index c167d54c84bc..961bfadc9491 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -3,43 +3,69 @@ name = "abstract distress spawner" mode_flags = MODE_INFESTATION -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall +/obj/effect/landmark/structure_spawner/setup/distress/xeno + name = "abstract distress Xeno effects spawner" + var/hive_faction = XENO_HIVE_NORMAL + +///Sets the new item to the correct xeno faction +/obj/effect/landmark/structure_spawner/setup/distress/xeno/proc/set_hive_faction(xeno_item) + return + +/obj/effect/landmark/structure_spawner/setup/distress/xeno/apply(atom/target_location) + var/atom/xeno_item = ..() + if(!istypestrict(xeno_item, path_to_spawn)) + return + set_hive_faction(xeno_item) + +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall name = "Distress Xeno wall spawner" icon_state = "wall" path_to_spawn = /turf/closed/wall/resin is_turf = TRUE -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall/thick +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall/set_hive_faction(turf/closed/wall/resin/resin_wall) + resin_wall.hivenumber = hive_faction + +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall/thick name = "Distress Xeno thick wall spawner" path_to_spawn = /turf/closed/wall/resin/thick -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane name = "Distress Xeno membrane spawner" icon_state = "membrane" path_to_spawn = /turf/closed/wall/resin/membrane is_turf = TRUE -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane/thick +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane/set_hive_faction(turf/closed/wall/resin/membrane/resin_membrane) + resin_membrane.hivenumber = hive_faction + +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane/thick name = "Distress Xeno thick membrane spawner" path_to_spawn = /turf/closed/wall/resin/membrane/thick -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door name = "Distress Xeno door spawner" icon_state = "door" path_to_spawn = /obj/structure/mineral_door/resin -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door/thick +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door/set_hive_faction(obj/structure/mineral_door/resin/resin_door) + resin_door.hivenumber = hive_faction + +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door/thick name = "Distress Xeno thick door spawner" path_to_spawn = /obj/structure/mineral_door/resin/thick -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node name = "Distress Xeno weed node spawner" icon_state = "weednode" path_to_spawn = /obj/effect/alien/weeds/node ///The minimum is_weedable required for the weeds to be planted normally var/weed_strength_required = FULLY_WEEDABLE -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/Initialize(mapload, ...) +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node/set_hive_faction(obj/effect/alien/weeds/node/weed_node) + weed_node.hivenumber = hive_faction + +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node/Initialize(mapload, ...) . = ..() if(!is_admin_level(z) && !is_ground_level(z) && !is_mainship_level(z) && !is_reserved_level(z)) //Is it a real area? for the create and destroy unit tests return @@ -48,17 +74,20 @@ return stack_trace("[src] at [x],[y],[z] is on a turf where weeds cannot normally grow.") -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node/hardy +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node/hardy name = "Distress Xeno hardy node spawner" path_to_spawn = /obj/effect/alien/weeds/node/hardy weed_strength_required = SEMI_WEEDABLE -/obj/effect/landmark/structure_spawner/setup/distress/tunnel +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel name = "Distress Xeno tunnel spawner" icon_state = "xeno_tunnel" path_to_spawn = /obj/structure/tunnel -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/Initialize(mapload, ...) +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/set_hive_faction(obj/structure/tunnel/tunnel) + tunnel.hivenumber = hive_faction + +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/Initialize(mapload, ...) . = ..() if(!is_admin_level(z) && !is_ground_level(z) && !is_mainship_level(z) && !is_reserved_level(z)) //Is it a real area? for the create and destroy unit tests return @@ -67,6 +96,6 @@ return stack_trace("[src] at [x],[y],[z] is on a turf where tunnels cannot normally be built.") -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance name = "Distress Xeno maintenance tunnel spawner" path_to_spawn = /obj/structure/tunnel/maint_tunnel diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index f927ba185de3..d6480bfbd35e 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -1657,7 +1657,7 @@ }, /area/bigredv2/caves/lambda/xenobiology) "aeU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) "aeV" = ( @@ -1679,7 +1679,7 @@ }, /area/bigredv2/caves/lambda/xenobiology) "aeY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating{ dir = 8; icon_state = "platingdmg2" @@ -1922,7 +1922,7 @@ }, /area/bigredv2/caves/lambda/xenobiology) "afH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) @@ -2035,13 +2035,13 @@ /area/bigredv2/outside/marshal_office) "afY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_10" }, /area/bigredv2/caves/lambda/xenobiology) "afZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_18" }, @@ -2102,7 +2102,7 @@ /area/bigredv2/caves/lambda/xenobiology) "agh" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -2115,7 +2115,7 @@ }, /area/bigredv2/caves/lambda/xenobiology) "agj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -2329,7 +2329,7 @@ /obj/item/shard{ icon_state = "small" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -2424,7 +2424,7 @@ }, /area/bigredv2/caves/lambda/xenobiology) "ahb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "white" }, @@ -2551,21 +2551,21 @@ /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) "ahw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves_lambda) "ahx" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves_lambda) "ahy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_11" }, @@ -2611,7 +2611,7 @@ pixel_y = -32 }, /obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkpurple2" }, @@ -2814,7 +2814,7 @@ /area/bigredv2/outside/marshal_office) "aij" = ( /obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -2877,7 +2877,7 @@ /area/bigredv2/caves/lambda/xenobiology) "air" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -3068,7 +3068,7 @@ /area/bigredv2/caves/lambda/xenobiology) "aiS" = ( /obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -3245,7 +3245,7 @@ /area/bigredv2/caves/lambda/xenobiology) "ajs" = ( /obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -3278,7 +3278,7 @@ pixel_x = 30 }, /obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "white" }, @@ -3847,7 +3847,7 @@ /area/bigredv2/caves/lambda/xenobiology) "ale" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 8; icon_state = "darkpurple2" @@ -3866,7 +3866,7 @@ /area/bigredv2/caves/lambda/xenobiology) "alh" = ( /obj/item/tool/hatchet, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "whitegreenfull" }, @@ -4052,7 +4052,7 @@ /area/bigredv2/caves_north) "alK" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) "alL" = ( @@ -4064,7 +4064,7 @@ /area/bigredv2/caves/lambda/xenobiology) "alM" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating/tunnelable{ icon_state = "warnplate"; dir = 1 @@ -4077,9 +4077,9 @@ }, /area/bigredv2/caves/lambda/xenobiology) "alO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating{ dir = 5; icon_state = "warnplate" @@ -4093,7 +4093,7 @@ /area/bigredv2/caves/lambda/xenobiology) "alQ" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "whitepurplefull" }, @@ -4381,7 +4381,7 @@ /area/bigredv2/caves_lambda) "amH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) "amI" = ( @@ -4393,7 +4393,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/dorms) "amJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/plating/tunnelable{ icon_state = "warnplate"; dir = 10 @@ -4595,7 +4595,7 @@ }, /area/bigredv2/outside/marshal_office) "anj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave, /area/bigredv2/caves_lambda) "ank" = ( @@ -4768,7 +4768,7 @@ /area/bigredv2/caves/lambda/xenobiology) "anN" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) "anO" = ( @@ -4783,7 +4783,7 @@ dir = 1 }, /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating/tunnelable{ icon_state = "warnplate"; dir = 1 @@ -4871,7 +4871,7 @@ /area/bigredv2/outside/library) "aod" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "whitegreenfull" }, @@ -5087,7 +5087,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "darkpurple2" @@ -6731,7 +6731,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/corpsespawner/pmc, /turf/open/floor{ icon_state = "darkpurple2" @@ -7173,7 +7173,7 @@ dir = 1 }, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -7234,7 +7234,7 @@ /area/bigredv2/caves/lambda/breakroom) "aux" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/window/reinforced{ dir = 8 }, @@ -7456,7 +7456,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -7494,7 +7494,7 @@ dir = 4 }, /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "darkpurple2" @@ -7555,7 +7555,7 @@ pixel_x = 8; pixel_y = -32 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "darkpurplecorners2" @@ -7720,7 +7720,7 @@ /area/bigredv2/caves/lambda/breakroom) "avN" = ( /obj/structure/bed/chair, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) "avO" = ( @@ -8257,7 +8257,7 @@ /obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) "axp" = ( @@ -8476,12 +8476,12 @@ /area/bigredv2/outside/general_offices) "axT" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) "axU" = ( /obj/item/tool/pickaxe/drill, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -8921,7 +8921,7 @@ /area/bigredv2/outside/general_offices) "azf" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_18" }, @@ -8973,7 +8973,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave, /area/bigredv2/caves/lambda/research) "azm" = ( @@ -9578,7 +9578,7 @@ dir = 9; id = "anomalybelt" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -9592,7 +9592,7 @@ }, /area/bigredv2/caves/lambda/research) "aAY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "podhatchfloor" }, @@ -9784,7 +9784,7 @@ /area/bigredv2/caves/eta/storage) "aBz" = ( /obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_7" }, @@ -10050,7 +10050,7 @@ /area/bigredv2/outside/hydroponics) "aCq" = ( /obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/engine, /area/bigredv2/caves/lambda/research) "aCr" = ( @@ -10097,7 +10097,7 @@ }, /area/bigredv2/caves/lambda/research) "aCw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 8; icon_state = "darkpurple2" @@ -10386,7 +10386,7 @@ /area/bigredv2/caves/eta/xenobiology) "aDk" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "whitepurplecorner" }, @@ -10794,7 +10794,7 @@ /area/bigredv2/caves/lambda/research) "aEn" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "whitepurplefull" }, @@ -10827,7 +10827,7 @@ /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) "aEt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "purple" @@ -11109,7 +11109,7 @@ /area/bigredv2/caves/lambda/research) "aFj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ dir = 8; icon_state = "darkpurple2" @@ -11124,7 +11124,7 @@ pixel_x = 32 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ dir = 4; icon_state = "darkpurple2" @@ -11152,7 +11152,7 @@ /area/bigredv2/caves/lambda/research) "aFn" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -11533,7 +11533,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "whitegreencorner" @@ -12415,7 +12415,7 @@ }, /area/bigredv2/caves/lambda/research) "aIL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "darkpurple2" @@ -12423,7 +12423,7 @@ /area/bigredv2/caves/lambda/research) "aIM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ dir = 1; icon_state = "darkpurple2" @@ -12437,7 +12437,7 @@ /area/bigredv2/caves/lambda/research) "aIO" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, @@ -12461,9 +12461,9 @@ /area/bigredv2/caves/lambda/research) "aIR" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/bluegrid{ icon_state = "damaged4" }, @@ -12486,7 +12486,7 @@ "aIU" = ( /obj/structure/pipes/vents/scrubber/on, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "darkpurple2" @@ -12551,7 +12551,7 @@ dir = 8 }, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 9; icon_state = "darkgreen2" @@ -12570,14 +12570,14 @@ /area/bigredv2/outside/admin_building) "aJc" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkish" }, /area/bigredv2/caves/lambda/virology) "aJd" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "darkgreencorners2" @@ -12787,7 +12787,7 @@ /area/bigredv2/caves/lambda/research) "aJF" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkpurple2" }, @@ -12799,7 +12799,7 @@ /area/bigredv2/caves/lambda/research) "aJH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "darkpurple2" }, @@ -12826,7 +12826,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "darkpurple2" }, @@ -12913,7 +12913,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "white" }, @@ -12989,7 +12989,7 @@ dir = 8 }, /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkish" }, @@ -13013,7 +13013,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "whitegreen" @@ -13263,7 +13263,7 @@ dir = 1; pixel_y = -30 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 10; icon_state = "whitegreen" @@ -13805,7 +13805,7 @@ /area/bigredv2/caves/lambda/research) "aMt" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/bluegrid, /area/bigredv2/caves/lambda/research) "aMu" = ( @@ -13849,7 +13849,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor{ icon_state = "whitegreen" @@ -14011,7 +14011,7 @@ /area/bigredv2/caves_lambda) "aMW" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/bluegrid{ icon_state = "bcircuitoff" }, @@ -14045,7 +14045,7 @@ /area/bigredv2/outside/virology) "aNb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "white" }, @@ -14561,7 +14561,7 @@ /area/bigredv2/outside/virology) "aOt" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -14955,7 +14955,7 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "whitegreenfull" }, @@ -15376,7 +15376,7 @@ }, /area/bigredv2/caves/lambda/research) "aQw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 5; icon_state = "podhatch" @@ -15759,7 +15759,7 @@ /area/bigredv2/outside/lambda_cave_cas) "aRw" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_6" }, @@ -15838,7 +15838,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/virology) "aRF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "white" }, @@ -16046,7 +16046,7 @@ /area/bigredv2/outside/lambda_cave_cas) "aSk" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_8" }, @@ -16067,7 +16067,7 @@ }, /area/bigredv2/caves_lambda) "aSn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_6" }, @@ -16557,7 +16557,7 @@ /area/bigredv2/caves_lambda) "aTz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ dir = 1; icon_state = "asteroidwarning" @@ -16936,7 +16936,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "asteroidwarning" }, @@ -16999,7 +16999,7 @@ /obj/structure/bed, /obj/item/bedsheet/medical, /obj/effect/landmark/objective_landmark/science, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 6; icon_state = "whitegreen" @@ -17021,7 +17021,7 @@ /area/bigredv2/outside/virology) "aUP" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "white" }, @@ -17521,7 +17521,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "white" }, @@ -17704,9 +17704,9 @@ }, /area/bigredv2/outside/e) "aWN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -17929,7 +17929,7 @@ }, /area/bigredv2/outside/virology) "aXy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -18417,7 +18417,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "white" }, @@ -18907,7 +18907,7 @@ }, /area/bigredv2/outside/office_complex) "baN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_10" }, @@ -20057,7 +20057,7 @@ /area/bigredv2/outside/se) "bet" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -21101,7 +21101,7 @@ /turf/open/mars, /area/bigredv2/outside/se) "bhs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_5" }, @@ -22842,7 +22842,7 @@ /area/bigredv2/outside/filtration_plant) "boy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -24004,7 +24004,7 @@ }, /area/bigredv2/caves_north) "buQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, @@ -24089,7 +24089,7 @@ /turf/open/mars, /area/bigredv2/caves/eta/research) "bvQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "asteroidwarning" @@ -24097,7 +24097,7 @@ /area/bigredv2/outside/eta) "bvR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_23" }, @@ -24115,14 +24115,14 @@ /area/bigredv2/caves/mining) "bvW" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "asteroidwarning" }, /area/bigredv2/outside/eta) "bvX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "asteroidwarning" @@ -24133,7 +24133,7 @@ /area/bigredv2/outside/eta) "bvZ" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" @@ -24141,14 +24141,14 @@ /area/bigredv2/outside/eta) "bwa" = ( /obj/effect/landmark/hunter_primary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" }, /area/bigredv2/outside/eta) "bwb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" @@ -24156,7 +24156,7 @@ /area/bigredv2/outside/eta) "bwc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" @@ -24358,7 +24358,7 @@ /area/bigredv2/caves/eta/storage) "bxe" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor, /area/bigredv2/caves/eta/storage) "bxf" = ( @@ -24401,7 +24401,7 @@ /area/bigredv2/caves/eta/storage) "bxl" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -24452,7 +24452,7 @@ }, /area/bigredv2/caves/eta/storage) "bxt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 8; icon_state = "darkblue2" @@ -24502,7 +24502,7 @@ /area/bigredv2/caves/eta/research) "bxA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -24541,7 +24541,7 @@ "bxG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 8; icon_state = "darkblue2" @@ -24603,7 +24603,7 @@ "bxP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -24680,7 +24680,7 @@ /area/bigredv2/caves/eta/research) "byc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "wood" }, @@ -24692,7 +24692,7 @@ /area/bigredv2/caves_research) "byf" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) "byg" = ( @@ -24700,7 +24700,7 @@ /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) "byh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor, /area/bigredv2/caves/eta/storage) "byi" = ( @@ -24723,7 +24723,7 @@ "byk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -24870,7 +24870,7 @@ /area/bigredv2/caves/eta/research) "byG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_18" }, @@ -25058,7 +25058,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 8; icon_state = "darkgreencorners2" @@ -25120,7 +25120,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -25158,7 +25158,7 @@ }, /area/bigredv2/caves/eta/storage) "bzq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "darkgreencorners2" @@ -25235,7 +25235,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkgreencorners2" }, @@ -25357,7 +25357,7 @@ /area/bigredv2/caves/eta/research) "bzP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_10" }, @@ -25391,7 +25391,7 @@ "bzU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -25412,7 +25412,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -25448,16 +25448,16 @@ }, /area/bigredv2/caves/eta/research) "bAd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_5" }, /area/bigredv2/caves/eta/research) "bAe" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_5" }, @@ -25496,7 +25496,7 @@ /obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -25529,7 +25529,7 @@ /area/bigredv2/caves/eta/research) "bAr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 9; icon_state = "redfull" @@ -25566,7 +25566,7 @@ /area/bigredv2/caves/eta/storage) "bAx" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkish" }, @@ -25664,7 +25664,7 @@ }, /area/bigredv2/caves/eta/research) "bAK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/bigredv2/caves/eta/research) "bAL" = ( @@ -25880,7 +25880,7 @@ }, /area/bigredv2/caves/eta/xenobiology) "bBr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -25898,7 +25898,7 @@ }, /area/bigredv2/caves/eta/xenobiology) "bBv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) "bBx" = ( @@ -25912,14 +25912,14 @@ "bBA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, /area/bigredv2/caves/eta/research) "bBB" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -26051,7 +26051,7 @@ /area/bigredv2/caves/eta/research) "bBZ" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -26136,7 +26136,7 @@ "bCl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 8; icon_state = "darkgreencorners2" @@ -26178,7 +26178,7 @@ /area/bigredv2/caves/eta/xenobiology) "bCr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor{ dir = 4; icon_state = "darkgreen2" @@ -26186,7 +26186,7 @@ /area/bigredv2/caves/eta/xenobiology) "bCs" = ( /obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -26253,7 +26253,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -26391,7 +26391,7 @@ /area/bigredv2/caves/eta/living) "bCY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -26402,7 +26402,7 @@ }, /area/bigredv2/caves/eta/living) "bDa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkred2" }, @@ -26539,9 +26539,9 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ dir = 8; icon_state = "darkredcorners2" @@ -26560,7 +26560,7 @@ "bDt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -26616,7 +26616,7 @@ "bDC" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "wood" }, @@ -26632,7 +26632,7 @@ "bDE" = ( /obj/item/trash/kepler, /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor, /area/bigredv2/caves/eta/living) "bDF" = ( @@ -26725,9 +26725,9 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "darkredcorners2" }, @@ -26749,7 +26749,7 @@ }, /area/bigredv2/caves/eta/living) "bDV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "darkyellowcorners2" @@ -26796,7 +26796,7 @@ pixel_x = -12; pixel_y = 2 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -26823,7 +26823,7 @@ /area/bigredv2/caves/eta/living) "bEi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 8; icon_state = "darkyellowcorners2" @@ -26914,7 +26914,7 @@ "bEw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkyellowcorners2" }, @@ -27002,7 +27002,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor, /area/bigredv2/caves/eta/living) "bEJ" = ( @@ -27029,7 +27029,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "darkyellowcorners2" @@ -27049,7 +27049,7 @@ /turf/open/floor, /area/bigredv2/caves/eta/living) "bEO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkyellowcorners2" }, @@ -27069,7 +27069,7 @@ /area/bigredv2/caves/eta/living) "bER" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkyellowcorners2" }, @@ -27100,7 +27100,7 @@ /area/bigredv2/outside/lz2_south_cas) "bII" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, @@ -27130,7 +27130,7 @@ /area/bigredv2/outside/filtration_cave_cas) "bLA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -27270,7 +27270,7 @@ /area/bigredv2/outside/nw/ceiling) "bZL" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "whitepurplefull" }, @@ -27324,7 +27324,7 @@ /area/bigredv2/outside/dorms) "chq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_18" }, @@ -27396,7 +27396,7 @@ /area/bigredv2/outside/bar) "cpc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_6" }, @@ -27438,7 +27438,7 @@ /area/bigredv2/caves/mining) "csC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "dark" }, @@ -27451,7 +27451,7 @@ "ctT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor{ icon_state = "darkyellowcorners2" }, @@ -27500,7 +27500,7 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "cCr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_3" }, @@ -27686,7 +27686,7 @@ /area/bigredv2/caves/mining) "cVL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_11" }, @@ -27787,7 +27787,7 @@ /turf/open/floor, /area/bigredv2/outside/cargo) "dov" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -27851,7 +27851,7 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "dvp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars, /area/bigredv2/outside/ne) "dvB" = ( @@ -27963,7 +27963,7 @@ /area/bigred/ground/garage_workshop) "dEr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_7" }, @@ -28432,7 +28432,7 @@ }, /area/bigredv2/caves/lambda/research) "evX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -28483,7 +28483,7 @@ }, /area/bigredv2/caves/eta/xenobiology) "eEy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave, /area/bigredv2/outside/lz2_west_cas) "eER" = ( @@ -28628,7 +28628,7 @@ /turf/closed/wall/solaris, /area/bigredv2/outside/dorms) "eSu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_dirt_7" }, @@ -28785,7 +28785,7 @@ }, /area/bigredv2/caves/eta/living) "fjF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars{ icon_state = "mars_dirt_6" }, @@ -28822,7 +28822,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkyellowcorners2" }, @@ -29015,7 +29015,7 @@ "fLA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "dark" }, @@ -29473,7 +29473,7 @@ /area/bigredv2/caves_virology) "gNz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_10" }, @@ -29487,7 +29487,7 @@ /area/bigredv2/caves/eta/storage) "gOr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -29542,7 +29542,7 @@ }, /area/bigredv2/caves/eta/research) "gXh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 1; icon_state = "asteroidwarning" @@ -29567,7 +29567,7 @@ /area/bigredv2/caves_virology) "gYt" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -29592,7 +29592,7 @@ }, /area/bigredv2/caves/mining) "heI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; id = "lambda"; @@ -29751,13 +29751,13 @@ /area/bigredv2/caves/mining) "hwy" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, /area/bigredv2/caves/lambda/research) "hyv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /turf/open/mars_cave{ icon_state = "mars_dirt_7" @@ -29787,7 +29787,7 @@ }, /area/bigredv2/caves/mining) "hAj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave, /area/bigredv2/caves_research) "hBD" = ( @@ -29865,7 +29865,7 @@ /area/bigredv2/caves/mining) "hKD" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -29892,7 +29892,7 @@ "hNg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -29915,7 +29915,7 @@ "hPS" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -30121,7 +30121,7 @@ /area/bigredv2/caves/mining) "iml" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -30290,7 +30290,7 @@ /area/bigredv2/caves/eta/research) "iDW" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor{ dir = 8; icon_state = "darkyellowcorners2" @@ -30330,7 +30330,7 @@ }, /area/bigredv2/outside/lambda_cave_cas) "iLs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/mars_cave{ icon_state = "mars_dirt_4" @@ -30375,7 +30375,7 @@ /turf/open/floor, /area/bigredv2/outside/engineering) "iQG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_6" }, @@ -30489,7 +30489,7 @@ /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "jcR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -30694,7 +30694,7 @@ }, /area/bigredv2/caves/lambda/research) "jzD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkish" }, @@ -30708,7 +30708,7 @@ /area/bigredv2/outside/admin_building) "jAo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/mars_cave{ icon_state = "mars_cave_5" }, @@ -30775,7 +30775,7 @@ }, /area/bigredv2/caves/mining) "jGd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -30987,7 +30987,7 @@ }, /area/bigredv2/caves/mining) "jVN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /turf/open/mars_cave{ icon_state = "mars_dirt_4" @@ -31151,7 +31151,7 @@ /area/bigredv2/caves/mining) "kfk" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave, /area/bigredv2/caves_lambda) "kfY" = ( @@ -31236,7 +31236,7 @@ }, /area/bigredv2/caves/mining) "kli" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_20" }, @@ -31277,7 +31277,7 @@ }, /area/bigredv2/caves/eta/living) "kok" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_7" }, @@ -31364,7 +31364,7 @@ "kxi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "darkredcorners2" }, @@ -31493,7 +31493,7 @@ }, /area/bigredv2/caves_research) "kOl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars, /area/bigredv2/outside/n) "kPu" = ( @@ -31517,7 +31517,7 @@ /area/bigredv2/caves/mining) "kQc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave, /area/bigredv2/caves_east) "kRo" = ( @@ -31595,7 +31595,7 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "laj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -31762,7 +31762,7 @@ }, /area/bigred/ground/garage_workshop) "lwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_7" }, @@ -31981,7 +31981,7 @@ /area/bigredv2/outside/filtration_cave_cas) "lUd" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ dir = 8; icon_state = "darkredcorners2" @@ -32000,7 +32000,7 @@ /area/bigredv2/outside/telecomm/n_cave) "lVr" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -32012,7 +32012,7 @@ /area/bigredv2/outside/lz2_south_cas) "lWE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_7" }, @@ -32137,7 +32137,7 @@ }, /area/bigredv2/caves/mining) "mqX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_3" }, @@ -32208,7 +32208,7 @@ /area/bigredv2/outside/filtration_cave_cas) "mya" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_6" }, @@ -32286,9 +32286,9 @@ }, /area/bigredv2/outside/admin_building) "mHp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -32429,7 +32429,7 @@ /area/bigredv2/outside/se) "nbi" = ( /obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -32678,7 +32678,7 @@ }, /area/bigredv2/outside/telecomm/lz2_cave) "nHQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; id = "filtration"; @@ -32767,7 +32767,7 @@ /area/bigredv2/outside/lz2_south_cas) "nUK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "dark" }, @@ -32815,7 +32815,7 @@ "nXw" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "dark" }, @@ -32886,7 +32886,7 @@ /area/bigredv2/outside/cargo) "oea" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -33048,7 +33048,7 @@ /obj/structure/toilet{ pixel_y = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/item/pipe{ pixel_x = 8; pixel_y = -4; @@ -33082,7 +33082,7 @@ /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "dark" }, @@ -33094,7 +33094,7 @@ /area/bigredv2/outside/filtration_plant) "otb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -33113,7 +33113,7 @@ }, /area/bigredv2/outside/general_offices) "ovB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -33240,7 +33240,7 @@ /area/bigredv2/caves/mining) "oKc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor{ dir = 8; icon_state = "darkgreencorners2" @@ -33268,7 +33268,7 @@ /area/bigredv2/outside/lz2_west_cas) "oOk" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -33446,7 +33446,7 @@ /area/bigredv2/caves/eta/living) "pbK" = ( /obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/queen_spawn, /turf/open/mars_cave{ icon_state = "mars_cave_2" @@ -33599,7 +33599,7 @@ /area/bigredv2/outside/lz2_south_cas) "pvg" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -33683,7 +33683,7 @@ /area/bigredv2/outside/filtration_plant) "pHb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/mars_cave{ icon_state = "mars_cave_7" }, @@ -33696,7 +33696,7 @@ /area/bigredv2/outside/virology) "pIN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -34140,7 +34140,7 @@ }, /area/bigredv2/outside/lz2_south_cas) "qEs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -34272,7 +34272,7 @@ /area/bigredv2/outside/eta) "qQn" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_6" }, @@ -34568,7 +34568,7 @@ }, /area/bigredv2/caves/mining) "rxJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_23" }, @@ -34660,7 +34660,7 @@ /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) "rHD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars{ icon_state = "mars_dirt_9" }, @@ -35222,7 +35222,7 @@ /area/bigredv2/caves/mining) "sBu" = ( /obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -35258,7 +35258,7 @@ /area/bigredv2/caves_sw) "sEi" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ dir = 8; icon_state = "darkgreencorners2" @@ -35300,7 +35300,7 @@ /area/bigredv2/caves) "sIP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_5" }, @@ -35324,7 +35324,7 @@ }, /area/bigredv2/caves_se) "sLy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -35407,7 +35407,7 @@ }, /area/bigredv2/outside/lambda_cave_cas) "sYR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/item/stack/cable_coil/cut, /turf/open/mars_cave{ icon_state = "mars_cave_2" @@ -35434,7 +35434,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "dark" }, @@ -35459,7 +35459,7 @@ }, /area/bigredv2/caves/mining) "tdB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -35659,7 +35659,7 @@ /turf/open/floor/plating, /area/bigredv2/caves/mining) "tsB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/xeno_spawn, /turf/open/mars_cave{ icon_state = "mars_cave_2" @@ -35819,7 +35819,7 @@ }, /area/bigredv2/outside/c) "tIq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_7" }, @@ -35833,7 +35833,7 @@ /turf/open/floor, /area/bigred/ground/garage_workshop) "tJv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, @@ -35883,7 +35883,7 @@ }, /area/bigredv2/caves/mining) "tPr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, @@ -35955,7 +35955,7 @@ /turf/open/floor, /area/bigredv2/outside/engineering) "tUb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) "tUL" = ( @@ -36028,7 +36028,7 @@ /area/bigredv2/caves/mining) "ufB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor{ icon_state = "darkgreencorners2" }, @@ -36063,7 +36063,7 @@ /area/bigredv2/caves/mining) "ujC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -36170,7 +36170,7 @@ /area/bigredv2/caves/mining) "uvl" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -36281,7 +36281,7 @@ /area/bigredv2/caves/mining) "uGz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor{ icon_state = "darkredcorners2" }, @@ -36489,7 +36489,7 @@ }, /area/bigredv2/outside/eta) "vfQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /turf/open/mars_cave{ icon_state = "mars_cave_3" @@ -36779,7 +36779,7 @@ /area/bigredv2/outside/s) "vFS" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "dark" }, @@ -36853,7 +36853,7 @@ /area/bigredv2/caves/mining) "vRK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_11" }, @@ -36901,14 +36901,14 @@ }, /area/bigredv2/outside/nw) "vYw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) "waJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -36988,7 +36988,7 @@ "wfx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "darkgreencorners2" }, @@ -37093,7 +37093,7 @@ }, /area/bigredv2/caves_north) "wpT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars, /area/bigredv2/outside/w) "wry" = ( @@ -37108,7 +37108,7 @@ }, /area/bigredv2/outside/space_port) "wrz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_11" }, @@ -37236,7 +37236,7 @@ /area/bigredv2/caves/mining) "wFP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "wood" }, @@ -37260,7 +37260,7 @@ /area/bigredv2/outside/c) "wIw" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_23" }, @@ -37380,7 +37380,7 @@ }, /area/bigredv2/caves/mining) "wUD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_5" }, @@ -37397,7 +37397,7 @@ }, /area/bigredv2/caves/mining) "wWK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -37461,7 +37461,7 @@ }, /area/bigredv2/caves/mining) "xeN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, @@ -37672,7 +37672,7 @@ /area/bigredv2/caves/mining) "xuU" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -37743,7 +37743,7 @@ /area/bigredv2/caves/eta/living) "xAh" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -37925,7 +37925,7 @@ /area/bigredv2/caves/mining) "xUo" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -38057,7 +38057,7 @@ /area/bigredv2/caves/lambda/xenobiology) "ycP" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -38107,7 +38107,7 @@ }, /area/bigredv2/caves/mining) "yfz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/xeno_spawn, /turf/open/mars_cave{ icon_state = "mars_cave_2" diff --git a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm index 633a79f6acb9..237f37191d7e 100644 --- a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm +++ b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm @@ -13,7 +13,7 @@ }, /area/bigredv2/caves/mining) "az" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -151,7 +151,7 @@ }, /area/bigredv2/caves_sw) "lQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, @@ -165,7 +165,7 @@ }, /area/bigredv2/caves/mining) "nx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_dirt_7" }, @@ -425,7 +425,7 @@ }, /area/bigredv2/caves/mining) "Nu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -518,14 +518,14 @@ }, /area/bigredv2/caves/mining) "Uh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_15" }, /area/bigredv2/caves_sw) "UG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, diff --git a/maps/map_files/BigRed/sprinkles/30.cave-north_lambdapath.dmm b/maps/map_files/BigRed/sprinkles/30.cave-north_lambdapath.dmm index 69d091b39d02..831461892d45 100644 --- a/maps/map_files/BigRed/sprinkles/30.cave-north_lambdapath.dmm +++ b/maps/map_files/BigRed/sprinkles/30.cave-north_lambdapath.dmm @@ -27,19 +27,19 @@ /area/bigredv2/caves_north) "g" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves_lambda) "h" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves_lambda) "j" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, @@ -86,7 +86,7 @@ /area/bigredv2/caves_lambda) "Z" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_16" }, diff --git a/maps/map_files/BigRed/sprinkles/5+gruesome_medicaleast.dmm b/maps/map_files/BigRed/sprinkles/5+gruesome_medicaleast.dmm index 96ed195a9bee..7b1cc2667f16 100644 --- a/maps/map_files/BigRed/sprinkles/5+gruesome_medicaleast.dmm +++ b/maps/map_files/BigRed/sprinkles/5+gruesome_medicaleast.dmm @@ -18,7 +18,7 @@ /turf/template_noop, /area/template_noop) "A" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/template_noop, /area/template_noop) "K" = ( diff --git a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm index b20ee04855d3..c0de8a2daad8 100644 --- a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm +++ b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, @@ -123,7 +123,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 8; icon_state = "darkredcorners2" @@ -138,7 +138,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "darkredcorners2" }, @@ -208,7 +208,7 @@ /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) "W" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) "X" = ( diff --git a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm index 104546cbd8ed..e9fc5e6cde3e 100644 --- a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm +++ b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm @@ -14,7 +14,7 @@ /area/bigredv2/caves_lambda) "d" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating{ dir = 8; icon_state = "platingdmg2" @@ -53,7 +53,7 @@ }, /area/bigredv2/caves/lambda/virology) "k" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 8; icon_state = "darkgreencorners2" @@ -61,13 +61,13 @@ /area/bigredv2/caves/lambda/virology) "l" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_11" }, /area/bigredv2/caves_lambda) "m" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_11" }, @@ -107,7 +107,7 @@ }, /area/bigredv2/caves_lambda) "w" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_10" }, @@ -143,7 +143,7 @@ }, /area/bigredv2/caves_lambda) "X" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_8" }, diff --git a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm index d7710b7a0bed..3799fb514592 100644 --- a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm +++ b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm @@ -14,7 +14,7 @@ }, /area/bigredv2/caves_lambda) "g" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index dea0dc6f3fae..8a1e2e235aa9 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -74,7 +74,7 @@ "aao" = ( /obj/structure/surface/table/woodentable, /obj/item/device/binoculars, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "aap" = ( @@ -153,7 +153,7 @@ /obj/structure/surface/table/woodentable, /obj/item/ashtray/bronze, /obj/item/trash/cigbutt/cigarbutt, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "aaC" = ( @@ -1054,7 +1054,7 @@ "adi" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "adj" = ( @@ -4109,7 +4109,7 @@ /obj/item/ashtray/glass, /obj/item/trash/cigbutt, /obj/item/trash/cigbutt, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) "amf" = ( @@ -4204,7 +4204,7 @@ "ams" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/blue, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "amt" = ( @@ -4579,7 +4579,7 @@ "ans" = ( /obj/structure/surface/table/woodentable, /obj/item/device/camera, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "ant" = ( @@ -6315,7 +6315,7 @@ "asS" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/popcorn, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "asT" = ( @@ -10949,7 +10949,7 @@ /area/corsat/gamma/residential/east) "aFh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/corsat/gamma/biodome) "aFi" = ( @@ -14530,7 +14530,7 @@ /area/corsat/sigma/south/security) "aOC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/corsat/sigma/biodome) "aOD" = ( @@ -15228,7 +15228,7 @@ }, /area/corsat/sigma/biodome) "aQy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -27415,7 +27415,7 @@ "bze" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/powercell, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -27662,7 +27662,7 @@ "bzF" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -31580,7 +31580,7 @@ "bMT" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ dir = 9; icon_state = "bluegrey" @@ -31794,7 +31794,7 @@ /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ dir = 5; icon_state = "bluegrey" @@ -36372,7 +36372,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ dir = 10; icon_state = "whitebluefull" @@ -36941,7 +36941,7 @@ /turf/open/floor/wood, /area/corsat/gamma/rnr/library) "cWa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -37527,7 +37527,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ dir = 10; icon_state = "whitebluefull" @@ -37661,7 +37661,7 @@ dir = 8 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 4; icon_state = "purplecorner" @@ -39140,7 +39140,7 @@ /obj/structure/machinery/computer/emails{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "exf" = ( @@ -39189,7 +39189,7 @@ /obj/structure/bed{ icon_state = "psychbed" }, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "eyK" = ( @@ -39891,7 +39891,7 @@ /area/corsat/sigma/cargo) "feC" = ( /obj/structure/surface/table/woodentable, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "feD" = ( @@ -40188,7 +40188,7 @@ /area/corsat/gamma/biodome/virology) "fmR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -43135,7 +43135,7 @@ /area/corsat/gamma/residential/researcher) "huu" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/ice, /area/corsat/gamma/biodome) "huv" = ( @@ -43287,7 +43287,7 @@ }, /area/corsat/sigma/south/offices) "hxJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/snow, /area/corsat/gamma/biodome) "hxW" = ( @@ -43348,7 +43348,7 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "hzM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ dir = 4; icon_state = "yellow" @@ -43607,7 +43607,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/ice, /area/corsat/gamma/biodome) "hHA" = ( @@ -43780,7 +43780,7 @@ /area/corsat/theta/biodome/hydrowest) "hNI" = ( /obj/structure/flora/jungle/vines/heavy, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "hOb" = ( @@ -44821,7 +44821,7 @@ /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, /obj/item/trash/cigbutt, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "iBO" = ( @@ -45312,7 +45312,7 @@ /obj/structure/surface/table/woodentable, /obj/item/paper, /obj/item/tool/pen, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "iWH" = ( @@ -46443,7 +46443,7 @@ /area/corsat/gamma/residential/researcher) "jWB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 1; icon_state = "purplewhite" @@ -47288,7 +47288,7 @@ "kFo" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) "kFq" = ( @@ -48337,7 +48337,7 @@ }, /area/corsat/theta/biodome/complex) "lsu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat, /area/corsat/gamma/freezer) "lsB" = ( @@ -48594,7 +48594,7 @@ /area/corsat/sigma/hangar/arrivals) "lCv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "purplewhite" }, @@ -50448,7 +50448,7 @@ "mRC" = ( /obj/effect/alien/weeds/node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/corsat/omega/biodome) "mRI" = ( @@ -50850,7 +50850,7 @@ /area/corsat/gamma/hangar/checkpoint) "njL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 6; icon_state = "purplewhite" @@ -50967,7 +50967,7 @@ dir = 5 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/ice, /area/corsat/gamma/biodome) "noy" = ( @@ -53923,7 +53923,7 @@ "pCh" = ( /obj/structure/machinery/light, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "purplewhite" }, @@ -54131,7 +54131,7 @@ }, /area/corsat/omega/hallways) "pMI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -57283,7 +57283,7 @@ }, /area/corsat/gamma/residential/researcher) "sap" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) "saV" = ( @@ -58583,7 +58583,7 @@ /area/corsat/sigma/southeast/generator) "sWP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/corsat/omega/biodome) "sXf" = ( @@ -61156,7 +61156,7 @@ /obj/structure/machinery/computer/emails{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "uTf" = ( @@ -61483,7 +61483,7 @@ "vfR" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/ice, /area/corsat/gamma/biodome) "vgl" = ( @@ -62733,7 +62733,7 @@ }, /area/corsat/gamma/residential/west) "wfD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -63728,7 +63728,7 @@ /area/corsat/gamma/rnr) "wPz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 4; icon_state = "purplewhitecorner" @@ -64703,7 +64703,7 @@ /area/corsat/theta/biodome/hydroeast) "xGe" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, @@ -64981,7 +64981,7 @@ /area/corsat/gamma/residential/lounge) "xQF" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/corsat/omega/control) "xQH" = ( @@ -65352,7 +65352,7 @@ /area/corsat/gamma/biodome/toxins) "ygx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 1; icon_state = "purplewhitecorner" diff --git a/maps/map_files/CORSAT/standalone/sigma_ice.dmm b/maps/map_files/CORSAT/standalone/sigma_ice.dmm index bca822c0b739..858cfbd69ef9 100644 --- a/maps/map_files/CORSAT/standalone/sigma_ice.dmm +++ b/maps/map_files/CORSAT/standalone/sigma_ice.dmm @@ -236,7 +236,7 @@ /area/corsat/sigma/biodome/ice) "dS" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/corsat/sigma/biodome/ice) "dT" = ( @@ -617,7 +617,7 @@ /turf/open/auto_turf/snow/layer0, /area/corsat/sigma/biodome/ice) "lr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/auto_turf/snow, /area/corsat/sigma/biodome/ice) "lw" = ( @@ -630,7 +630,7 @@ /turf/open/ice, /area/corsat/sigma/biodome/ice) "lN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow, /area/corsat/sigma/biodome/ice) "lP" = ( @@ -807,7 +807,7 @@ }, /area/corsat/sigma/airlock/control) "pF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/ice, /area/corsat/sigma/biodome/ice) "pP" = ( @@ -1660,7 +1660,7 @@ /area/corsat/sigma/airlock/control) "Eo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/snow, /area/corsat/sigma/biodome/ice) "Ev" = ( @@ -2381,7 +2381,7 @@ /area/corsat/sigma/biodome/scrapyard) "QM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/ice, /area/corsat/sigma/biodome/ice) "QN" = ( diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index c7842f61249e..2f5b0c47d44b 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -65,7 +65,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) "aal" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) "aam" = ( @@ -711,7 +711,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) "acq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/desert/dirt{ icon_state = "rock1" }, @@ -888,7 +888,7 @@ }, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -1094,7 +1094,7 @@ /area/desert_dam/exterior/river/riverside_east) "adD" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock, /area/desert_dam/interior/caves/east_caves) "adE" = ( @@ -2632,7 +2632,7 @@ /area/desert_dam/exterior/valley/valley_northwest) "ain" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -2649,7 +2649,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) "aiq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -2710,7 +2710,7 @@ }, /area/desert_dam/exterior/valley/valley_mining) "aiz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 10; icon_state = "bright_clean" @@ -2789,12 +2789,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) "aiK" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 10; icon_state = "bright_clean" @@ -2806,13 +2806,13 @@ }, /area/desert_dam/interior/caves/central_caves) "aiM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "aiN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt, /area/desert_dam/interior/caves/east_caves) "aiO" = ( @@ -2993,7 +2993,7 @@ /area/desert_dam/exterior/valley/valley_wilderness) "ajn" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -3732,7 +3732,7 @@ }, /area/desert_dam/exterior/valley/north_valley_dam) "als" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -4181,7 +4181,7 @@ }, /area/desert_dam/interior/lab_northeast/east_lab_containment) "amF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ dir = 10; @@ -4478,7 +4478,7 @@ }, /area/desert_dam/interior/dam_interior/west_tunnel) "ant" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -4598,7 +4598,7 @@ }, /area/desert_dam/interior/lab_northeast/east_lab_containment) "anL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 4; icon_state = "darkpurple2" @@ -4767,7 +4767,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "aoq" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -4776,7 +4776,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -5013,7 +5013,7 @@ }, /area/desert_dam/interior/dam_interior/hanger) "aoZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 8; icon_state = "whitepurplecorner" @@ -7696,7 +7696,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "awS" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "whiteyellowfull" @@ -8465,7 +8465,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_RND) "azk" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -8835,7 +8835,7 @@ /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_8" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "aAx" = ( @@ -9008,7 +9008,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) "aAV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 10 }, @@ -10349,7 +10349,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached2" }, @@ -10519,7 +10519,7 @@ /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "aFA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 10; icon_state = "bright_clean" @@ -10562,7 +10562,7 @@ /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) "aFF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "whitepurple" }, @@ -10671,7 +10671,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "aFY" = ( @@ -11183,7 +11183,7 @@ /area/desert_dam/exterior/valley/valley_crashsite) "aHD" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_workshop) "aHE" = ( @@ -11193,7 +11193,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "aHF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 4; icon_state = "whitepurplecorner" @@ -11237,7 +11237,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -11517,7 +11517,7 @@ }, /area/desert_dam/exterior/valley/valley_crashsite) "aIH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/desert/dirt{ dir = 1; @@ -11925,7 +11925,7 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) "aKc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "freezerfloor" }, @@ -12527,7 +12527,7 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "aLH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 10 }, @@ -14791,7 +14791,7 @@ /area/desert_dam/exterior/valley/valley_telecoms) "aSP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 9; icon_state = "darkyellow2" @@ -14885,7 +14885,7 @@ /area/desert_dam/building/water_treatment_two) "aTe" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 1; icon_state = "darkyellow2" @@ -15143,7 +15143,7 @@ /area/desert_dam/building/water_treatment_two/purification) "aTX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 8; icon_state = "darkyellow2" @@ -15417,7 +15417,7 @@ /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) "aUW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 10; icon_state = "bright_clean" @@ -23529,7 +23529,7 @@ /area/desert_dam/interior/dam_interior/northeastern_tunnel) "bvu" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 1; icon_state = "darkyellowcorners2" @@ -28195,7 +28195,7 @@ /area/desert_dam/interior/dam_interior/primary_tool_storage) "bLn" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 10; icon_state = "darkyellow2" @@ -28885,7 +28885,7 @@ /area/desert_dam/exterior/river/riverside_central_north) "bNu" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) "bNv" = ( @@ -35119,7 +35119,7 @@ /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) "chl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock/deep/transition{ dir = 5 }, @@ -35603,7 +35603,7 @@ /turf/open/floor/plating, /area/desert_dam/building/medical/break_room) "cjc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock, /area/desert_dam/interior/caves/east_caves) "cjf" = ( @@ -40022,7 +40022,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) "cxm" = ( @@ -46897,7 +46897,7 @@ dir = 1 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached4" }, @@ -47037,7 +47037,7 @@ }, /area/desert_dam/exterior/valley/valley_cargo) "cTE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) "cTF" = ( @@ -47534,7 +47534,7 @@ /area/desert_dam/building/warehouse/warehouse) "cVL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 4; icon_state = "darkyellowcorners2" @@ -47661,14 +47661,14 @@ /area/desert_dam/building/cafeteria/cafeteria) "cWq" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) "cWr" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached3" }, @@ -48000,7 +48000,7 @@ dir = 4; icon_state = "pipe-c" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) "cYv" = ( @@ -48068,7 +48068,7 @@ start_charge = 0 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 4; icon_state = "greencorner" @@ -49518,7 +49518,7 @@ dir = 8 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -49762,7 +49762,7 @@ }, /area/desert_dam/building/cafeteria/cafeteria) "dfr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ dir = 1; icon_state = "desert_transition_edge1" @@ -50509,7 +50509,7 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) "djV" = ( @@ -50840,7 +50840,7 @@ "dlN" = ( /obj/structure/machinery/light, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -51087,7 +51087,7 @@ }, /area/desert_dam/exterior/valley/valley_hydro) "dps" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached1" }, @@ -52561,7 +52561,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "dzO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/desert/dirt{ dir = 9; icon_state = "desert_transition_edge1" @@ -53808,7 +53808,7 @@ }, /area/desert_dam/building/dorms/hallway_westwing) "dGG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "kitchen" }, @@ -55415,7 +55415,7 @@ }, /area/desert_dam/interior/dam_interior/disposals) "dNC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached12" }, @@ -57033,7 +57033,7 @@ icon_state = "gib6" }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -57589,7 +57589,7 @@ }, /area/desert_dam/building/hydroponics/hydroponics) "dUz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ dir = 6; icon_state = "desert_transition_edge1" @@ -58344,7 +58344,7 @@ /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -58827,7 +58827,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "dZl" = ( /obj/structure/flora/grass/desert/lightgrass_1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "dZm" = ( @@ -58853,7 +58853,7 @@ /area/desert_dam/building/dorms/hallway_westwing) "dZz" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "green" }, @@ -58883,7 +58883,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -58940,7 +58940,7 @@ /area/desert_dam/building/dorms/hallway_westwing) "dZX" = ( /obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "wood" }, @@ -59041,7 +59041,7 @@ /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/item/trash/cheesie, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) "eaL" = ( @@ -59355,7 +59355,7 @@ }, /area/desert_dam/interior/dam_interior/control_room) "ebT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -60315,7 +60315,7 @@ /area/desert_dam/exterior/valley/valley_telecoms) "eqo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "erB" = ( @@ -60401,7 +60401,7 @@ }, /area/desert_dam/interior/dam_interior/hanger) "eNU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "whitepurple" }, @@ -60449,7 +60449,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "eWn" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "green" }, @@ -60467,7 +60467,7 @@ /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) "eYK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -60497,7 +60497,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) "fbK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) "fcu" = ( @@ -60570,7 +60570,7 @@ }, /area/desert_dam/building/medical/virology_wing) "flu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached1" }, @@ -60604,7 +60604,7 @@ /area/desert_dam/exterior/telecomm/lz2_storage) "fqy" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt{ icon_state = "tile" }, @@ -60618,14 +60618,14 @@ /area/desert_dam/building/lab_northwest/west_lab_xenoflora) "fsK" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached12" }, /area/desert_dam/exterior/valley/valley_civilian) "fsP" = ( /obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "wood" }, @@ -60669,7 +60669,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) "fEQ" = ( @@ -60843,7 +60843,7 @@ /area/desert_dam/interior/dam_interior/garage) "gls" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -60899,7 +60899,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt{ icon_state = "tile" }, @@ -60913,7 +60913,7 @@ }, /area/desert_dam/exterior/valley/south_valley_dam) "goY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_dirt_5" }, @@ -60951,7 +60951,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ icon_state = "dirt2" }, @@ -61033,7 +61033,7 @@ }, /area/desert_dam/exterior/valley/valley_civilian) "gKn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock/deep/transition{ dir = 1 }, @@ -61057,7 +61057,7 @@ dir = 1 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "gMN" = ( @@ -61102,7 +61102,7 @@ /turf/open/asphalt/cement, /area/desert_dam/exterior/telecomm/lz1_south) "gTW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ dir = 1; icon_state = "desert_transition_corner1" @@ -61151,7 +61151,7 @@ "gYP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) "gYT" = ( @@ -61277,19 +61277,19 @@ }, /area/desert_dam/exterior/valley/valley_hydro) "hxD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating{ icon_state = "warnplate" }, /area/desert_dam/interior/lab_northeast/east_lab_containment) "hyH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) "hzg" = ( /obj/effect/decal/sand_overlay/sand2, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached12" }, @@ -61352,7 +61352,7 @@ /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "hMc" = ( @@ -61362,7 +61362,7 @@ /area/desert_dam/exterior/valley/valley_telecoms) "hOv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "green" }, @@ -61582,7 +61582,7 @@ }, /area/desert_dam/interior/lab_northeast/east_lab_biology) "iuk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ dir = 8; icon_state = "desert_transition_edge1" @@ -61716,7 +61716,7 @@ "iTi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -61863,7 +61863,7 @@ }, /area/desert_dam/exterior/telecomm/lz1_south) "jxN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/desert/dirt{ icon_state = "desert_transition_edge1" }, @@ -61877,7 +61877,7 @@ }, /area/desert_dam/building/hydroponics/hydroponics_storage) "jAS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached4" }, @@ -61909,7 +61909,7 @@ /area/desert_dam/building/hydroponics/hydroponics_storage) "jJa" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) "jJn" = ( @@ -61980,7 +61980,7 @@ /area/desert_dam/building/medical/morgue) "jVv" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "jXv" = ( @@ -61991,7 +61991,7 @@ /area/desert_dam/exterior/valley/valley_telecoms) "jXy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 1; icon_state = "green" @@ -62010,7 +62010,7 @@ /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/telecomm/lz2_containers) "kee" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -62044,11 +62044,11 @@ /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "kmU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "knm" = ( @@ -62126,7 +62126,7 @@ }, /area/desert_dam/exterior/valley/bar_valley_dam) "kIP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) "kJP" = ( @@ -62169,7 +62169,7 @@ /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "kQd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/desert/rock/deep{ icon_state = "rock3" }, @@ -62222,7 +62222,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "lei" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 10; icon_state = "floor_marked" @@ -62240,7 +62240,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "lfM" = ( @@ -62340,7 +62340,7 @@ /area/desert_dam/building/medical/break_room) "ltE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) "ltH" = ( @@ -62404,7 +62404,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) "lHW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ dir = 4; icon_state = "whiteyellowfull" @@ -62449,7 +62449,7 @@ }, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) "lMc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) "lNu" = ( @@ -62461,11 +62461,11 @@ /area/desert_dam/interior/dam_interior/south_tunnel) "lOY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) "lPn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached14" }, @@ -62506,7 +62506,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "lYv" = ( /obj/structure/flora/grass/desert/lightgrass_4, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "mar" = ( @@ -62552,7 +62552,7 @@ /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "mfK" = ( @@ -62568,7 +62568,7 @@ icon_state = "stop_decal5" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "mhR" = ( @@ -62656,7 +62656,7 @@ }, /area/desert_dam/interior/caves/temple) "myx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 1; icon_state = "whitepurple" @@ -62702,7 +62702,7 @@ dir = 1 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "mEC" = ( @@ -62760,7 +62760,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "mNn" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -62821,7 +62821,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached3" }, @@ -62881,18 +62881,18 @@ /area/desert_dam/interior/dam_interior/hanger) "njF" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ icon_state = "dirt2" }, /area/desert_dam/exterior/valley/valley_crashsite) "nlH" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) "nlU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 8; icon_state = "green" @@ -62949,7 +62949,7 @@ }, /area/desert_dam/interior/lab_northeast/east_lab_biology) "nyR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock/deep{ icon_state = "rock4" }, @@ -62985,7 +62985,7 @@ }, /area/desert_dam/building/administration/meetingrooom) "nIz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 1; icon_state = "green" @@ -63058,7 +63058,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "nYf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) "nYh" = ( @@ -63067,7 +63067,7 @@ /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) "nYz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 1; icon_state = "squareswood" @@ -63116,11 +63116,11 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "oit" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ dir = 10; icon_state = "desert_transition_edge1" @@ -63134,13 +63134,13 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "onA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached12" }, /area/desert_dam/exterior/valley/valley_civilian) "ooQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) "ooW" = ( @@ -63327,7 +63327,7 @@ }, /area/desert_dam/exterior/valley/south_valley_dam) "oXK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_excavation) "oYa" = ( @@ -63430,7 +63430,7 @@ dir = 1 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) "pva" = ( @@ -63448,7 +63448,7 @@ }, /area/desert_dam/exterior/valley/south_valley_dam) "pvy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 4; icon_state = "whitepurple" @@ -63456,7 +63456,7 @@ /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "pwc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "darkyellow2" }, @@ -63514,7 +63514,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) "pFj" = ( @@ -63542,7 +63542,7 @@ /area/desert_dam/interior/dam_interior/garage) "pHU" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/prison{ dir = 10; icon_state = "bright_clean" @@ -63583,7 +63583,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached3" }, @@ -63690,7 +63690,7 @@ dir = 1 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached4" }, @@ -63760,13 +63760,13 @@ dir = 4 }, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached3" }, /area/desert_dam/exterior/valley/valley_crashsite) "qCR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ dir = 4; icon_state = "desert_transition_edge1" @@ -63860,7 +63860,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) "qOt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating{ dir = 8; icon_state = "warnplate" @@ -63942,7 +63942,7 @@ "rfm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) "rfU" = ( @@ -64012,7 +64012,7 @@ }, /area/desert_dam/exterior/valley/south_valley_dam) "ruJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/desert/dirt{ icon_state = "rock1" }, @@ -64055,7 +64055,7 @@ "rBr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 8; icon_state = "darkyellow2" @@ -64082,7 +64082,7 @@ }, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "rEa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) "rEH" = ( @@ -64118,7 +64118,7 @@ /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) "rIY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/desert/dirt{ icon_state = "rock1" }, @@ -64346,7 +64346,7 @@ "srf" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached12" }, @@ -64373,7 +64373,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "swg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "bright_clean2" }, @@ -64522,7 +64522,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) "sXR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) "sYp" = ( @@ -64542,7 +64542,7 @@ /area/desert_dam/building/cafeteria/loading) "sYU" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 1; icon_state = "green" @@ -64693,7 +64693,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "tAG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -64758,7 +64758,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -64858,7 +64858,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "ufP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ dir = 5; icon_state = "desert_transition_edge1" @@ -64993,7 +64993,7 @@ /area/desert_dam/interior/caves/temple) "uGO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) "uGU" = ( @@ -65021,7 +65021,7 @@ "uMk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "sterile_white" }, @@ -65051,7 +65051,7 @@ "uNF" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) "uPS" = ( @@ -65078,7 +65078,7 @@ /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) "uVm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached18" }, @@ -65096,7 +65096,7 @@ /area/desert_dam/exterior/valley/valley_labs) "uXk" = ( /obj/effect/decal/sand_overlay/sand2, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached12" }, @@ -65161,7 +65161,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "vph" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/desert/dirt{ dir = 4; icon_state = "desert_transition_edge1" @@ -65202,14 +65202,14 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) "vqS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ dir = 10; icon_state = "bright_clean" }, /area/desert_dam/building/mining/workshop_foyer) "vte" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) "vud" = ( @@ -65261,7 +65261,7 @@ /area/desert_dam/exterior/valley/bar_valley_dam) "vAN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "green" }, @@ -65309,7 +65309,7 @@ /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) "vHx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/desert/dirt{ icon_state = "rock1" }, @@ -65348,7 +65348,7 @@ "vOv" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) "vRc" = ( @@ -65619,7 +65619,7 @@ "wQM" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/asphalt{ icon_state = "tile" }, @@ -65678,7 +65678,7 @@ "wYO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) "wZM" = ( @@ -65722,7 +65722,7 @@ /area/desert_dam/exterior/valley/valley_hydro) "xec" = ( /obj/structure/flora/grass/desert/lightgrass_1, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) "xgA" = ( @@ -65776,7 +65776,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt{ icon_state = "tile" }, @@ -65866,7 +65866,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached4" }, @@ -65930,7 +65930,7 @@ /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) "xEz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) "xEP" = ( @@ -66058,7 +66058,7 @@ /area/desert_dam/interior/caves/temple) "xYb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ icon_state = "darkyellowcorners2" }, diff --git a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm index 1dd3650ad747..5f6439ed3f4a 100644 --- a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm +++ b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm @@ -267,7 +267,7 @@ /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) "qV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt{ dir = 8; icon_state = "desert_transition_edge1" @@ -445,7 +445,7 @@ }, /area/desert_dam/exterior/valley/valley_crashsite) "Dc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) "DL" = ( @@ -635,7 +635,7 @@ /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "NL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) "NV" = ( diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 6aeacc9d504e..0fdad84cfbd3 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -9376,7 +9376,7 @@ }, /area/fiorina/station/power_ring) "fHy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/organic/grass{ desc = "It'll get in your shoes no matter what you do."; name = "astroturf" @@ -12791,7 +12791,7 @@ }, /area/fiorina/station/power_ring) "hIR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/organic/grass{ desc = "It'll get in your shoes no matter what you do."; name = "astroturf" @@ -38000,7 +38000,7 @@ }, /area/fiorina/station/transit_hub) "xii" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/organic/grass{ desc = "It'll get in your shoes no matter what you do."; name = "astroturf" diff --git a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm index 092210cc979f..34fc18111934 100644 --- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm +++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm @@ -143,7 +143,7 @@ /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/north) "aaF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/north) "aaG" = ( @@ -695,7 +695,7 @@ }, /area/ice_colony/surface/engineering/electric) "acO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northwest) "acP" = ( @@ -2206,7 +2206,7 @@ /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) "agS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) "agT" = ( @@ -3627,7 +3627,7 @@ /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) "akR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow, /area/ice_colony/exterior/surface/valley/northeast) "akS" = ( @@ -5367,7 +5367,7 @@ /turf/closed/wall/r_wall, /area/ice_colony/surface/clinic/storage) "apQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast) "apR" = ( @@ -8519,7 +8519,7 @@ /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/south) "ayj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southwest) "ayk" = ( @@ -9752,7 +9752,7 @@ /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) "aBH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) "aBI" = ( @@ -12516,7 +12516,7 @@ }, /area/ice_colony/surface/storage_unit/telecomms) "aJG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow, /area/ice_colony/exterior/surface/valley/southeast) "aJH" = ( @@ -34951,7 +34951,7 @@ /turf/open/auto_turf/snow, /area/ice_colony/exterior/surface/valley/northeast) "sKA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow, /area/ice_colony/exterior/surface/valley/west) "sKH" = ( @@ -35184,7 +35184,7 @@ /turf/open/auto_turf/snow, /area/ice_colony/exterior/surface/valley/southeast) "xRN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow, /area/ice_colony/exterior/underground/caves/open) "xSV" = ( diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index da6b4f439eb0..efc1fa467a3f 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -52,7 +52,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) "aal" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) "aam" = ( @@ -528,7 +528,7 @@ /turf/open/shuttle/elevator/grating, /area/shiva/interior/colony/research_hab) "abK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) "abL" = ( @@ -576,7 +576,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "abT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) "abU" = ( @@ -1070,7 +1070,7 @@ }, /area/shiva/interior/colony/central) "aeo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ icon_state = "wredfull" }, @@ -1259,7 +1259,7 @@ }, /area/shiva/interior/aerodrome) "aff" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ dir = 1 }, @@ -4741,7 +4741,7 @@ /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) "aCF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) "aCH" = ( @@ -7793,7 +7793,7 @@ }, /area/shiva/interior/aerodrome) "bMW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) "bNu" = ( @@ -9321,7 +9321,7 @@ }, /area/shiva/exterior/cp_lz2) "dAt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) "dBB" = ( @@ -10825,7 +10825,7 @@ }, /area/shiva/interior/colony/research_hab) "fww" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ dir = 6; icon_state = "multi_tiles" @@ -13434,7 +13434,7 @@ }, /area/shiva/interior/colony/n_admin) "ilh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ dir = 8; icon_state = "wred" @@ -15719,7 +15719,7 @@ }, /area/shiva/interior/colony/medseceng) "kEB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ dir = 4; icon_state = "yellow" @@ -16375,7 +16375,7 @@ /area/shiva/interior/colony/s_admin) "lkX" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ dir = 8; icon_state = "redfull" @@ -21677,7 +21677,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) "qRX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) "qSa" = ( @@ -23377,7 +23377,7 @@ }, /area/shiva/interior/colony/central) "sQU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ dir = 8; icon_state = "redfull" @@ -23573,7 +23573,7 @@ /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) "tef" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ dir = 8; icon_state = "redfull" @@ -24789,7 +24789,7 @@ /turf/closed/wall/shiva/ice, /area/shiva/exterior/research_alley) "uim" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ icon_state = "multi_tiles" }, @@ -26956,7 +26956,7 @@ }, /area/shiva/interior/colony/n_admin) "wFB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ dir = 4; icon_state = "multi_tiles" @@ -27455,7 +27455,7 @@ }, /area/shiva/interior/colony/central) "xnM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/shiva{ dir = 8; icon_state = "yellow" diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm index 667bb7935753..0891dae75593 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -79,7 +79,7 @@ /area/kutjevo/interior/foremans_office) "ahp" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) "ahz" = ( @@ -962,7 +962,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) "bsq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) "bsw" = ( @@ -1288,7 +1288,7 @@ }, /area/kutjevo/interior/power/comms) "bOc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) "bPf" = ( @@ -2046,7 +2046,7 @@ /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/locks) "cPZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) @@ -2103,9 +2103,9 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "cTj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) "cTz" = ( @@ -2132,7 +2132,7 @@ /area/kutjevo/interior/complex/botany) "cTY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) "cUh" = ( @@ -2271,7 +2271,7 @@ /area/kutjevo/interior/colony_central/mine_elevator) "dcb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) "dck" = ( @@ -2855,7 +2855,7 @@ /area/kutjevo/exterior/scrubland) "dNI" = ( /obj/structure/platform/kutjevo/rock, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) "dOJ" = ( @@ -3111,9 +3111,9 @@ }, /area/kutjevo/interior/construction) "efS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) "efW" = ( @@ -3570,7 +3570,7 @@ /area/kutjevo/exterior/Northwest_Colony) "eFX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) "eFZ" = ( @@ -3836,7 +3836,7 @@ /area/kutjevo/interior/power_pt2_electric_boogaloo) "eVy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) "eVO" = ( @@ -4380,9 +4380,9 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "fKN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) "fLE" = ( @@ -4731,9 +4731,9 @@ /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/med/cells) "gma" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "gmA" = ( @@ -4819,7 +4819,7 @@ /area/kutjevo/interior/complex/med) "gtr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) "gtE" = ( @@ -4957,7 +4957,7 @@ "gBR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) "gBV" = ( @@ -5150,7 +5150,7 @@ /area/kutjevo/interior/complex/botany/east_tech) "gQC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "gQF" = ( @@ -5727,7 +5727,7 @@ "hGB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "hGM" = ( @@ -5854,7 +5854,7 @@ /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) "hSU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) "hTn" = ( @@ -6148,7 +6148,7 @@ /area/kutjevo/interior/colony_central) "iwF" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "iwV" = ( @@ -6430,7 +6430,7 @@ /area/kutjevo/exterior/complex_border/med_rec) "iTX" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) "iUr" = ( @@ -6967,7 +6967,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) "jBX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) "jCL" = ( @@ -7123,7 +7123,7 @@ /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/power_pt2_electric_boogaloo) "jQo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) "jRd" = ( @@ -7489,7 +7489,7 @@ /area/kutjevo/interior/construction) "kuM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) "kvf" = ( @@ -7680,9 +7680,9 @@ /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) "kGl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) "kGM" = ( @@ -8206,7 +8206,7 @@ }, /area/kutjevo/interior/power/comms) "ltv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) "ltU" = ( @@ -8377,7 +8377,7 @@ /turf/open/floor/carpet, /area/kutjevo/interior/oob) "lGj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) "lHs" = ( @@ -8600,7 +8600,7 @@ /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz1_south) "lXQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) "lYI" = ( @@ -8621,7 +8621,7 @@ /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) "lZT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_north) "lZZ" = ( @@ -9098,7 +9098,7 @@ /area/kutjevo/interior/construction) "mDA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) "mDH" = ( @@ -9531,7 +9531,7 @@ /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) "niP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) "niT" = ( @@ -9687,7 +9687,7 @@ /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) "ntF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central) "ntM" = ( @@ -10548,7 +10548,7 @@ /area/kutjevo/interior/complex/Northwest_Flight_Control) "oxT" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) "ozl" = ( @@ -10880,7 +10880,7 @@ /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) "oXH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "oYQ" = ( @@ -10961,7 +10961,7 @@ /area/kutjevo/exterior/runoff_bridge) "pfq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) "pfz" = ( @@ -12084,7 +12084,7 @@ /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) "qED" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) "qFU" = ( @@ -12180,7 +12180,7 @@ }, /area/kutjevo/interior/oob) "qLV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) "qMC" = ( @@ -12222,7 +12222,7 @@ }, /area/kutjevo/interior/construction) "qOP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) "qPa" = ( @@ -12442,7 +12442,7 @@ "rid" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) "rih" = ( @@ -13108,7 +13108,7 @@ /area/kutjevo/interior/power/comms) "scK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) "scY" = ( @@ -13407,7 +13407,7 @@ /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/operating) "syM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) "szC" = ( @@ -13898,7 +13898,7 @@ /area/kutjevo/interior/complex/Northwest_Flight_Control) "tgO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) "tgZ" = ( @@ -14144,7 +14144,7 @@ /turf/open/gm/dirt2, /area/kutjevo/exterior/complex_border/med_park) "tyq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_north) "tyJ" = ( @@ -14190,7 +14190,7 @@ /turf/open/floor/carpet, /area/kutjevo/interior/oob) "tCm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_South) "tCK" = ( @@ -14441,12 +14441,12 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/cells) "tSi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) "tSZ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) "tTi" = ( @@ -14792,7 +14792,7 @@ /area/kutjevo/interior/colony_South/power2) "urv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) "ury" = ( @@ -15184,7 +15184,7 @@ /area/kutjevo/interior/colony_central/mine_elevator) "uPV" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) "uQa" = ( @@ -15683,7 +15683,7 @@ /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) "vzy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) "vzC" = ( @@ -15867,7 +15867,7 @@ /area/kutjevo/interior/complex/botany/east) "vIi" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) "vKp" = ( @@ -16218,7 +16218,7 @@ /area/kutjevo/exterior/scrubland) "wjW" = ( /obj/structure/blocker/invisible_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/carpet, /area/kutjevo/interior/oob) "wkw" = ( @@ -16731,7 +16731,7 @@ /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) "wYE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) "wZo" = ( @@ -16866,9 +16866,9 @@ /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_S_East) "xlt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/closed/wall/resin/thick, /area/kutjevo/interior/colony_South) "xlD" = ( diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index 92d423c6b98f..01fb598b3ad7 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -412,7 +412,7 @@ }, /area/lv522/atmos/way_in_command_centre) "akp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/prison, /area/lv522/atmos/outdoor) "akM" = ( @@ -451,7 +451,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "ame" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -576,7 +576,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "aox" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -626,7 +626,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "aqo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -1063,7 +1063,7 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "aEL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -1157,7 +1157,7 @@ /area/lv522/outdoors/colony_streets/east_central_street) "aGI" = ( /obj/structure/largecrate/random/case/double, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -1280,8 +1280,8 @@ }, /area/lv522/outdoors/colony_streets/windbreaker/observation) "aJT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -1309,7 +1309,7 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "aKK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -1327,7 +1327,7 @@ }, /area/lv522/indoors/a_block/admin) "aKQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 8; icon_state = "browncorner" @@ -1359,7 +1359,7 @@ }, /area/lv522/oob/w_y_vault) "aLJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "aMI" = ( @@ -1776,7 +1776,7 @@ /area/lv522/indoors/c_block/mining) "aWX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -2030,7 +2030,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "bdv" = ( /obj/structure/largecrate/random/case, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -2102,7 +2102,7 @@ }, /area/lv522/indoors/a_block/bridges/corpo) "bet" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -2659,8 +2659,8 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "bye" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -3101,7 +3101,7 @@ }, /area/lv522/atmos/east_reactor) "bIY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 5; icon_state = "brown" @@ -3121,7 +3121,7 @@ pixel_x = -4; pixel_y = 6 }, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/structure/machinery/camera/autoname{ dir = 8 }, @@ -3336,7 +3336,7 @@ pixel_x = -12; pixel_y = 24 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "bNJ" = ( @@ -3362,7 +3362,7 @@ }, /area/lv522/atmos/east_reactor) "bOv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/light{ dir = 4 }, @@ -3528,7 +3528,7 @@ }, /area/lv522/indoors/a_block/bridges/op_centre) "bSM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -3745,7 +3745,7 @@ }, /area/lv522/indoors/a_block/dorms) "bXq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -3835,7 +3835,7 @@ /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) "bZe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "browncorner" }, @@ -4012,7 +4012,7 @@ dir = 8; icon_state = "flammable_pipe_3" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -4061,14 +4061,14 @@ /area/lv522/atmos/east_reactor) "cdj" = ( /obj/structure/largecrate/random, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "cdP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -4151,7 +4151,7 @@ }, /area/lv522/indoors/c_block/bridge) "chm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) "cho" = ( @@ -4172,7 +4172,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 5; icon_state = "brown" @@ -4326,7 +4326,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "cmF" = ( @@ -4494,7 +4494,7 @@ }, /area/lv522/indoors/a_block/dorms) "cqr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -4696,8 +4696,8 @@ }, /area/lv522/indoors/c_block/mining) "cwq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -4803,7 +4803,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/machinery/light, /turf/open/floor/corsat{ icon_state = "plate" @@ -4825,7 +4825,7 @@ /area/lv522/indoors/c_block/garage) "cyO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -4985,7 +4985,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "cCQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -5198,7 +5198,7 @@ }, /area/lv522/indoors/a_block/dorms) "cHL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -5407,12 +5407,12 @@ /area/lv522/atmos/east_reactor/west) "cKy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) "cKC" = ( /obj/structure/girder/displaced, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) "cKF" = ( @@ -5488,8 +5488,8 @@ /area/lv522/landing_zone_1/tunnel) "cLH" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -5603,7 +5603,7 @@ /area/lv522/atmos/cargo_intake) "cOZ" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -5831,7 +5831,7 @@ }, /area/lv522/indoors/c_block/casino) "cUg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, @@ -5974,7 +5974,7 @@ }, /area/lv522/indoors/a_block/security) "cWH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/structure/machinery/light{ dir = 8 }, @@ -6033,7 +6033,7 @@ }, /area/lv522/indoors/c_block/casino) "cXi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/photocopier, /obj/structure/machinery/light, /turf/open/floor/corsat{ @@ -6078,7 +6078,7 @@ }, /area/lv522/indoors/a_block/kitchen) "cYn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "cYE" = ( @@ -6128,7 +6128,7 @@ }, /area/lv522/indoors/c_block/cargo) "cZu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/filingcabinet{ density = 0; pixel_x = -9; @@ -6351,7 +6351,7 @@ }, /area/lv522/atmos/east_reactor/west) "dcD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 9; icon_state = "brown" @@ -6474,7 +6474,7 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "ddN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -6610,7 +6610,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -6624,7 +6624,7 @@ }, /area/lv522/atmos/cargo_intake) "dgO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -6757,7 +6757,7 @@ /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) "djq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -6862,7 +6862,7 @@ /area/lv522/landing_zone_2) "dli" = ( /obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -7102,7 +7102,7 @@ }, /area/lv522/atmos/west_reactor) "dpg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -7210,7 +7210,7 @@ }, /area/lv522/landing_zone_2/ceiling) "dsc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -7302,7 +7302,7 @@ }, /area/lv522/indoors/a_block/kitchen/glass) "dtr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -7372,7 +7372,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "dwG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 4; icon_state = "browncorner" @@ -7401,7 +7401,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/t_comm) "dwP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -7439,7 +7439,7 @@ }, /area/lv522/atmos/east_reactor/south) "dxU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -7456,7 +7456,7 @@ }, /area/lv522/indoors/c_block/mining) "dya" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -7505,7 +7505,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -7601,7 +7601,7 @@ /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) "dBe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/machinery/light{ dir = 1 }, @@ -7689,7 +7689,7 @@ }, /area/lv522/atmos/east_reactor/west) "dDF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -7705,7 +7705,7 @@ /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "dEk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -7826,8 +7826,8 @@ /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "dFT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "dFY" = ( @@ -7993,7 +7993,7 @@ }, /area/lv522/indoors/a_block/bridges/garden_bridge) "dIX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, @@ -8150,7 +8150,7 @@ }, /area/lv522/indoors/a_block/executive) "dMu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 4; icon_state = "brown" @@ -8207,7 +8207,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "dNn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, @@ -8347,7 +8347,7 @@ }, /area/lv522/indoors/a_block/medical/glass) "dQg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -8363,7 +8363,7 @@ }, /area/lv522/indoors/a_block/medical) "dQm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -8442,7 +8442,7 @@ }, /area/lv522/atmos/east_reactor/east) "dSy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -8534,7 +8534,7 @@ }, /area/lv522/oob) "dUS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; icon_state = "flammable_pipe_3"; @@ -8599,7 +8599,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) "dWE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -8616,7 +8616,7 @@ }, /area/lv522/indoors/c_block/mining) "dWT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -8660,7 +8660,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security) "dXB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat{ @@ -8725,7 +8725,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/structure/machinery/light{ dir = 1 }, @@ -8745,7 +8745,7 @@ }, /area/lv522/indoors/c_block/mining) "dZs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) "dZw" = ( @@ -8828,7 +8828,7 @@ }, /area/lv522/atmos/command_centre) "ear" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -8912,7 +8912,7 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "ecU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 5; icon_state = "brown" @@ -9043,7 +9043,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -9203,7 +9203,7 @@ /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/hallway) "ehM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 @@ -9248,7 +9248,7 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) "ejo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 4; icon_state = "brown" @@ -9298,7 +9298,7 @@ }, /area/lv522/indoors/a_block/medical) "ekt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ icon_state = "squares" @@ -9378,7 +9378,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) "emr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9440,7 +9440,7 @@ }, /area/lv522/atmos/east_reactor/south) "enr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ icon_state = "marked" @@ -9453,7 +9453,7 @@ }, /area/lv522/indoors/a_block/dorms) "enG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "browncorner" }, @@ -9527,7 +9527,7 @@ }, /area/lv522/oob) "eow" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -9548,7 +9548,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -9655,7 +9655,7 @@ /area/lv522/atmos/east_reactor) "eqD" = ( /obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -9697,7 +9697,7 @@ }, /area/lv522/indoors/lone_buildings/storage_blocks) "erZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 4; icon_state = "brown" @@ -9966,7 +9966,7 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "exZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, @@ -10081,7 +10081,7 @@ }, /area/lv522/outdoors/colony_streets/north_west_street) "ezU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/north_command_centre) "ezW" = ( @@ -10157,7 +10157,7 @@ /turf/open/floor/plating, /area/lv522/atmos/east_reactor) "eBm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "browncorner" }, @@ -10182,7 +10182,7 @@ }, /area/lv522/indoors/a_block/dorms) "eBH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, @@ -10335,7 +10335,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) "eGs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -10358,7 +10358,7 @@ }, /area/lv522/indoors/a_block/corpo/glass) "eHp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -10572,7 +10572,7 @@ }, /area/lv522/landing_zone_2) "eLx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -10606,7 +10606,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) "eLV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/oob) "eLZ" = ( @@ -10991,7 +10991,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -11038,7 +11038,7 @@ }, /area/lv522/atmos/north_command_centre) "eVi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -11054,7 +11054,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -11122,7 +11122,7 @@ }, /area/lv522/indoors/a_block/kitchen) "eXe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) "eXG" = ( @@ -11268,7 +11268,7 @@ }, /area/lv522/outdoors/colony_streets/south_east_street) "faK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -11281,7 +11281,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "faZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -11413,7 +11413,7 @@ }, /area/lv522/atmos/north_command_centre) "fdS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/item/stack/rods, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) @@ -11444,7 +11444,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -11489,14 +11489,14 @@ }, /area/lv522/outdoors/colony_streets/south_street) "ffr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "squares" }, /area/lv522/atmos/east_reactor/west) "ffG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/girder, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) @@ -11596,7 +11596,7 @@ }, /area/lv522/atmos/cargo_intake) "fib" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "fiu" = ( @@ -11718,7 +11718,7 @@ }, /area/lv522/indoors/b_block/bridge) "fkW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -11861,7 +11861,7 @@ /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) "foO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) "foR" = ( @@ -11969,7 +11969,7 @@ current_rounds = 0 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -11996,7 +11996,7 @@ /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "frL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -12024,7 +12024,7 @@ /obj/structure/machinery/power/apc/weak{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -12049,7 +12049,7 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) "fsC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -12060,7 +12060,7 @@ /area/lv522/atmos/cargo_intake) "fsV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -12232,7 +12232,7 @@ }, /area/lv522/atmos/west_reactor) "fwo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) "fwy" = ( @@ -12280,7 +12280,7 @@ }, /area/lv522/indoors/c_block/mining) "fwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -12298,7 +12298,7 @@ }, /area/lv522/indoors/c_block/cargo) "fxq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -12668,7 +12668,7 @@ dir = 5; id = "cargo_container" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/structure/machinery/light{ dir = 8 }, @@ -12708,11 +12708,11 @@ /area/lv522/outdoors/colony_streets/south_east_street) "fFp" = ( /obj/item/clothing/gloves/yellow, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "fFw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "fFA" = ( @@ -12875,7 +12875,7 @@ /area/lv522/indoors/a_block/kitchen/glass) "fIQ" = ( /obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -12906,7 +12906,7 @@ }, /area/lv522/outdoors/colony_streets/north_east_street) "fKt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -12940,7 +12940,7 @@ pixel_x = -10; pixel_y = 11 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -13000,7 +13000,7 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "fLP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -13505,7 +13505,7 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "fXs" = ( /obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -13557,7 +13557,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "fXZ" = ( @@ -13604,7 +13604,7 @@ /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) "fYP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -13766,7 +13766,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "gbR" = ( @@ -13854,7 +13854,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "gdJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -13875,7 +13875,7 @@ }, /area/lv522/indoors/a_block/admin) "gdX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/structure/machinery/light, /turf/open/floor/corsat{ icon_state = "squares" @@ -14139,7 +14139,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "giF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -14256,7 +14256,7 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) "glj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -14353,7 +14353,7 @@ /area/lv522/indoors/c_block/mining) "gnx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -14485,7 +14485,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "gqg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -14529,7 +14529,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "grz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ pixel_y = 6 }, @@ -14609,7 +14609,7 @@ }, /area/lv522/indoors/c_block/t_comm) "gts" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) "gtt" = ( @@ -14943,7 +14943,7 @@ /area/lv522/atmos/command_centre) "gyB" = ( /obj/item/prop/colony/used_flare, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -14961,7 +14961,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -15053,7 +15053,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "gAS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -15152,7 +15152,7 @@ dir = 10; id = "cargo_container" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -15282,7 +15282,7 @@ }, /area/lv522/atmos/command_centre) "gFG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 4; icon_state = "brown" @@ -15530,7 +15530,7 @@ }, /area/lv522/atmos/east_reactor) "gKM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/structure/machinery/light{ dir = 1 }, @@ -15848,7 +15848,7 @@ dir = 5; id = "cargo_container" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 9; icon_state = "brown" @@ -16018,7 +16018,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) "gUm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "fake_wood" }, @@ -16460,7 +16460,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -16479,7 +16479,7 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "hbj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -16527,7 +16527,7 @@ }, /area/lv522/landing_zone_2) "hbF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/bed/chair/comfy{ dir = 1 }, @@ -16600,7 +16600,7 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "hcV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -16616,7 +16616,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "hcZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -16677,7 +16677,7 @@ }, /area/lv522/atmos/command_centre) "hdQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -16754,7 +16754,7 @@ }, /area/lv522/indoors/a_block/bridges/op_centre) "hfi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/prop/server_equipment/laptop/on{ layer = 3.1; pixel_y = 10 @@ -16777,7 +16777,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "hfE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/prop/server_equipment/yutani_server/off, /turf/open/floor/corsat{ dir = 1; @@ -16871,7 +16871,7 @@ dir = 8; id = "cargo_container" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -16913,7 +16913,7 @@ }, /area/lv522/atmos/east_reactor/south) "hig" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -17190,7 +17190,7 @@ /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) "hmD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -17219,7 +17219,7 @@ }, /area/lv522/atmos/command_centre) "hmV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 9; icon_state = "brown" @@ -17448,7 +17448,7 @@ dir = 10; id = "cargo_container" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 1; icon_state = "browncorner" @@ -17532,7 +17532,7 @@ }, /area/lv522/indoors/a_block/corpo) "htX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -17940,7 +17940,7 @@ /area/lv522/atmos/command_centre) "hBg" = ( /obj/structure/cryofeed, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) "hBp" = ( @@ -18000,7 +18000,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) "hCU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ icon_state = "marked" @@ -18417,7 +18417,7 @@ }, /area/lv522/indoors/a_block/kitchen/glass) "hLT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -18575,22 +18575,22 @@ }, /area/lv522/indoors/c_block/cargo) "hOG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 4; icon_state = "brown" }, /area/lv522/atmos/filt) "hOH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, /area/lv522/atmos/filt) "hOI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -18715,7 +18715,7 @@ /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/nw_rockies) "hRd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 6; icon_state = "brown" @@ -19023,7 +19023,7 @@ /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) "hXA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ dir = 9; @@ -19076,7 +19076,7 @@ }, /area/lv522/indoors/lone_buildings/storage_blocks) "hYg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/surface/table/almayer, /turf/open/floor/corsat{ icon_state = "browncorner" @@ -19206,7 +19206,7 @@ }, /area/lv522/oob) "iam" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, @@ -19519,7 +19519,7 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) "igA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; pixel_y = 24 @@ -19562,7 +19562,7 @@ }, /area/lv522/indoors/a_block/hallway) "ihf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 6; icon_state = "brown" @@ -19680,7 +19680,7 @@ }, /area/lv522/indoors/a_block/corpo/glass) "ijO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -19983,7 +19983,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -20393,7 +20393,7 @@ }, /area/lv522/indoors/a_block/admin) "iyl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 4; icon_state = "brown" @@ -20438,7 +20438,7 @@ /area/lv522/atmos/reactor_garage) "iyQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -20748,7 +20748,7 @@ }, /area/lv522/atmos/east_reactor/south) "iGc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -20951,7 +20951,7 @@ }, /area/lv522/indoors/c_block/mining) "iJA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -21198,7 +21198,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/machinery/light, /turf/open/floor/corsat{ icon_state = "plate" @@ -21364,7 +21364,7 @@ }, /area/lv522/atmos/east_reactor/south) "iRY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -22020,7 +22020,7 @@ }, /area/lv522/outdoors/colony_streets/north_street) "jey" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat{ icon_state = "plate" @@ -22192,7 +22192,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "jhS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 4; icon_state = "brown" @@ -22751,7 +22751,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "jpm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/light, /turf/open/floor/corsat{ icon_state = "plate" @@ -22821,7 +22821,7 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) "jri" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -23568,7 +23568,7 @@ phone_id = "Reactor Meeting Room"; pixel_y = 26 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -24147,7 +24147,7 @@ /turf/open/floor/plating, /area/lv522/oob) "jPz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/structure/machinery/light{ dir = 8 }, @@ -24156,7 +24156,7 @@ }, /area/lv522/atmos/east_reactor) "jPC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/outdoor) @@ -24402,7 +24402,7 @@ /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) "jVa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -24522,7 +24522,7 @@ /area/lv522/outdoors/nw_rockies) "jYj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "jYp" = ( @@ -24770,7 +24770,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "kck" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ icon_state = "plate" @@ -24835,7 +24835,7 @@ }, /area/lv522/indoors/a_block/dorms) "kda" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 6; icon_state = "brown" @@ -24982,7 +24982,7 @@ dir = 8; id = "cargo_container" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -25008,7 +25008,7 @@ /area/lv522/indoors/a_block/kitchen) "kfA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -25021,7 +25021,7 @@ }, /area/lv522/indoors/a_block/kitchen) "kfF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -25059,7 +25059,7 @@ dir = 5; id = "cargo_container" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/structure/machinery/light{ dir = 1 }, @@ -25280,13 +25280,13 @@ }, /area/lv522/atmos/cargo_intake) "kkc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "squares" }, /area/lv522/atmos/west_reactor) "kkq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/light, /turf/open/floor/corsat{ icon_state = "plate" @@ -25342,7 +25342,7 @@ }, /area/lv522/indoors/lone_buildings/chunk) "kkZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 1; icon_state = "browncorner" @@ -25430,7 +25430,7 @@ }, /area/lv522/indoors/a_block/admin) "kmz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -25633,7 +25633,7 @@ }, /area/lv522/atmos/east_reactor/south) "kpG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 1; icon_state = "browncorner" @@ -25715,7 +25715,7 @@ /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) "kry" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) "krH" = ( @@ -25772,7 +25772,7 @@ }, /area/lv522/atmos/north_command_centre) "kss" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, /turf/open/floor/corsat{ @@ -26039,7 +26039,7 @@ }, /area/lv522/atmos/cargo_intake) "kzc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -26491,7 +26491,7 @@ }, /area/lv522/indoors/b_block/hydro) "kGX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "kHd" = ( @@ -27716,7 +27716,7 @@ }, /area/lv522/indoors/b_block/bar) "lcP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -27841,7 +27841,7 @@ dir = 8 }, /obj/item/clothing/suit/storage/marine/rto, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ dir = 4; @@ -27987,8 +27987,8 @@ }, /area/lv522/indoors/a_block/security) "lit" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -28353,7 +28353,7 @@ }, /area/lv522/indoors/lone_buildings/storage_blocks) "lpy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/filt) "lpH" = ( @@ -28395,13 +28395,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "browncorner" }, /area/lv522/atmos/east_reactor/south) "lrh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -28600,7 +28600,7 @@ }, /area/lv522/atmos/reactor_garage) "lwm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 8; icon_state = "browncorner" @@ -28703,7 +28703,7 @@ /area/lv522/outdoors/colony_streets/north_west_street) "lyu" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -28843,7 +28843,7 @@ "lAA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -29109,8 +29109,8 @@ }, /area/lv522/atmos/reactor_garage) "lFd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -29374,7 +29374,7 @@ /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) "lKC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -30027,7 +30027,7 @@ /area/lv522/indoors/b_block/bar) "mad" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -30248,7 +30248,7 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "mee" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/filt) "men" = ( @@ -30420,7 +30420,7 @@ }, /area/lv522/indoors/a_block/corpo/glass) "mjq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 8; icon_state = "browncorner" @@ -30662,7 +30662,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -30775,7 +30775,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -30819,7 +30819,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) "moZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -30963,7 +30963,7 @@ }, /area/lv522/indoors/a_block/corpo/glass) "mrL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -31466,7 +31466,7 @@ /area/lv522/indoors/b_block/hydro) "mCQ" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -32568,7 +32568,7 @@ }, /area/lv522/indoors/c_block/cargo) "mXn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 10; icon_state = "brown" @@ -32664,7 +32664,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) "mZN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -32685,7 +32685,7 @@ }, /area/lv522/atmos/east_reactor/south) "mZW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/river, /area/lv522/atmos/filt) "mZX" = ( @@ -33106,7 +33106,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) "nhb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/lv522/atmos/filt) "nhi" = ( @@ -33423,7 +33423,7 @@ }, /area/lv522/indoors/a_block/kitchen) "nmX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ icon_state = "brown" @@ -33441,7 +33441,7 @@ }, /area/lv522/indoors/c_block/mining) "nno" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -33515,7 +33515,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) "noV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -33525,7 +33525,7 @@ /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -33695,7 +33695,7 @@ /area/lv522/indoors/a_block/dorms) "nrh" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 10; icon_state = "floor_marked" @@ -34990,7 +34990,7 @@ dir = 8; icon_state = "p_stair_full" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/plating, /area/lv522/atmos/filt) "nRQ" = ( @@ -35060,7 +35060,7 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "nTa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) "nTg" = ( @@ -35218,7 +35218,7 @@ }, /area/lv522/outdoors/colony_streets/north_east_street) "nWl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ icon_state = "marked" @@ -35743,7 +35743,7 @@ /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) "oeX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) "ofd" = ( @@ -37555,7 +37555,7 @@ }, /area/lv522/indoors/c_block/bridge) "oQs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -37664,7 +37664,7 @@ /area/lv522/indoors/a_block/bridges) "oSX" = ( /obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -37790,7 +37790,7 @@ }, /area/lv522/atmos/way_in_command_centre) "oUZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -37810,7 +37810,7 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "oVt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) @@ -38445,8 +38445,8 @@ }, /area/lv522/indoors/a_block/security) "pgy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -38467,7 +38467,7 @@ }, /area/lv522/outdoors/colony_streets/north_east_street) "pgJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /obj/structure/machinery/light{ dir = 4 }, @@ -38528,7 +38528,7 @@ }, /area/lv522/landing_zone_1/ceiling) "pit" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) "piD" = ( @@ -39124,7 +39124,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "pwA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 @@ -39175,7 +39175,7 @@ }, /area/lv522/indoors/b_block/bridge) "pwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) "pxb" = ( @@ -39576,7 +39576,7 @@ }, /area/lv522/indoors/c_block/garage) "pEm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -39615,7 +39615,7 @@ /area/lv522/atmos/filt) "pEw" = ( /obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -39997,7 +39997,7 @@ }, /area/lv522/indoors/a_block/dorms) "pMg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -40084,7 +40084,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "pNv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -41066,7 +41066,7 @@ /turf/open/floor/plating, /area/lv522/oob) "qgx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) "qhk" = ( @@ -41124,7 +41124,7 @@ /area/lv522/indoors/c_block/t_comm) "qix" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -41543,7 +41543,7 @@ }, /area/lv522/indoors/a_block/medical) "qqq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -41661,7 +41661,7 @@ }, /area/lv522/outdoors/w_rockies) "qro" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -41890,7 +41890,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -42656,7 +42656,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) "qJE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -43333,7 +43333,7 @@ }, /area/lv522/indoors/a_block/kitchen) "qTH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -43700,7 +43700,7 @@ }, /area/lv522/outdoors/colony_streets/north_east_street) "qZB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -43889,7 +43889,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -43899,7 +43899,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) "rbZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/light{ dir = 8 }, @@ -44287,7 +44287,7 @@ }, /area/lv522/indoors/b_block/bridge) "rjl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/blood, /obj/structure/transmitter/colony_net{ phone_category = "LV522 Chances Claim"; @@ -44295,7 +44295,7 @@ phone_id = "Reactor Entrance Office"; pixel_y = 26 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -44374,7 +44374,7 @@ }, /area/lv522/indoors/a_block/bridges/op_centre) "rla" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -44580,7 +44580,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -44698,7 +44698,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -45404,7 +45404,7 @@ }, /area/lv522/outdoors/colony_streets/east_central_street) "rEV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -45446,7 +45446,7 @@ }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "rGi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) "rGm" = ( @@ -47256,7 +47256,7 @@ }, /area/lv522/indoors/a_block/medical/glass) "smK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -47310,7 +47310,7 @@ /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/storage_blocks) "snP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/surface/table/almayer, /turf/open/floor/corsat{ icon_state = "plate" @@ -47778,13 +47778,13 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "sxU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, /area/lv522/atmos/east_reactor/west) "syg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -48278,8 +48278,8 @@ }, /area/lv522/indoors/c_block/casino) "sHy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -48673,7 +48673,7 @@ }, /area/lv522/indoors/a_block/corpo/glass) "sNQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/plating, /area/lv522/atmos/filt) "sNR" = ( @@ -49901,7 +49901,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "tlv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -51128,7 +51128,7 @@ /area/lv522/indoors/c_block/mining) "tHC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -51233,7 +51233,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "tKb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -51610,7 +51610,7 @@ }, /area/lv522/indoors/lone_buildings/outdoor_bot) "tQw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -51664,7 +51664,7 @@ }, /area/lv522/landing_zone_1/ceiling) "tRS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -51947,7 +51947,7 @@ /area/lv522/indoors/a_block/dorms) "tXp" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 4; icon_state = "browncorner" @@ -52454,7 +52454,7 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -52539,7 +52539,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "uhx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -52992,7 +52992,7 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) "uqt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -53132,7 +53132,7 @@ }, /area/lv522/landing_zone_1/ceiling) "utq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) @@ -53204,7 +53204,7 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "uul" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "browncorner" }, @@ -53372,14 +53372,14 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) "uxf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "marked" }, /area/lv522/atmos/cargo_intake) "uxi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -54621,7 +54621,7 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/corpo) "uTy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 8; icon_state = "brown" @@ -54707,7 +54707,7 @@ /area/lv522/indoors/a_block/dorms/glass) "uVa" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -54885,7 +54885,7 @@ }, /area/lv522/landing_zone_1) "uZf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ dir = 6; icon_state = "brown" @@ -55315,8 +55315,8 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) "vhr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -55570,7 +55570,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "vlq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) "vlv" = ( @@ -56329,7 +56329,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -56442,7 +56442,7 @@ "vAX" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -57193,7 +57193,7 @@ /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/casino) "vNr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/machinery/light{ dir = 8 }, @@ -57373,7 +57373,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "vQn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -57477,13 +57477,13 @@ /area/lv522/indoors/c_block/mining) "vSJ" = ( /obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, /area/lv522/atmos/north_command_centre) "vSM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "vSN" = ( @@ -57864,7 +57864,7 @@ }, /area/lv522/indoors/a_block/admin) "vZP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison, /area/lv522/atmos/outdoor) "vZS" = ( @@ -58108,7 +58108,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "wea" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -58359,7 +58359,7 @@ }, /area/lv522/landing_zone_2) "whK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -58432,7 +58432,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -58995,7 +58995,7 @@ /area/lv522/indoors/a_block/dorms) "wwi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, @@ -60061,7 +60061,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -60154,7 +60154,7 @@ }, /area/lv522/indoors/a_block/corpo) "wTv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) "wTx" = ( @@ -60732,7 +60732,7 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "xgl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -60892,7 +60892,7 @@ }, /area/lv522/indoors/a_block/dorms) "xiY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -61111,7 +61111,7 @@ }, /area/lv522/indoors/a_block/corpo) "xmT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) "xni" = ( @@ -61305,7 +61305,7 @@ }, /area/lv522/indoors/c_block/cargo) "xrF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "brown" }, @@ -61508,7 +61508,7 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) "xwZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -61578,7 +61578,7 @@ }, /area/lv522/outdoors/colony_streets/north_west_street) "xxW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/machinery/light{ dir = 1 }, @@ -61901,7 +61901,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "xEk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 4; icon_state = "brown" @@ -62017,7 +62017,7 @@ /area/lv522/atmos/way_in_command_centre) "xGX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, @@ -62302,7 +62302,7 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "xNt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ dir = 1; icon_state = "brown" @@ -62855,7 +62855,7 @@ }, /area/lv522/indoors/toilet) "xWz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ icon_state = "plate" }, @@ -63076,7 +63076,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "yai" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat{ icon_state = "plate" @@ -63427,7 +63427,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "ygu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ dir = 4; icon_state = "brown" diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index f3b4a1a30f41..7a4a6aff9bd7 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -4,7 +4,7 @@ /area/space) "aab" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) "aac" = ( @@ -20,7 +20,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) "aai" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) "aaj" = ( @@ -37,12 +37,12 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/caves/north_central_caves) "aar" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) "aas" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) "aat" = ( @@ -74,9 +74,9 @@ /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/caves/north_central_caves) "aaD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) "aaE" = ( @@ -102,11 +102,11 @@ "aaM" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "aaN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "aaO" = ( @@ -152,7 +152,7 @@ /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/north_central_caves) "aba" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "cult" }, @@ -186,7 +186,7 @@ /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) "abj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "abk" = ( @@ -228,13 +228,13 @@ }, /area/lv624/ground/barrens/north_east_barrens/ceiling) "abv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "abw" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "aby" = ( @@ -253,7 +253,7 @@ /area/lv624/ground/caves/north_central_caves) "abB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) "abE" = ( @@ -263,7 +263,7 @@ /area/lv624/ground/caves/east_caves) "abF" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "abG" = ( @@ -272,7 +272,7 @@ name = "alien mask"; unacidable = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "cult" }, @@ -296,7 +296,7 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "abQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) "abS" = ( @@ -330,7 +330,7 @@ /area/lv624/ground/caves/north_central_caves) "aca" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "acb" = ( @@ -358,7 +358,7 @@ /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) "aci" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) "ack" = ( @@ -393,14 +393,14 @@ /area/lv624/lazarus/canteen) "aco" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "acp" = ( /turf/closed/wall/cult, /area/lv624/ground/caves/west_caves) "acq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "acr" = ( @@ -499,7 +499,7 @@ }, /area/lv624/ground/barrens/north_east_barrens) "acK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "acL" = ( @@ -525,7 +525,7 @@ /area/lv624/lazarus/crashed_ship_containers) "acO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "acQ" = ( @@ -605,7 +605,7 @@ }, /area/lv624/lazarus/crashed_ship_containers) "ade" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "cult" }, @@ -658,9 +658,9 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) "adt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) "adu" = ( @@ -780,7 +780,7 @@ /area/lv624/ground/barrens/north_east_barrens/ceiling) "adP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "adQ" = ( @@ -823,7 +823,7 @@ }, /area/lv624/ground/barrens/north_east_barrens) "adX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "adY" = ( @@ -865,7 +865,7 @@ /area/lv624/ground/caves/north_central_caves) "aed" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "aeg" = ( @@ -1189,7 +1189,7 @@ /area/lv624/ground/barrens/central_barrens) "afJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "afK" = ( @@ -1317,7 +1317,7 @@ /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) "agm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "ago" = ( @@ -1547,14 +1547,14 @@ }, /area/lv624/ground/barrens/west_barrens/ceiling) "ahB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) "ahF" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "ahH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "ahJ" = ( @@ -1636,7 +1636,7 @@ }, /area/lv624/ground/barrens/west_barrens/ceiling) "aie" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "redyellowfull" }, @@ -1897,7 +1897,7 @@ "ajc" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "ajd" = ( @@ -2238,7 +2238,7 @@ /turf/open/gm/river, /area/lv624/ground/river/central_river) "akL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "akM" = ( @@ -2539,7 +2539,7 @@ /turf/open/gm/river, /area/lv624/ground/river/west_river) "amy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "amA" = ( @@ -2672,9 +2672,9 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) "any" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "anE" = ( @@ -4055,7 +4055,7 @@ /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) "avp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/stairs/perspective{ color = "#b29082"; dir = 4; @@ -4826,7 +4826,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) "axY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) "axZ" = ( @@ -8315,7 +8315,7 @@ /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) "aKn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) @@ -8765,7 +8765,7 @@ }, /area/lv624/lazarus/landing_zones/lz1) "aMr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/east_jungle) "aMt" = ( @@ -9880,7 +9880,7 @@ "aRo" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/heavy, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) "aRq" = ( @@ -11047,7 +11047,7 @@ }, /area/lv624/lazarus/engineering) "aVJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "aVK" = ( @@ -11790,7 +11790,7 @@ }, /area/lv624/lazarus/engineering) "aYj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) @@ -11845,14 +11845,14 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) "aYx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) "aYC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "aYD" = ( @@ -12359,9 +12359,9 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_east_jungle) "bfY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "bgL" = ( @@ -12651,8 +12651,8 @@ /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) "bLs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "bLE" = ( @@ -12955,7 +12955,7 @@ /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) "csM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) "cvk" = ( @@ -13078,7 +13078,7 @@ "cIU" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "cJw" = ( @@ -13261,12 +13261,12 @@ /area/lv624/lazarus/corporate_dome) "dhD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) "diW" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "diZ" = ( @@ -13463,7 +13463,7 @@ /area/lv624/ground/caves/sand_temple) "dFz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "dGc" = ( @@ -13474,7 +13474,7 @@ /area/lv624/ground/river/central_river) "dGQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "dHo" = ( @@ -13573,7 +13573,7 @@ }, /area/lv624/ground/caves/north_central_caves) "dOQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/queen_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) @@ -13808,7 +13808,7 @@ "esp" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ icon_state = "cult" }, @@ -13921,9 +13921,9 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) "eFS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "eGg" = ( @@ -14023,7 +14023,7 @@ /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_east_jungle) "eVH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "cult" }, @@ -14043,7 +14043,7 @@ /area/lv624/ground/river/east_river) "eZC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/corpsespawner/colonist/random/burst, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -14278,9 +14278,9 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "fAM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "fDq" = ( @@ -14306,7 +14306,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) "fEU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) "fFA" = ( @@ -14429,8 +14429,8 @@ /turf/open/gm/coast/east, /area/lv624/ground/river/east_river) "fYl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "fZO" = ( @@ -14455,7 +14455,7 @@ }, /area/lv624/lazarus/landing_zones/lz2) "gbz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) "gcn" = ( @@ -14540,7 +14540,7 @@ /area/lv624/ground/colony/west_tcomms_road) "gkC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "glp" = ( @@ -15000,7 +15000,7 @@ }, /area/lv624/lazarus/landing_zones/lz1) "hzR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "hBt" = ( @@ -15014,7 +15014,7 @@ /area/lv624/lazarus/corporate_dome) "hBL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "hDX" = ( @@ -15294,7 +15294,7 @@ /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) "iiK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/queen_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -15386,7 +15386,7 @@ /area/lv624/ground/caves/east_caves) "izh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "izv" = ( @@ -15568,7 +15568,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) "iZZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) @@ -15857,7 +15857,7 @@ /area/lv624/ground/caves/sand_temple) "jMS" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "jNR" = ( @@ -15948,7 +15948,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) "jTP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) "jWM" = ( @@ -17358,7 +17358,7 @@ /area/lv624/lazarus/corporate_dome) "nzw" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "nAR" = ( @@ -17440,7 +17440,7 @@ /area/lv624/lazarus/hydroponics) "nHq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/corpsespawner/miner, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -17645,7 +17645,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "nWe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "nWw" = ( @@ -18006,7 +18006,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/west_nexus_road) "oMZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "oNJ" = ( @@ -18639,7 +18639,7 @@ "qaE" = ( /obj/effect/landmark/hunter_primary, /obj/effect/landmark/queen_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "qcz" = ( @@ -18950,7 +18950,7 @@ }, /area/lv624/ground/caves/sand_temple) "qRj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) "qSn" = ( @@ -19250,7 +19250,7 @@ /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) "rGZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "rHp" = ( @@ -19280,7 +19280,7 @@ /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) "rKR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) @@ -19308,7 +19308,7 @@ /area/lv624/ground/jungle/east_jungle) "rPK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "rQf" = ( @@ -19680,7 +19680,7 @@ /area/lv624/ground/caves/sand_temple) "sMx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "sMK" = ( @@ -19808,7 +19808,7 @@ /area/lv624/ground/jungle/south_east_jungle) "tdX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) "tem" = ( @@ -19896,7 +19896,7 @@ "tiw" = ( /mob/living/simple_animal/bat, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) "tka" = ( @@ -20159,7 +20159,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "tMB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) "tMF" = ( @@ -20175,7 +20175,7 @@ }, /area/lv624/ground/barrens/south_eastern_barrens) "tOS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "tRu" = ( @@ -20195,7 +20195,7 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) "tTh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) @@ -20286,7 +20286,7 @@ /area/lv624/ground/jungle/north_east_jungle) "ufG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "ufW" = ( @@ -20391,7 +20391,7 @@ /area/lv624/lazarus/secure_storage) "umb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "unp" = ( @@ -20565,7 +20565,7 @@ "uMz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "uMD" = ( @@ -20601,7 +20601,7 @@ /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/east_barrens) "uSF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "uST" = ( @@ -20646,7 +20646,7 @@ }, /area/lv624/lazarus/landing_zones/lz1) "uVU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) @@ -20802,7 +20802,7 @@ /area/lv624/ground/jungle/south_central_jungle) "vly" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) "vmv" = ( @@ -20902,7 +20902,7 @@ "vCG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "vDy" = ( @@ -20975,7 +20975,7 @@ "vMV" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "vNP" = ( @@ -21135,7 +21135,7 @@ /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_east_caves) "wib" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) "wjT" = ( @@ -21161,7 +21161,7 @@ /area/lv624/ground/barrens/south_eastern_jungle_barrens) "wlh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "wlo" = ( @@ -21297,7 +21297,7 @@ /area/lv624/ground/barrens/south_eastern_barrens) "wEO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "wEQ" = ( @@ -21336,7 +21336,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "wJT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) "wKv" = ( @@ -21822,9 +21822,9 @@ /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) "xSA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "xTa" = ( @@ -21867,7 +21867,7 @@ /area/lv624/ground/jungle/east_central_jungle) "xZE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "ybu" = ( @@ -21947,7 +21947,7 @@ /area/lv624/lazarus/corporate_dome) "yiE" = ( /obj/structure/flora/jungle/vines/heavy, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) "yiT" = ( diff --git a/maps/map_files/LV624/centralcaves/10.T.dmm b/maps/map_files/LV624/centralcaves/10.T.dmm index 7433f2f6131d..9a9583b4156c 100644 --- a/maps/map_files/LV624/centralcaves/10.T.dmm +++ b/maps/map_files/LV624/centralcaves/10.T.dmm @@ -3,7 +3,7 @@ /turf/closed/wall/rock/brown, /area/lv624/ground/caves/central_caves) "e" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "f" = ( @@ -11,7 +11,7 @@ /area/lv624/ground/caves/central_caves) "g" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "h" = ( @@ -21,7 +21,7 @@ "i" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "k" = ( @@ -31,12 +31,12 @@ /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) "m" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) "n" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "o" = ( @@ -59,13 +59,13 @@ /area/lv624/ground/barrens/west_barrens) "z" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "A" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "C" = ( @@ -73,12 +73,12 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "G" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "Q" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "V" = ( diff --git a/maps/map_files/LV624/centralcaves/10.qc.dmm b/maps/map_files/LV624/centralcaves/10.qc.dmm index 1e84fde00653..3e478acc4d83 100644 --- a/maps/map_files/LV624/centralcaves/10.qc.dmm +++ b/maps/map_files/LV624/centralcaves/10.qc.dmm @@ -7,11 +7,11 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "g" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "h" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "k" = ( @@ -23,16 +23,16 @@ "m" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "n" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "o" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) "q" = ( @@ -51,7 +51,7 @@ /area/lv624/ground/barrens/containers) "w" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "x" = ( @@ -70,7 +70,7 @@ /area/lv624/ground/caves/south_central_caves) "P" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "Y" = ( diff --git a/maps/map_files/LV624/maintemple/1.intact.dmm b/maps/map_files/LV624/maintemple/1.intact.dmm index 9289d3454327..9483be87c339 100644 --- a/maps/map_files/LV624/maintemple/1.intact.dmm +++ b/maps/map_files/LV624/maintemple/1.intact.dmm @@ -154,7 +154,7 @@ }, /area/lv624/ground/barrens/south_eastern_barrens) "dK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) "dL" = ( @@ -1064,7 +1064,7 @@ /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "zG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/stairs/perspective{ color = "#b29082"; dir = 4; diff --git a/maps/map_files/LV624/maintemple/2.flooded.dmm b/maps/map_files/LV624/maintemple/2.flooded.dmm index bcbf6a54774c..ee09cd54bb82 100644 --- a/maps/map_files/LV624/maintemple/2.flooded.dmm +++ b/maps/map_files/LV624/maintemple/2.flooded.dmm @@ -136,7 +136,7 @@ }, /area/lv624/ground/barrens/south_eastern_barrens) "dK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) "dL" = ( @@ -434,7 +434,7 @@ }, /area/lv624/ground/caves/sand_temple) "mI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) "mN" = ( diff --git a/maps/map_files/LV624/standalone/clfship.dmm b/maps/map_files/LV624/standalone/clfship.dmm index a70f59f2e939..0b80e0c44f69 100644 --- a/maps/map_files/LV624/standalone/clfship.dmm +++ b/maps/map_files/LV624/standalone/clfship.dmm @@ -33,11 +33,11 @@ /area/lv624/lazarus/crashed_ship) "aO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "aY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "bc" = ( @@ -675,7 +675,7 @@ /area/lv624/lazarus/crashed_ship) "sO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) diff --git a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm index e4313040166c..76fbcf6b7b42 100644 --- a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm @@ -174,7 +174,7 @@ /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_west_jungle) "Lv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -188,7 +188,7 @@ /area/lv624/ground/jungle/south_west_jungle) "LM" = ( /obj/structure/flora/jungle/vines/light_2, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) "LV" = ( diff --git a/maps/map_files/LV624/standalone/sandtemple-se.dmm b/maps/map_files/LV624/standalone/sandtemple-se.dmm index 6c53bfe10274..71b31a13ac5b 100644 --- a/maps/map_files/LV624/standalone/sandtemple-se.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-se.dmm @@ -184,7 +184,7 @@ /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/jungle/south_east_jungle) "Ya" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) "Yr" = ( diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm index 1a614f136452..707992246d8d 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -293,7 +293,7 @@ /area/varadero/interior/library) "akn" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/up, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) "akO" = ( @@ -1293,7 +1293,7 @@ /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) "aMN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/light/small{ dir = 1 }, @@ -2039,7 +2039,7 @@ "bmI" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "bmV" = ( @@ -2290,7 +2290,7 @@ }, /area/varadero/interior/research) "bxx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -2475,7 +2475,7 @@ }, /area/varadero/exterior/farocean) "bCi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -4793,7 +4793,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) "dda" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) "ddc" = ( @@ -4832,7 +4832,7 @@ }, /area/varadero/interior/morgue) "deg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating, /area/varadero/interior/research) "deq" = ( @@ -5218,8 +5218,8 @@ /area/varadero/interior_protected/caves/digsite) "doW" = ( /obj/item/stack/sheet/wood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/varadero/interior/research) "dpz" = ( @@ -5499,7 +5499,7 @@ /turf/open/floor/wood, /area/varadero/interior/hall_SE) "dDG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) "dEo" = ( @@ -6462,7 +6462,7 @@ }, /area/varadero/exterior/monsoon) "emt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) "emC" = ( @@ -7161,7 +7161,7 @@ }, /area/varadero/interior/security) "eHZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) "eIr" = ( @@ -8780,7 +8780,7 @@ }, /area/varadero/exterior/pontoon_beach) "fHg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/research) "fHk" = ( @@ -8891,7 +8891,7 @@ }, /area/varadero/interior/security) "fLu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -9303,7 +9303,7 @@ }, /area/varadero/interior/cargo) "fYs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -9503,8 +9503,8 @@ /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) "gey" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) "geK" = ( @@ -9829,8 +9829,8 @@ }, /area/varadero/interior/electrical) "glp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) "gms" = ( @@ -10306,7 +10306,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/monsoon) "gCh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) "gCi" = ( @@ -10455,7 +10455,7 @@ }, /area/varadero/interior/hall_SE) "gHJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) "gHT" = ( @@ -11673,7 +11673,7 @@ }, /area/varadero/exterior/pontoon_beach) "hBA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) "hBX" = ( @@ -11799,7 +11799,7 @@ /turf/open/floor/wood, /area/varadero/interior/beach_bar) "hGl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) "hGz" = ( @@ -13058,11 +13058,11 @@ /turf/open/floor/wood, /area/varadero/interior/bunks) "iwT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) "iwV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ color = "#5e5d5d"; icon_state = "multi_tiles" @@ -13136,7 +13136,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) "izi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/shuttle{ icon_state = "floor6" }, @@ -13260,7 +13260,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) "iDn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) "iDE" = ( @@ -13594,7 +13594,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/monsoon) "iOv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) "iOQ" = ( @@ -17753,7 +17753,7 @@ /area/varadero/exterior/farocean) "lxe" = ( /obj/item/stack/sheet/wood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating, /area/varadero/interior/research) "lxi" = ( @@ -18666,7 +18666,7 @@ /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) "lYQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" @@ -18878,7 +18878,7 @@ }, /area/varadero/exterior/comms4) "mdL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -19740,7 +19740,7 @@ }, /area/varadero/interior/electrical) "mED" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) "mFY" = ( @@ -19887,7 +19887,7 @@ /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "mMu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) "mMz" = ( @@ -20089,7 +20089,7 @@ }, /area/varadero/interior/administration) "mSa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) "mSf" = ( @@ -20444,7 +20444,7 @@ /turf/open/floor/wood, /area/varadero/interior/research) "ncL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) "ncX" = ( @@ -21163,7 +21163,7 @@ }, /area/varadero/exterior/comms4) "nFK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) "nFX" = ( @@ -21813,7 +21813,7 @@ /turf/open/floor/wood, /area/varadero/interior/court) "nZP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -23207,7 +23207,7 @@ /turf/open/floor/carpet, /area/varadero/interior/bunks) "oWx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "oWO" = ( @@ -23241,7 +23241,7 @@ }, /area/varadero/interior/maintenance) "oXo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) "oXp" = ( @@ -23716,8 +23716,8 @@ }, /area/varadero/interior/cargo) "plT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "pmh" = ( @@ -24290,7 +24290,7 @@ }, /area/varadero/interior/comms2) "pDX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "pEE" = ( @@ -24438,7 +24438,7 @@ }, /area/varadero/interior/maintenance/research) "pJF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) "pJQ" = ( @@ -25744,7 +25744,7 @@ /turf/open/floor/wood, /area/varadero/interior/dock_control) "qzZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) "qAd" = ( @@ -26664,7 +26664,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/monsoon) "qZR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) "qZV" = ( @@ -26957,7 +26957,7 @@ }, /area/varadero/exterior/lz1_near) "rkC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "rkH" = ( @@ -27090,7 +27090,7 @@ }, /area/varadero/interior/cargo) "ron" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) "roy" = ( @@ -27619,7 +27619,7 @@ }, /area/varadero/interior/maintenance/security) "rDK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/item/stack/sheet/metal, /turf/open/floor/strata{ color = "#5e5d5d"; @@ -27862,7 +27862,7 @@ }, /area/varadero/interior/hall_SE) "rMP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/varadero/interior/caves/east) "rNf" = ( @@ -27876,7 +27876,7 @@ /area/varadero/exterior/comms4) "rNm" = ( /obj/item/stack/sheet/wood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/research) "rNo" = ( @@ -27908,7 +27908,7 @@ /area/varadero/interior/laundry) "rPB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) "rPD" = ( @@ -30397,7 +30397,7 @@ }, /area/varadero/interior/court) "tpO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) "tpV" = ( @@ -30503,7 +30503,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/monsoon) "trQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -30747,8 +30747,8 @@ }, /area/varadero/exterior/comms4) "tFQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) "tFX" = ( @@ -30883,8 +30883,8 @@ }, /area/varadero/interior/research) "tMJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) "tMY" = ( @@ -31112,7 +31112,7 @@ /area/varadero/interior/beach_bar) "tSQ" = ( /obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) "tSR" = ( @@ -31214,7 +31214,7 @@ }, /area/varadero/interior_protected/maintenance/south) "tWA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) "tWT" = ( @@ -31556,7 +31556,7 @@ }, /area/varadero/interior/hall_SE) "uhV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) "uiq" = ( @@ -31926,7 +31926,7 @@ }, /area/varadero/interior_protected/vessel) "uvr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -32865,7 +32865,7 @@ /turf/open/floor/wood, /area/varadero/interior/security) "vct" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -33034,7 +33034,7 @@ }, /area/varadero/exterior/farocean) "vhI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -35085,7 +35085,7 @@ /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) "wnE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) "wnK" = ( @@ -35186,8 +35186,8 @@ /area/varadero/interior/medical) "wpG" = ( /obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) "wpM" = ( @@ -35347,7 +35347,7 @@ }, /area/varadero/interior/comms3) "wvI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) "wvK" = ( @@ -35435,7 +35435,7 @@ }, /area/varadero/interior/research) "wBc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) "wBp" = ( @@ -35890,7 +35890,7 @@ }, /area/varadero/interior/medical) "wQh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating/icefloor{ icon_state = "asteroidplating" }, @@ -36029,8 +36029,8 @@ /turf/closed/wall/r_wall, /area/varadero/interior/security) "wVp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) "wVA" = ( @@ -36373,7 +36373,7 @@ /turf/open/floor/plating, /area/varadero/interior/research) "xhA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) @@ -37061,8 +37061,8 @@ }, /area/varadero/interior_protected/caves) "xEG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) "xFb" = ( diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 0fbccf511d45..77dc52758c28 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -78,7 +78,7 @@ /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) "aas" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) "aat" = ( @@ -243,7 +243,7 @@ /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) "aaR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata{ dir = 10; @@ -566,7 +566,7 @@ /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) "abS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "fake_wood" }, @@ -581,7 +581,7 @@ }, /area/strata/ug/interior/jungle/deep/structures/res) "abU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -752,7 +752,7 @@ }, /area/strata/ug/interior/jungle/deep/structures/res) "acp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -961,7 +961,7 @@ /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) "acQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) @@ -1036,7 +1036,7 @@ }, /area/strata/ug/interior/jungle/deep/structures/res) "adc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/landmark/xeno_spawn, /turf/open/floor/strata{ icon_state = "floor2" @@ -1353,7 +1353,7 @@ /area/strata/ag/interior/outpost/gen/bball/nest) "adX" = ( /obj/structure/barricade/handrail/strata, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ dir = 4; icon_state = "floor3" @@ -1660,7 +1660,7 @@ /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) "aeW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) "aeX" = ( @@ -1710,7 +1710,7 @@ }, /area/strata/ug/interior/jungle/deep/structures/res) "afd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ dir = 8; icon_state = "white_cyan2" @@ -1900,7 +1900,7 @@ /area/strata/ug/interior/jungle/deep/structures/res) "afB" = ( /obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 @@ -1912,7 +1912,7 @@ /area/strata/ag/interior/dorms/hive) "afC" = ( /obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/barricade/handrail/strata, /turf/open/floor/strata{ icon_state = "multi_tiles" @@ -1935,7 +1935,7 @@ }, /area/strata/ag/interior/dorms/hive) "afF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, @@ -1972,7 +1972,7 @@ /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/maintenance) "afJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, @@ -2265,7 +2265,7 @@ /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) "agB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/vents/pump{ dir = 4 }, @@ -2297,7 +2297,7 @@ }, /area/strata/ag/interior/dorms/hive) "agE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -2316,7 +2316,7 @@ }, /area/strata/ag/interior/dorms/hive) "agG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, @@ -2405,7 +2405,7 @@ /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) "agT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) "agU" = ( @@ -2472,7 +2472,7 @@ }, /area/strata/ug/interior/jungle/deep/structures/res) "ahi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -2857,7 +2857,7 @@ /area/strata/ug/interior/jungle/deep/structures/res) "air" = ( /obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -2870,7 +2870,7 @@ "ait" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -2945,7 +2945,7 @@ }, /area/strata/ag/interior/dorms/hive) "aiC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/item/ammo_magazine/revolver/cmb{ pixel_x = 6; pixel_y = -4 @@ -3097,7 +3097,7 @@ /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) "aja" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior) "ajb" = ( @@ -3342,7 +3342,7 @@ /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) "ajM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, @@ -3363,7 +3363,7 @@ /area/strata/ug/interior/jungle/deep/structures/engi) "ajP" = ( /obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/light/small{ dir = 4 }, @@ -4291,7 +4291,7 @@ }, /area/strata/ag/exterior/research_decks) "amA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) @@ -5317,7 +5317,7 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata{ icon_state = "multi_tiles" @@ -5335,7 +5335,7 @@ }, /area/strata/ag/interior/dorms) "aqc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -5908,7 +5908,7 @@ /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) "arM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) "arN" = ( @@ -6450,7 +6450,7 @@ dir = 1; pixel_y = 20 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -6743,7 +6743,7 @@ }, /area/strata/ug/interior/jungle/deep/structures/res) "aue" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "fake_wood" }, @@ -8079,7 +8079,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) "axZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_res) "aya" = ( @@ -9424,7 +9424,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) "aCw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -10464,7 +10464,7 @@ }, /area/strata/ag/interior/outpost/canteen) "aFC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) "aFD" = ( @@ -12232,7 +12232,7 @@ }, /area/strata/ag/interior/dorms/south) "aLu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) "aLv" = ( @@ -15437,7 +15437,7 @@ /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/hotsprings) "aVR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/hotsprings) "aVS" = ( @@ -16508,7 +16508,7 @@ /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/disposals) "bad" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) "bae" = ( @@ -17048,7 +17048,7 @@ /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) "bbU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) "bbW" = ( @@ -18473,7 +18473,7 @@ /area/strata/ug/interior/outpost/jung/dorms/admin4) "bgX" = ( /obj/structure/flora/bush/ausbushes/grassybush, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) "bha" = ( @@ -21166,7 +21166,7 @@ /turf/open/floor/strata, /area/strata/ag/interior/disposals) "brg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata{ icon_state = "multi_tiles" @@ -21973,7 +21973,7 @@ /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) "bui" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/tcomms/tcomms_deck) "bul" = ( @@ -22587,7 +22587,7 @@ }, /area/strata/ug/interior/jungle/platform/east/scrub) "bwH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) "bwI" = ( @@ -23284,7 +23284,7 @@ }, /area/strata/ag/interior/outpost/engi/drome) "bzH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 @@ -26404,7 +26404,7 @@ }, /area/strata/ag/interior/outpost/engi/drome) "bZh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "red1" }, @@ -26871,7 +26871,7 @@ /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) "ccK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) "ccV" = ( @@ -27171,7 +27171,7 @@ /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/north_carp) "ceS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) "ceV" = ( @@ -27532,7 +27532,7 @@ /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) "chj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) "chp" = ( @@ -28572,7 +28572,7 @@ /area/strata/ag/interior/dorms/flight_control) "coc" = ( /obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/barricade/handrail/strata{ dir = 8 }, @@ -28916,7 +28916,7 @@ }, /area/strata/ag/interior/dorms) "cry" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "multi_tiles" }, @@ -30696,7 +30696,7 @@ }, /area/strata/ag/exterior/research_decks) "euZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) "ewk" = ( @@ -31060,7 +31060,7 @@ }, /area/strata/ag/interior/landingzone_checkpoint) "eVI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) "eXK" = ( @@ -31460,7 +31460,7 @@ /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) "fIF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) "fIG" = ( @@ -33031,7 +33031,7 @@ }, /area/strata/ag/interior/tcomms) "iuf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, @@ -33349,7 +33349,7 @@ /turf/open/gm/river, /area/strata/ag/exterior/research_decks) "iRk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) "iRY" = ( @@ -33529,7 +33529,7 @@ }, /area/strata/ag/exterior/landingzone_2) "jiQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "purp2" }, @@ -34009,7 +34009,7 @@ /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med2) "kaP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata{ icon_state = "multi_tiles" @@ -34272,7 +34272,7 @@ /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) "kxN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) "kyr" = ( @@ -34680,7 +34680,7 @@ }, /area/strata/ug/interior/outpost/jung/dorms/sec1) "liK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) "ljg" = ( @@ -34876,7 +34876,7 @@ /area/strata/ug/interior/jungle/deep/east_engi) "lzt" = ( /obj/item/stack/rods, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) "lzT" = ( @@ -34943,7 +34943,7 @@ }, /area/strata/ag/interior/landingzone_checkpoint) "lHO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) "lIG" = ( @@ -35066,7 +35066,7 @@ /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) "lRa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -35163,7 +35163,7 @@ /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/river) "mam" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/pipes/vents/pump{ dir = 1 }, @@ -35918,7 +35918,7 @@ }, /area/strata/ag/interior/outpost/med) "nfK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) "nhv" = ( @@ -36217,7 +36217,7 @@ }, /area/strata/ag/interior/tcomms) "nQE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) "nRN" = ( @@ -36275,7 +36275,7 @@ /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) "nUX" = ( @@ -36341,7 +36341,7 @@ /area/strata/ag/exterior/marsh/crash) "odi" = ( /obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) "odr" = ( @@ -36456,7 +36456,7 @@ }, /area/strata/ug/interior/outpost/jung/dorms/med1) "onq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) "onr" = ( @@ -36508,7 +36508,7 @@ /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi/drome) "orW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) @@ -36575,7 +36575,7 @@ }, /area/strata/ag/interior/outpost/engi/drome) "oDw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) "oDL" = ( @@ -36870,14 +36870,14 @@ /turf/open/gm/river, /area/strata/ag/interior/tcomms) "pdv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) "pex" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) "pfz" = ( @@ -37037,7 +37037,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) "pqG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) @@ -37371,7 +37371,7 @@ /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) "pLA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_engi) "pLE" = ( @@ -37383,7 +37383,7 @@ /area/strata/ag/interior/tcomms) "pMU" = ( /obj/structure/flora/bush/ausbushes/grassybush, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) "pNL" = ( @@ -37426,7 +37426,7 @@ }, /area/strata/ag/interior/outpost/med) "pPi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) "pPk" = ( @@ -37566,7 +37566,7 @@ }, /area/strata/ag/exterior/landingzone_2) "qcB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) "qcO" = ( @@ -37848,7 +37848,7 @@ }, /area/strata/ug/interior/outpost/jung/dorms/sec2) "qBd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) "qBg" = ( @@ -38340,7 +38340,7 @@ }, /area/strata/ag/interior/tcomms) "rok" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) @@ -38614,7 +38614,7 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) "rRl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) "rRx" = ( @@ -38725,7 +38725,7 @@ }, /area/strata/ug/interior/jungle/deep/structures/engi) "seb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) "sen" = ( @@ -38935,7 +38935,7 @@ /area/strata/ag/exterior/paths/cabin_area) "sxT" = ( /obj/item/stack/rods, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) "sya" = ( @@ -39480,7 +39480,7 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) "tuj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) "tuu" = ( @@ -41257,8 +41257,8 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) "wgB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) "wgI" = ( @@ -41551,7 +41551,7 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) "wNq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) "wPp" = ( @@ -41718,7 +41718,7 @@ /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) "xio" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) "xje" = ( @@ -41929,7 +41929,7 @@ }, /area/strata/ag/interior/outpost/gen/bball) "xzL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -42019,7 +42019,7 @@ /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) "xFC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) "xFH" = ( @@ -42330,7 +42330,7 @@ }, /area/strata/ag/interior/tcomms) "yah" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ dir = 10; icon_state = "multi_tiles" @@ -42344,7 +42344,7 @@ }, /area/strata/ag/interior/research_decks/security) "yca" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/strata{ icon_state = "fake_wood" }, From dfea6abec7f11ef84cf32ba426b42d2d2934df5d Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 25 Oct 2023 21:20:37 -0400 Subject: [PATCH 19/21] whoops --- maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm | 10 +++++----- .../LV522_Chances_Claim/LV522_Chances_Claim.dmm | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 0fdad84cfbd3..2e060b14f0c7 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -12419,7 +12419,7 @@ }, /area/fiorina/tumor/aux_engi) "hwE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -13361,7 +13361,7 @@ /turf/open/floor/prison, /area/fiorina/station/medbay) "idO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison{ dir = 10; icon_state = "greenblue" @@ -21721,7 +21721,7 @@ }, /area/fiorina/station/medbay) "mYx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -23708,7 +23708,7 @@ /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) "olB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) "olC" = ( @@ -36976,7 +36976,7 @@ /turf/open/floor/prison, /area/fiorina/station/disco) "wAM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison{ dir = 6; icon_state = "blue" diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index 01fb598b3ad7..f3f2c92e1455 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -9809,7 +9809,7 @@ /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) "evu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /obj/structure/machinery/light/small{ dir = 1 }, @@ -10585,7 +10585,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "eLK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood/xeno, /obj/effect/decal/warning_stripes{ @@ -14662,7 +14662,7 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "gul" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -20780,7 +20780,7 @@ }, /area/lv522/landing_zone_2) "iGD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /obj/structure/machinery/light/small, /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -24526,7 +24526,7 @@ /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "jYp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -57509,7 +57509,7 @@ /area/lv522/indoors/a_block/executive) "vSV" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/tunnel/maintenance, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison{ dir = 1; icon_state = "blue_plate" From eedb9dc671235b66565aee8257d998339ded134b Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 25 Oct 2023 22:36:05 -0400 Subject: [PATCH 20/21] for real this time --- .../landmarks/structure_spawners/setup_distress.dm | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index 961bfadc9491..d075130d0172 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -8,8 +8,8 @@ var/hive_faction = XENO_HIVE_NORMAL ///Sets the new item to the correct xeno faction -/obj/effect/landmark/structure_spawner/setup/distress/xeno/proc/set_hive_faction(xeno_item) - return +/obj/effect/landmark/structure_spawner/setup/distress/xeno/proc/set_hive_faction(atom/xeno_item) + set_hive_data(xeno_item, hive_faction) /obj/effect/landmark/structure_spawner/setup/distress/xeno/apply(atom/target_location) var/atom/xeno_item = ..() @@ -24,6 +24,7 @@ is_turf = TRUE /obj/effect/landmark/structure_spawner/setup/distress/xeno/wall/set_hive_faction(turf/closed/wall/resin/resin_wall) + . = ..() resin_wall.hivenumber = hive_faction /obj/effect/landmark/structure_spawner/setup/distress/xeno/wall/thick @@ -37,6 +38,7 @@ is_turf = TRUE /obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane/set_hive_faction(turf/closed/wall/resin/membrane/resin_membrane) + . = ..() resin_membrane.hivenumber = hive_faction /obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane/thick @@ -49,6 +51,7 @@ path_to_spawn = /obj/structure/mineral_door/resin /obj/effect/landmark/structure_spawner/setup/distress/xeno/door/set_hive_faction(obj/structure/mineral_door/resin/resin_door) + . = ..() resin_door.hivenumber = hive_faction /obj/effect/landmark/structure_spawner/setup/distress/xeno/door/thick @@ -63,7 +66,9 @@ var/weed_strength_required = FULLY_WEEDABLE /obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node/set_hive_faction(obj/effect/alien/weeds/node/weed_node) + . = ..() weed_node.hivenumber = hive_faction + weed_node.linked_hive = GLOB.hive_datum[hive_faction] /obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node/Initialize(mapload, ...) . = ..() @@ -72,7 +77,7 @@ var/turf/node_tile = loc if(node_tile.is_weedable() >= weed_strength_required) return - stack_trace("[src] at [x],[y],[z] is on a turf where weeds cannot normally grow.") + CRASH("[src] at [x],[y],[z] is on a turf where weeds cannot normally grow.") /obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node/hardy name = "Distress Xeno hardy node spawner" @@ -85,6 +90,7 @@ path_to_spawn = /obj/structure/tunnel /obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/set_hive_faction(obj/structure/tunnel/tunnel) + . = ..() tunnel.hivenumber = hive_faction /obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/Initialize(mapload, ...) @@ -94,7 +100,7 @@ var/turf/tunnel_tile = loc if(tunnel_tile.can_dig_xeno_tunnel()) return - stack_trace("[src] at [x],[y],[z] is on a turf where tunnels cannot normally be built.") + CRASH("[src] at [x],[y],[z] is on a turf where tunnels cannot normally be built.") /obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance name = "Distress Xeno maintenance tunnel spawner" From 35daa8b457a86b5cc0c8a821a86721864bb79879 Mon Sep 17 00:00:00 2001 From: Beagle <56142455+BeagleGaming1@users.noreply.github.com> Date: Wed, 25 Oct 2023 22:52:35 -0400 Subject: [PATCH 21/21] runtimes --- .../effects/landmarks/structure_spawners/setup_distress.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm index d075130d0172..3449f1b07ca3 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -13,6 +13,8 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno/apply(atom/target_location) var/atom/xeno_item = ..() + if(!xeno_item) + return if(!istypestrict(xeno_item, path_to_spawn)) return set_hive_faction(xeno_item)